diff --git a/.gitignore b/.gitignore index 98eaa6f414..0a66b6eb33 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ LC_MESSAGES .cache *.qmlc .mypy_cache +.pytest_cache #MacOS .DS_Store @@ -25,6 +26,7 @@ LC_MESSAGES *.lprof *~ *.qm +.directory .idea cura.desktop diff --git a/Jenkinsfile b/Jenkinsfile index de62b7ed5a..274e383ffa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,6 +12,30 @@ parallel_nodes(['linux && cura', 'windows && cura']) { // If any error occurs during building, we want to catch it and continue with the "finale" stage. catchError { + stage('Pre Checks') { + if (isUnix()) { + // Check shortcut keys + try { + sh """ + echo 'Check for duplicate shortcut keys in all translation files.' + ${env.CURA_ENVIRONMENT_PATH}/master/bin/python3 scripts/check_shortcut_keys.py + """ + } catch(e) { + currentBuild.result = "UNSTABLE" + } + + // Check setting visibilities + try { + sh """ + echo 'Check for duplicate shortcut keys in all translation files.' + ${env.CURA_ENVIRONMENT_PATH}/master/bin/python3 scripts/check_setting_visibility.py + """ + } catch(e) { + currentBuild.result = "UNSTABLE" + } + } + } + // Building and testing should happen in a subdirectory. dir('build') { // Perform the "build". Since Uranium is Python code, this basically only ensures CMake is setup. @@ -28,10 +52,53 @@ parallel_nodes(['linux && cura', 'windows && cura']) { // Try and run the unit tests. If this stage fails, we consider the build to be "unstable". stage('Unit Test') { - try { - make('test') - } catch(e) { - currentBuild.result = "UNSTABLE" + if (isUnix()) { + // For Linux to show everything + def branch = env.BRANCH_NAME + if(!fileExists("${env.CURA_ENVIRONMENT_PATH}/${branch}")) { + branch = "master" + } + def uranium_dir = get_workspace_dir("Ultimaker/Uranium/${branch}") + + try { + sh """ + cd .. + export PYTHONPATH=.:"${uranium_dir}" + ${env.CURA_ENVIRONMENT_PATH}/${branch}/bin/pytest -x --verbose --full-trace --capture=no ./tests + """ + } catch(e) { + currentBuild.result = "UNSTABLE" + } + } + else { + // For Windows + try { + // This also does code style checks. + bat 'ctest -V' + } catch(e) { + currentBuild.result = "UNSTABLE" + } + } + } + + stage('Code Style') { + if (isUnix()) { + // For Linux to show everything + def branch = env.BRANCH_NAME + if(!fileExists("${env.CURA_ENVIRONMENT_PATH}/${branch}")) { + branch = "master" + } + def uranium_dir = get_workspace_dir("Ultimaker/Uranium/${branch}") + + try { + sh """ + cd .. + export PYTHONPATH=.:"${uranium_dir}" + ${env.CURA_ENVIRONMENT_PATH}/${branch}/bin/python3 run_mypy.py + """ + } catch(e) { + currentBuild.result = "UNSTABLE" + } } } } diff --git a/cmake/CuraTests.cmake b/cmake/CuraTests.cmake index 801f054bc3..30794ed608 100644 --- a/cmake/CuraTests.cmake +++ b/cmake/CuraTests.cmake @@ -34,7 +34,7 @@ function(cura_add_test) if (NOT ${test_exists}) add_test( NAME ${_NAME} - COMMAND ${PYTHON_EXECUTABLE} -m pytest --junitxml=${CMAKE_BINARY_DIR}/junit-${_NAME}.xml ${_DIRECTORY} + COMMAND ${PYTHON_EXECUTABLE} -m pytest --verbose --full-trace --capture=no --no-print-log --junitxml=${CMAKE_BINARY_DIR}/junit-${_NAME}.xml ${_DIRECTORY} ) set_tests_properties(${_NAME} PROPERTIES ENVIRONMENT LANG=C) set_tests_properties(${_NAME} PROPERTIES ENVIRONMENT "PYTHONPATH=${_PYTHONPATH}") diff --git a/cura.desktop.in b/cura.desktop.in index fe61b47217..fbe8b30fed 100644 --- a/cura.desktop.in +++ b/cura.desktop.in @@ -13,6 +13,6 @@ TryExec=@CMAKE_INSTALL_FULL_BINDIR@/cura Icon=cura-icon Terminal=false Type=Application -MimeType=application/sla;application/vnd.ms-3mfdocument;application/prs.wavefront-obj;image/bmp;image/gif;image/jpeg;image/png;model/x3d+xml; +MimeType=model/stl;application/vnd.ms-3mfdocument;application/prs.wavefront-obj;image/bmp;image/gif;image/jpeg;image/png;model/x3d+xml; Categories=Graphics; Keywords=3D;Printing;Slicer; diff --git a/cura.sharedmimeinfo b/cura.sharedmimeinfo index 9629aef5df..23d38795eb 100644 --- a/cura.sharedmimeinfo +++ b/cura.sharedmimeinfo @@ -6,7 +6,7 @@ - + Computer-aided design and manufacturing format diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index b029665abd..9d2f5c1f90 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -28,7 +28,7 @@ import copy from typing import List, Optional -# Setting for clearance around the prime +# Radius of disallowed area in mm around prime. I.e. how much distance to keep from prime position. PRIME_CLEARANCE = 6.5 @@ -479,8 +479,6 @@ class BuildVolume(SceneNode): maximum = Vector(max_w - bed_adhesion_size - 1, max_h - self._raft_thickness - self._extra_z_clearance, max_d - disallowed_area_size + bed_adhesion_size - 1) ) - self._application.getController().getScene()._maximum_bounds = scale_to_max_bounds - self.updateNodeBoundaryCheck() def getBoundingBox(self) -> AxisAlignedBox: @@ -528,7 +526,7 @@ class BuildVolume(SceneNode): def _onStackChanged(self): if self._global_container_stack: self._global_container_stack.propertyChanged.disconnect(self._onSettingPropertyChanged) - extruders = ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId()) + extruders = ExtruderManager.getInstance().getActiveExtruderStacks() for extruder in extruders: extruder.propertyChanged.disconnect(self._onSettingPropertyChanged) @@ -536,7 +534,7 @@ class BuildVolume(SceneNode): if self._global_container_stack: self._global_container_stack.propertyChanged.connect(self._onSettingPropertyChanged) - extruders = ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId()) + extruders = ExtruderManager.getInstance().getActiveExtruderStacks() for extruder in extruders: extruder.propertyChanged.connect(self._onSettingPropertyChanged) diff --git a/cura/CameraImageProvider.py b/cura/CameraImageProvider.py index ff5c51f24b..6a07f6b029 100644 --- a/cura/CameraImageProvider.py +++ b/cura/CameraImageProvider.py @@ -19,5 +19,11 @@ class CameraImageProvider(QQuickImageProvider): return image, QSize(15, 15) except AttributeError: - pass + try: + image = output_device.activeCamera.getImage() + + return image, QSize(15, 15) + except AttributeError: + pass + return QImage(), QSize(15, 15) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 4dee5ae813..dbaef4df34 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -13,6 +13,7 @@ from PyQt5.QtGui import QColor, QIcon from PyQt5.QtWidgets import QMessageBox from PyQt5.QtQml import qmlRegisterUncreatableType, qmlRegisterSingletonType, qmlRegisterType +from UM.PluginError import PluginNotFoundError from UM.Scene.SceneNode import SceneNode from UM.Scene.Camera import Camera from UM.Math.Vector import Vector @@ -67,9 +68,9 @@ from cura.Machines.Models.NozzleModel import NozzleModel from cura.Machines.Models.QualityProfilesDropDownMenuModel import QualityProfilesDropDownMenuModel from cura.Machines.Models.CustomQualityProfilesDropDownMenuModel import CustomQualityProfilesDropDownMenuModel from cura.Machines.Models.MultiBuildPlateModel import MultiBuildPlateModel -from cura.Machines.Models.MaterialManagementModel import MaterialManagementModel +from cura.Machines.Models.FavoriteMaterialsModel import FavoriteMaterialsModel from cura.Machines.Models.GenericMaterialsModel import GenericMaterialsModel -from cura.Machines.Models.BrandMaterialsModel import BrandMaterialsModel +from cura.Machines.Models.MaterialBrandsModel import MaterialBrandsModel from cura.Machines.Models.QualityManagementModel import QualityManagementModel from cura.Machines.Models.QualitySettingsModel import QualitySettingsModel from cura.Machines.Models.MachineManagementModel import MachineManagementModel @@ -93,6 +94,7 @@ from . import CuraActions from cura.Scene import ZOffsetDecorator from . import CuraSplashScreen from . import CameraImageProvider +from . import PrintJobPreviewImageProvider from . import MachineActionManager from cura.TaskManagement.OnExitCallbackManager import OnExitCallbackManager @@ -112,7 +114,9 @@ from UM.FlameProfiler import pyqtSlot if TYPE_CHECKING: - from plugins.SliceInfoPlugin.SliceInfo import SliceInfo + from cura.Machines.MaterialManager import MaterialManager + from cura.Machines.QualityManager import QualityManager + from UM.Settings.EmptyInstanceContainer import EmptyInstanceContainer numpy.seterr(all = "ignore") @@ -174,12 +178,12 @@ class CuraApplication(QtApplication): self._machine_action_manager = None - self.empty_container = None - self.empty_definition_changes_container = None - self.empty_variant_container = None - self.empty_material_container = None - self.empty_quality_container = None - self.empty_quality_changes_container = None + self.empty_container = None # type: EmptyInstanceContainer + self.empty_definition_changes_container = None # type: EmptyInstanceContainer + self.empty_variant_container = None # type: EmptyInstanceContainer + self.empty_material_container = None # type: EmptyInstanceContainer + self.empty_quality_container = None # type: EmptyInstanceContainer + self.empty_quality_changes_container = None # type: EmptyInstanceContainer self._variant_manager = None self._material_manager = None @@ -215,7 +219,6 @@ class CuraApplication(QtApplication): self._message_box_callback = None self._message_box_callback_arguments = [] - self._preferred_mimetype = "" self._i18n_catalog = None self._currently_loading_files = [] @@ -368,7 +371,7 @@ class CuraApplication(QtApplication): # Add empty variant, material and quality containers. # Since they are empty, they should never be serialized and instead just programmatically created. # We need them to simplify the switching between materials. - self.empty_container = cura.Settings.cura_empty_instance_containers.empty_container + self.empty_container = cura.Settings.cura_empty_instance_containers.empty_container # type: EmptyInstanceContainer self._container_registry.addContainer( cura.Settings.cura_empty_instance_containers.empty_definition_changes_container) @@ -429,6 +432,7 @@ class CuraApplication(QtApplication): # Readers & Writers: "GCodeWriter", "STLReader", + "3MFWriter", # Tools: "CameraTool", @@ -481,7 +485,11 @@ class CuraApplication(QtApplication): preferences.addPreference("view/filter_current_build_plate", False) preferences.addPreference("cura/sidebar_collapsed", False) - self._need_to_show_user_agreement = not self.getPreferences().getValue("general/accepted_user_agreement") + preferences.addPreference("cura/favorite_materials", "") + preferences.addPreference("cura/expanded_brands", "") + preferences.addPreference("cura/expanded_types", "") + + self._need_to_show_user_agreement = not preferences.getValue("general/accepted_user_agreement") for key in [ "dialog_load_path", # dialog_save_path is in LocalFileOutputDevicePlugin @@ -495,15 +503,13 @@ class CuraApplication(QtApplication): self.applicationShuttingDown.connect(self.saveSettings) self.engineCreatedSignal.connect(self._onEngineCreated) - self.globalContainerStackChanged.connect(self._onGlobalContainerChanged) - self._onGlobalContainerChanged() - self.getCuraSceneController().setActiveBuildPlate(0) # Initialize CuraApplication.Created = True def _onEngineCreated(self): self._qml_engine.addImageProvider("camera", CameraImageProvider.CameraImageProvider()) + self._qml_engine.addImageProvider("print_job_preview", PrintJobPreviewImageProvider.PrintJobPreviewImageProvider()) @pyqtProperty(bool) def needToShowUserAgreement(self): @@ -806,20 +812,20 @@ class CuraApplication(QtApplication): self._machine_manager = MachineManager(self) return self._machine_manager - def getExtruderManager(self, *args): + def getExtruderManager(self, *args) -> ExtruderManager: if self._extruder_manager is None: self._extruder_manager = ExtruderManager() return self._extruder_manager - def getVariantManager(self, *args): + def getVariantManager(self, *args) -> VariantManager: return self._variant_manager @pyqtSlot(result = QObject) - def getMaterialManager(self, *args): + def getMaterialManager(self, *args) -> "MaterialManager": return self._material_manager @pyqtSlot(result = QObject) - def getQualityManager(self, *args): + def getQualityManager(self, *args) -> "QualityManager": return self._quality_manager def getObjectsModel(self, *args): @@ -828,23 +834,23 @@ class CuraApplication(QtApplication): return self._object_manager @pyqtSlot(result = QObject) - def getMultiBuildPlateModel(self, *args): + def getMultiBuildPlateModel(self, *args) -> MultiBuildPlateModel: if self._multi_build_plate_model is None: self._multi_build_plate_model = MultiBuildPlateModel(self) return self._multi_build_plate_model @pyqtSlot(result = QObject) - def getBuildPlateModel(self, *args): + def getBuildPlateModel(self, *args) -> BuildPlateModel: if self._build_plate_model is None: self._build_plate_model = BuildPlateModel(self) return self._build_plate_model - def getCuraSceneController(self, *args): + def getCuraSceneController(self, *args) -> CuraSceneController: if self._cura_scene_controller is None: self._cura_scene_controller = CuraSceneController.createCuraSceneController() return self._cura_scene_controller - def getSettingInheritanceManager(self, *args): + def getSettingInheritanceManager(self, *args) -> SettingInheritanceManager: if self._setting_inheritance_manager is None: self._setting_inheritance_manager = SettingInheritanceManager.createSettingInheritanceManager() return self._setting_inheritance_manager @@ -915,9 +921,9 @@ class CuraApplication(QtApplication): qmlRegisterType(InstanceContainer, "Cura", 1, 0, "InstanceContainer") qmlRegisterType(ExtrudersModel, "Cura", 1, 0, "ExtrudersModel") + qmlRegisterType(FavoriteMaterialsModel, "Cura", 1, 0, "FavoriteMaterialsModel") qmlRegisterType(GenericMaterialsModel, "Cura", 1, 0, "GenericMaterialsModel") - qmlRegisterType(BrandMaterialsModel, "Cura", 1, 0, "BrandMaterialsModel") - qmlRegisterType(MaterialManagementModel, "Cura", 1, 0, "MaterialManagementModel") + qmlRegisterType(MaterialBrandsModel, "Cura", 1, 0, "MaterialBrandsModel") qmlRegisterType(QualityManagementModel, "Cura", 1, 0, "QualityManagementModel") qmlRegisterType(MachineManagementModel, "Cura", 1, 0, "MachineManagementModel") @@ -981,30 +987,14 @@ class CuraApplication(QtApplication): self._camera_animation.setTarget(Selection.getSelectedObject(0).getWorldPosition()) self._camera_animation.start() - def _onGlobalContainerChanged(self): - if self._global_container_stack is not None: - machine_file_formats = [file_type.strip() for file_type in self._global_container_stack.getMetaDataEntry("file_formats").split(";")] - new_preferred_mimetype = "" - if machine_file_formats: - new_preferred_mimetype = machine_file_formats[0] - - if new_preferred_mimetype != self._preferred_mimetype: - self._preferred_mimetype = new_preferred_mimetype - self.preferredOutputMimetypeChanged.emit() - requestAddPrinter = pyqtSignal() activityChanged = pyqtSignal() sceneBoundingBoxChanged = pyqtSignal() - preferredOutputMimetypeChanged = pyqtSignal() @pyqtProperty(bool, notify = activityChanged) def platformActivity(self): return self._platform_activity - @pyqtProperty(str, notify=preferredOutputMimetypeChanged) - def preferredOutputMimetype(self): - return self._preferred_mimetype - @pyqtProperty(str, notify = sceneBoundingBoxChanged) def getSceneBoundingBoxString(self): return self._i18n_catalog.i18nc("@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm.", "%(width).1f x %(depth).1f x %(height).1f mm") % {'width' : self._scene_bounding_box.width.item(), 'depth': self._scene_bounding_box.depth.item(), 'height' : self._scene_bounding_box.height.item()} @@ -1720,7 +1710,11 @@ class CuraApplication(QtApplication): @pyqtSlot() def showMoreInformationDialogForAnonymousDataCollection(self): - cast(SliceInfo, self._plugin_registry.getPluginObject("SliceInfoPlugin")).showMoreInfoDialog() + try: + slice_info = self._plugin_registry.getPluginObject("SliceInfoPlugin") + slice_info.showMoreInfoDialog() + except PluginNotFoundError: + Logger.log("w", "Plugin SliceInfo was not found, so not able to show the info dialog.") def addSidebarCustomMenuItem(self, menu_item: dict) -> None: self._sidebar_custom_menu_items.append(menu_item) diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index 9766e0c82a..f33934de0c 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -21,7 +21,7 @@ class LayerPolygon: __number_of_types = 11 __jump_map = numpy.logical_or(numpy.logical_or(numpy.arange(__number_of_types) == NoneType, numpy.arange(__number_of_types) == MoveCombingType), numpy.arange(__number_of_types) == MoveRetractionType) - + ## LayerPolygon, used in ProcessSlicedLayersJob # \param extruder # \param line_types array with line_types diff --git a/cura/Machines/ContainerNode.py b/cura/Machines/ContainerNode.py index 944579e354..eef1c63127 100644 --- a/cura/Machines/ContainerNode.py +++ b/cura/Machines/ContainerNode.py @@ -9,9 +9,6 @@ from UM.ConfigurationErrorMessage import ConfigurationErrorMessage from UM.Logger import Logger from UM.Settings.InstanceContainer import InstanceContainer -if TYPE_CHECKING: - from cura.Machines.QualityGroup import QualityGroup - ## # A metadata / container combination. Use getContainer() to get the container corresponding to the metadata. @@ -24,29 +21,34 @@ if TYPE_CHECKING: # This is used in Variant, Material, and Quality Managers. # class ContainerNode: - __slots__ = ("metadata", "container", "children_map") + __slots__ = ("_metadata", "_container", "children_map") def __init__(self, metadata: Optional[Dict[str, Any]] = None) -> None: - self.metadata = metadata - self.container = None - self.children_map = OrderedDict() #type: OrderedDict[str, Union[QualityGroup, ContainerNode]] + self._metadata = metadata + self._container = None # type: Optional[InstanceContainer] + self.children_map = OrderedDict() # type: ignore # This is because it's children are supposed to override it. ## Get an entry value from the metadata def getMetaDataEntry(self, entry: str, default: Any = None) -> Any: - if self.metadata is None: + if self._metadata is None: return default - return self.metadata.get(entry, default) + return self._metadata.get(entry, default) + + def getMetadata(self) -> Dict[str, Any]: + if self._metadata is None: + return {} + return self._metadata def getChildNode(self, child_key: str) -> Optional["ContainerNode"]: return self.children_map.get(child_key) def getContainer(self) -> Optional["InstanceContainer"]: - if self.metadata is None: + if self._metadata is None: Logger.log("e", "Cannot get container for a ContainerNode without metadata.") return None - if self.container is None: - container_id = self.metadata["id"] + if self._container is None: + container_id = self._metadata["id"] from UM.Settings.ContainerRegistry import ContainerRegistry container_list = ContainerRegistry.getInstance().findInstanceContainers(id = container_id) if not container_list: @@ -54,9 +56,9 @@ class ContainerNode: error_message = ConfigurationErrorMessage.getInstance() error_message.addFaultyContainers(container_id) return None - self.container = container_list[0] + self._container = container_list[0] - return self.container + return self._container def __str__(self) -> str: return "%s[%s]" % (self.__class__.__name__, self.getMetaDataEntry("id")) diff --git a/cura/Machines/MachineErrorChecker.py b/cura/Machines/MachineErrorChecker.py index 37de4f30ce..06f064315b 100644 --- a/cura/Machines/MachineErrorChecker.py +++ b/cura/Machines/MachineErrorChecker.py @@ -50,7 +50,7 @@ class MachineErrorChecker(QObject): self._error_check_timer.setInterval(100) self._error_check_timer.setSingleShot(True) - def initialize(self): + def initialize(self) -> None: self._error_check_timer.timeout.connect(self._rescheduleCheck) # Reconnect all signals when the active machine gets changed. @@ -62,7 +62,7 @@ class MachineErrorChecker(QObject): self._onMachineChanged() - def _onMachineChanged(self): + def _onMachineChanged(self) -> None: if self._global_stack: self._global_stack.propertyChanged.disconnect(self.startErrorCheck) self._global_stack.containersChanged.disconnect(self.startErrorCheck) @@ -94,7 +94,7 @@ class MachineErrorChecker(QObject): return self._need_to_check or self._check_in_progress # Starts the error check timer to schedule a new error check. - def startErrorCheck(self, *args): + def startErrorCheck(self, *args) -> None: if not self._check_in_progress: self._need_to_check = True self.needToWaitForResultChanged.emit() @@ -103,7 +103,7 @@ class MachineErrorChecker(QObject): # This function is called by the timer to reschedule a new error check. # If there is no check in progress, it will start a new one. If there is any, it sets the "_need_to_check" flag # to notify the current check to stop and start a new one. - def _rescheduleCheck(self): + def _rescheduleCheck(self) -> None: if self._check_in_progress and not self._need_to_check: self._need_to_check = True self.needToWaitForResultChanged.emit() @@ -128,7 +128,7 @@ class MachineErrorChecker(QObject): self._start_time = time.time() Logger.log("d", "New error check scheduled.") - def _checkStack(self): + def _checkStack(self) -> None: if self._need_to_check: Logger.log("d", "Need to check for errors again. Discard the current progress and reschedule a check.") self._check_in_progress = False @@ -169,7 +169,7 @@ class MachineErrorChecker(QObject): # Schedule the check for the next key self._application.callLater(self._checkStack) - def _setResult(self, result: bool): + def _setResult(self, result: bool) -> None: if result != self._has_errors: self._has_errors = result self.hasErrorUpdated.emit() diff --git a/cura/Machines/MaterialGroup.py b/cura/Machines/MaterialGroup.py index 8a73796a7a..e05647e674 100644 --- a/cura/Machines/MaterialGroup.py +++ b/cura/Machines/MaterialGroup.py @@ -24,8 +24,8 @@ class MaterialGroup: def __init__(self, name: str, root_material_node: "MaterialNode") -> None: self.name = name self.is_read_only = False - self.root_material_node = root_material_node # type: MaterialNode - self.derived_material_node_list = [] # type: List[MaterialNode] + self.root_material_node = root_material_node # type: MaterialNode + self.derived_material_node_list = [] # type: List[MaterialNode] def __str__(self) -> str: return "%s[%s]" % (self.__class__.__name__, self.name) diff --git a/cura/Machines/MaterialManager.py b/cura/Machines/MaterialManager.py index d5a7d5d089..be97fbc161 100644 --- a/cura/Machines/MaterialManager.py +++ b/cura/Machines/MaterialManager.py @@ -4,7 +4,7 @@ from collections import defaultdict, OrderedDict import copy import uuid -from typing import Dict, Optional, TYPE_CHECKING +from typing import Dict, Optional, TYPE_CHECKING, Any, Set, List, cast, Tuple from PyQt5.Qt import QTimer, QObject, pyqtSignal, pyqtSlot @@ -21,7 +21,6 @@ from .VariantType import VariantType if TYPE_CHECKING: from UM.Settings.DefinitionContainer import DefinitionContainer - from UM.Settings.InstanceContainer import InstanceContainer from cura.Settings.GlobalStack import GlobalStack from cura.Settings.ExtruderStack import ExtruderStack @@ -39,24 +38,34 @@ if TYPE_CHECKING: class MaterialManager(QObject): materialsUpdated = pyqtSignal() # Emitted whenever the material lookup tables are updated. + favoritesUpdated = pyqtSignal() # Emitted whenever the favorites are changed def __init__(self, container_registry, parent = None): super().__init__(parent) self._application = Application.getInstance() self._container_registry = container_registry # type: ContainerRegistry - self._fallback_materials_map = dict() # material_type -> generic material metadata - self._material_group_map = dict() # root_material_id -> MaterialGroup - self._diameter_machine_nozzle_buildplate_material_map = dict() # approximate diameter str -> dict(machine_definition_id -> MaterialNode) + # Material_type -> generic material metadata + self._fallback_materials_map = dict() # type: Dict[str, Dict[str, Any]] + + # Root_material_id -> MaterialGroup + self._material_group_map = dict() # type: Dict[str, MaterialGroup] + + # Approximate diameter str + self._diameter_machine_nozzle_buildplate_material_map = dict() # type: Dict[str, Dict[str, MaterialNode]] # We're using these two maps to convert between the specific diameter material id and the generic material id # because the generic material ids are used in qualities and definitions, while the specific diameter material is meant # i.e. generic_pla -> generic_pla_175 - self._material_diameter_map = defaultdict(dict) # root_material_id -> approximate diameter str -> root_material_id for that diameter - self._diameter_material_map = dict() # material id including diameter (generic_pla_175) -> material root id (generic_pla) + # root_material_id -> approximate diameter str -> root_material_id for that diameter + self._material_diameter_map = defaultdict(dict) # type: Dict[str, Dict[str, str]] + + # Material id including diameter (generic_pla_175) -> material root id (generic_pla) + self._diameter_material_map = dict() # type: Dict[str, str] # This is used in Legacy UM3 send material function and the material management page. - self._guid_material_groups_map = defaultdict(list) # GUID -> a list of material_groups + # GUID -> a list of material_groups + self._guid_material_groups_map = defaultdict(list) # type: Dict[str, List[MaterialGroup]] # The machine definition ID for the non-machine-specific materials. # This is used as the last fallback option if the given machine-specific material(s) cannot be found. @@ -75,13 +84,15 @@ class MaterialManager(QObject): self._container_registry.containerAdded.connect(self._onContainerMetadataChanged) self._container_registry.containerRemoved.connect(self._onContainerMetadataChanged) - def initialize(self): + self._favorites = set() # type: Set[str] + + def initialize(self) -> None: # Find all materials and put them in a matrix for quick search. material_metadatas = {metadata["id"]: metadata for metadata in self._container_registry.findContainersMetadata(type = "material") if - metadata.get("GUID")} + metadata.get("GUID")} # type: Dict[str, Dict[str, Any]] - self._material_group_map = dict() + self._material_group_map = dict() # type: Dict[str, MaterialGroup] # Map #1 # root_material_id -> MaterialGroup @@ -90,7 +101,7 @@ class MaterialManager(QObject): if material_id == "empty_material": continue - root_material_id = material_metadata.get("base_file") + root_material_id = material_metadata.get("base_file", "") if root_material_id not in self._material_group_map: self._material_group_map[root_material_id] = MaterialGroup(root_material_id, MaterialNode(material_metadatas[root_material_id])) self._material_group_map[root_material_id].is_read_only = self._container_registry.isReadOnly(root_material_id) @@ -106,26 +117,26 @@ class MaterialManager(QObject): # Map #1.5 # GUID -> material group list - self._guid_material_groups_map = defaultdict(list) + self._guid_material_groups_map = defaultdict(list) # type: Dict[str, List[MaterialGroup]] for root_material_id, material_group in self._material_group_map.items(): - guid = material_group.root_material_node.metadata["GUID"] + guid = material_group.root_material_node.getMetaDataEntry("GUID", "") self._guid_material_groups_map[guid].append(material_group) # Map #2 # Lookup table for material type -> fallback material metadata, only for read-only materials - grouped_by_type_dict = dict() + grouped_by_type_dict = dict() # type: Dict[str, Any] material_types_without_fallback = set() for root_material_id, material_node in self._material_group_map.items(): - material_type = material_node.root_material_node.metadata["material"] + material_type = material_node.root_material_node.getMetaDataEntry("material", "") if material_type not in grouped_by_type_dict: grouped_by_type_dict[material_type] = {"generic": None, "others": []} material_types_without_fallback.add(material_type) - brand = material_node.root_material_node.metadata["brand"] + brand = material_node.root_material_node.getMetaDataEntry("brand", "") if brand.lower() == "generic": to_add = True if material_type in grouped_by_type_dict: - diameter = material_node.root_material_node.metadata.get("approximate_diameter") + diameter = material_node.root_material_node.getMetaDataEntry("approximate_diameter", "") if diameter != self._default_approximate_diameter_for_quality_search: to_add = False # don't add if it's not the default diameter @@ -134,7 +145,7 @@ class MaterialManager(QObject): # - if it's in the list, it means that is a new material without fallback # - if it is not, then it is a custom material with a fallback material (parent) if material_type in material_types_without_fallback: - grouped_by_type_dict[material_type] = material_node.root_material_node.metadata + grouped_by_type_dict[material_type] = material_node.root_material_node._metadata material_types_without_fallback.remove(material_type) # Remove the materials that have no fallback materials @@ -151,15 +162,15 @@ class MaterialManager(QObject): self._diameter_material_map = dict() # Group the material IDs by the same name, material, brand, and color but with different diameters. - material_group_dict = dict() + material_group_dict = dict() # type: Dict[Tuple[Any], Dict[str, str]] keys_to_fetch = ("name", "material", "brand", "color") for root_material_id, machine_node in self._material_group_map.items(): - root_material_metadata = machine_node.root_material_node.metadata + root_material_metadata = machine_node.root_material_node._metadata - key_data = [] + key_data_list = [] # type: List[Any] for key in keys_to_fetch: - key_data.append(root_material_metadata.get(key)) - key_data = tuple(key_data) + key_data_list.append(machine_node.root_material_node.getMetaDataEntry(key)) + key_data = cast(Tuple[Any], tuple(key_data_list)) # type: Tuple[Any] # If the key_data doesn't exist, it doesn't matter if the material is read only... if key_data not in material_group_dict: @@ -168,8 +179,8 @@ class MaterialManager(QObject): # ...but if key_data exists, we just overwrite it if the material is read only, otherwise we skip it if not machine_node.is_read_only: continue - approximate_diameter = root_material_metadata.get("approximate_diameter") - material_group_dict[key_data][approximate_diameter] = root_material_metadata["id"] + approximate_diameter = machine_node.root_material_node.getMetaDataEntry("approximate_diameter", "") + material_group_dict[key_data][approximate_diameter] = machine_node.root_material_node.getMetaDataEntry("id", "") # Map [root_material_id][diameter] -> root_material_id for this diameter for data_dict in material_group_dict.values(): @@ -188,13 +199,17 @@ class MaterialManager(QObject): # Map #4 # "machine" -> "nozzle name" -> "buildplate name" -> "root material ID" -> specific material InstanceContainer - self._diameter_machine_nozzle_buildplate_material_map = dict() + self._diameter_machine_nozzle_buildplate_material_map = dict() # type: Dict[str, Dict[str, MaterialNode]] for material_metadata in material_metadatas.values(): self.__addMaterialMetadataIntoLookupTree(material_metadata) + favorites = self._application.getPreferences().getValue("cura/favorite_materials") + for item in favorites.split(";"): + self._favorites.add(item) + self.materialsUpdated.emit() - def __addMaterialMetadataIntoLookupTree(self, material_metadata: dict) -> None: + def __addMaterialMetadataIntoLookupTree(self, material_metadata: Dict[str, Any]) -> None: material_id = material_metadata["id"] # We don't store empty material in the lookup tables @@ -281,7 +296,7 @@ class MaterialManager(QObject): return self._material_diameter_map.get(root_material_id, {}).get(approximate_diameter, root_material_id) def getRootMaterialIDWithoutDiameter(self, root_material_id: str) -> str: - return self._diameter_material_map.get(root_material_id) + return self._diameter_material_map.get(root_material_id, "") def getMaterialGroupListByGUID(self, guid: str) -> Optional[list]: return self._guid_material_groups_map.get(guid) @@ -321,6 +336,7 @@ class MaterialManager(QObject): machine_exclude_materials = machine_definition.getMetaDataEntry("exclude_materials", []) material_id_metadata_dict = dict() # type: Dict[str, MaterialNode] + excluded_materials = set() for current_node in nodes_to_check: if current_node is None: continue @@ -329,20 +345,22 @@ class MaterialManager(QObject): # Do not exclude other materials that are of the same type. for material_id, node in current_node.material_map.items(): if material_id in machine_exclude_materials: - Logger.log("d", "Exclude material [%s] for machine [%s]", - material_id, machine_definition.getId()) + excluded_materials.add(material_id) continue if material_id not in material_id_metadata_dict: material_id_metadata_dict[material_id] = node + if excluded_materials: + Logger.log("d", "Exclude materials {excluded_materials} for machine {machine_definition_id}".format(excluded_materials = ", ".join(excluded_materials), machine_definition_id = machine_definition_id)) + return material_id_metadata_dict # # A convenience function to get available materials for the given machine with the extruder position. # def getAvailableMaterialsForMachineExtruder(self, machine: "GlobalStack", - extruder_stack: "ExtruderStack") -> Optional[dict]: + extruder_stack: "ExtruderStack") -> Optional[Dict[str, MaterialNode]]: buildplate_name = machine.getBuildplateName() nozzle_name = None if extruder_stack.variant.getId() != "empty_variant": @@ -359,7 +377,7 @@ class MaterialManager(QObject): # 2. cannot find any material InstanceContainers with the given settings. # def getMaterialNode(self, machine_definition_id: str, nozzle_name: Optional[str], - buildplate_name: Optional[str], diameter: float, root_material_id: str) -> Optional["InstanceContainer"]: + buildplate_name: Optional[str], diameter: float, root_material_id: str) -> Optional["MaterialNode"]: # round the diameter to get the approximate diameter rounded_diameter = str(round(diameter)) if rounded_diameter not in self._diameter_machine_nozzle_buildplate_material_map: @@ -368,7 +386,7 @@ class MaterialManager(QObject): return None # If there are nozzle materials, get the nozzle-specific material - machine_nozzle_buildplate_material_map = self._diameter_machine_nozzle_buildplate_material_map[rounded_diameter] + machine_nozzle_buildplate_material_map = self._diameter_machine_nozzle_buildplate_material_map[rounded_diameter] # type: Dict[str, MaterialNode] machine_node = machine_nozzle_buildplate_material_map.get(machine_definition_id) nozzle_node = None buildplate_node = None @@ -417,7 +435,7 @@ class MaterialManager(QObject): # Look at the guid to material dictionary root_material_id = None for material_group in self._guid_material_groups_map[material_guid]: - root_material_id = material_group.root_material_node.metadata["id"] + root_material_id = cast(str, material_group.root_material_node.getMetaDataEntry("id", "")) break if not root_material_id: @@ -493,7 +511,7 @@ class MaterialManager(QObject): # Sets the new name for the given material. # @pyqtSlot("QVariant", str) - def setMaterialName(self, material_node: "MaterialNode", name: str): + def setMaterialName(self, material_node: "MaterialNode", name: str) -> None: root_material_id = material_node.getMetaDataEntry("base_file") if root_material_id is None: return @@ -511,7 +529,7 @@ class MaterialManager(QObject): # Removes the given material. # @pyqtSlot("QVariant") - def removeMaterial(self, material_node: "MaterialNode"): + def removeMaterial(self, material_node: "MaterialNode") -> None: root_material_id = material_node.getMetaDataEntry("base_file") if root_material_id is not None: self.removeMaterialByRootId(root_material_id) @@ -521,8 +539,8 @@ class MaterialManager(QObject): # Returns the root material ID of the duplicated material if successful. # @pyqtSlot("QVariant", result = str) - def duplicateMaterial(self, material_node, new_base_id = None, new_metadata = None) -> Optional[str]: - root_material_id = material_node.metadata["base_file"] + def duplicateMaterial(self, material_node: MaterialNode, new_base_id: Optional[str] = None, new_metadata: Dict[str, Any] = None) -> Optional[str]: + root_material_id = cast(str, material_node.getMetaDataEntry("base_file", "")) material_group = self.getMaterialGroup(root_material_id) if not material_group: @@ -573,11 +591,17 @@ class MaterialManager(QObject): for container_to_add in new_containers: container_to_add.setDirty(True) self._container_registry.addContainer(container_to_add) + + + # if the duplicated material was favorite then the new material should also be added to favorite. + if root_material_id in self.getFavorites(): + self.addFavorite(new_base_id) + return new_base_id # # Create a new material by cloning Generic PLA for the current material diameter and generate a new GUID. - # + # Returns the ID of the newly created material. @pyqtSlot(result = str) def createMaterial(self) -> str: from UM.i18n import i18nCatalog @@ -608,3 +632,25 @@ class MaterialManager(QObject): new_base_id = new_id, new_metadata = new_metadata) return new_id + + @pyqtSlot(str) + def addFavorite(self, root_material_id: str) -> None: + self._favorites.add(root_material_id) + self.materialsUpdated.emit() + + # Ensure all settings are saved. + self._application.getPreferences().setValue("cura/favorite_materials", ";".join(list(self._favorites))) + self._application.saveSettings() + + @pyqtSlot(str) + def removeFavorite(self, root_material_id: str) -> None: + self._favorites.remove(root_material_id) + self.materialsUpdated.emit() + + # Ensure all settings are saved. + self._application.getPreferences().setValue("cura/favorite_materials", ";".join(list(self._favorites))) + self._application.saveSettings() + + @pyqtSlot() + def getFavorites(self): + return self._favorites \ No newline at end of file diff --git a/cura/Machines/MaterialNode.py b/cura/Machines/MaterialNode.py index 04423d7b2c..a4dcb0564f 100644 --- a/cura/Machines/MaterialNode.py +++ b/cura/Machines/MaterialNode.py @@ -1,7 +1,7 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import Optional, Dict - +from typing import Optional, Dict, Any +from collections import OrderedDict from .ContainerNode import ContainerNode @@ -14,6 +14,12 @@ from .ContainerNode import ContainerNode class MaterialNode(ContainerNode): __slots__ = ("material_map", "children_map") - def __init__(self, metadata: Optional[dict] = None) -> None: + def __init__(self, metadata: Optional[Dict[str, Any]] = None) -> None: super().__init__(metadata = metadata) self.material_map = {} # type: Dict[str, MaterialNode] # material_root_id -> material_node + + # We overide this as we want to indicate that MaterialNodes can only contain other material nodes. + self.children_map = OrderedDict() # type: OrderedDict[str, "MaterialNode"] + + def getChildNode(self, child_key: str) -> Optional["MaterialNode"]: + return self.children_map.get(child_key) \ No newline at end of file diff --git a/cura/Machines/Models/BaseMaterialsModel.py b/cura/Machines/Models/BaseMaterialsModel.py index 4759c8b5b0..be9f8be1ed 100644 --- a/cura/Machines/Models/BaseMaterialsModel.py +++ b/cura/Machines/Models/BaseMaterialsModel.py @@ -2,45 +2,60 @@ # Cura is released under the terms of the LGPLv3 or higher. from PyQt5.QtCore import Qt, pyqtSignal, pyqtProperty - -from UM.Application import Application from UM.Qt.ListModel import ListModel -# -# This is the base model class for GenericMaterialsModel and BrandMaterialsModel -# Those 2 models are used by the material drop down menu to show generic materials and branded materials separately. -# The extruder position defined here is being used to bound a menu to the correct extruder. This is used in the top -# bar menu "Settings" -> "Extruder nr" -> "Material" -> this menu -# +## This is the base model class for GenericMaterialsModel and MaterialBrandsModel. +# Those 2 models are used by the material drop down menu to show generic materials and branded materials separately. +# The extruder position defined here is being used to bound a menu to the correct extruder. This is used in the top +# bar menu "Settings" -> "Extruder nr" -> "Material" -> this menu class BaseMaterialsModel(ListModel): - RootMaterialIdRole = Qt.UserRole + 1 - IdRole = Qt.UserRole + 2 - NameRole = Qt.UserRole + 3 - BrandRole = Qt.UserRole + 4 - MaterialRole = Qt.UserRole + 5 - ColorRole = Qt.UserRole + 6 - ContainerNodeRole = Qt.UserRole + 7 extruderPositionChanged = pyqtSignal() def __init__(self, parent = None): super().__init__(parent) - self._application = Application.getInstance() - self._machine_manager = self._application.getMachineManager() - self.addRoleName(self.RootMaterialIdRole, "root_material_id") - self.addRoleName(self.IdRole, "id") - self.addRoleName(self.NameRole, "name") - self.addRoleName(self.BrandRole, "brand") - self.addRoleName(self.MaterialRole, "material") - self.addRoleName(self.ColorRole, "color_name") - self.addRoleName(self.ContainerNodeRole, "container_node") + from cura.CuraApplication import CuraApplication + + self._application = CuraApplication.getInstance() + + # Make these managers available to all material models + self._container_registry = self._application.getInstance().getContainerRegistry() + self._machine_manager = self._application.getMachineManager() + self._material_manager = self._application.getMaterialManager() + + # Update the stack and the model data when the machine changes + self._machine_manager.globalContainerChanged.connect(self._updateExtruderStack) + + # Update this model when switching machines + self._machine_manager.activeStackChanged.connect(self._update) + + # Update this model when list of materials changes + self._material_manager.materialsUpdated.connect(self._update) + + self.addRoleName(Qt.UserRole + 1, "root_material_id") + self.addRoleName(Qt.UserRole + 2, "id") + self.addRoleName(Qt.UserRole + 3, "GUID") + self.addRoleName(Qt.UserRole + 4, "name") + self.addRoleName(Qt.UserRole + 5, "brand") + self.addRoleName(Qt.UserRole + 6, "description") + self.addRoleName(Qt.UserRole + 7, "material") + self.addRoleName(Qt.UserRole + 8, "color_name") + self.addRoleName(Qt.UserRole + 9, "color_code") + self.addRoleName(Qt.UserRole + 10, "density") + self.addRoleName(Qt.UserRole + 11, "diameter") + self.addRoleName(Qt.UserRole + 12, "approximate_diameter") + self.addRoleName(Qt.UserRole + 13, "adhesion_info") + self.addRoleName(Qt.UserRole + 14, "is_read_only") + self.addRoleName(Qt.UserRole + 15, "container_node") + self.addRoleName(Qt.UserRole + 16, "is_favorite") self._extruder_position = 0 self._extruder_stack = None - # Update the stack and the model data when the machine changes - self._machine_manager.globalContainerChanged.connect(self._updateExtruderStack) + + self._available_materials = None + self._favorite_ids = None def _updateExtruderStack(self): global_stack = self._machine_manager.activeMachine @@ -65,8 +80,55 @@ class BaseMaterialsModel(ListModel): def extruderPosition(self) -> int: return self._extruder_position - # - # This is an abstract method that needs to be implemented by - # + ## This is an abstract method that needs to be implemented by the specific + # models themselves. def _update(self): pass + + ## This method is used by all material models in the beginning of the + # _update() method in order to prevent errors. It's the same in all models + # so it's placed here for easy access. + def _canUpdate(self): + global_stack = self._machine_manager.activeMachine + + if global_stack is None: + return False + + extruder_position = str(self._extruder_position) + + if extruder_position not in global_stack.extruders: + return False + + extruder_stack = global_stack.extruders[extruder_position] + + self._available_materials = self._material_manager.getAvailableMaterialsForMachineExtruder(global_stack, extruder_stack) + if self._available_materials is None: + return False + + return True + + ## This is another convenience function which is shared by all material + # models so it's put here to avoid having so much duplicated code. + def _createMaterialItem(self, root_material_id, container_node): + metadata = container_node.getMetadata() + item = { + "root_material_id": root_material_id, + "id": metadata["id"], + "container_id": metadata["id"], # TODO: Remove duplicate in material manager qml + "GUID": metadata["GUID"], + "name": metadata["name"], + "brand": metadata["brand"], + "description": metadata["description"], + "material": metadata["material"], + "color_name": metadata["color_name"], + "color_code": metadata.get("color_code", ""), + "density": metadata.get("properties", {}).get("density", ""), + "diameter": metadata.get("properties", {}).get("diameter", ""), + "approximate_diameter": metadata["approximate_diameter"], + "adhesion_info": metadata["adhesion_info"], + "is_read_only": self._container_registry.isReadOnly(metadata["id"]), + "container_node": container_node, + "is_favorite": root_material_id in self._favorite_ids + } + return item + diff --git a/cura/Machines/Models/BrandMaterialsModel.py b/cura/Machines/Models/BrandMaterialsModel.py deleted file mode 100644 index ad48b3ea21..0000000000 --- a/cura/Machines/Models/BrandMaterialsModel.py +++ /dev/null @@ -1,157 +0,0 @@ -# Copyright (c) 2018 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. - -from PyQt5.QtCore import Qt, pyqtSignal, pyqtProperty - -from UM.Qt.ListModel import ListModel -from UM.Logger import Logger -from cura.Machines.Models.BaseMaterialsModel import BaseMaterialsModel - - -# -# This is an intermediate model to group materials with different colours for a same brand and type. -# -class MaterialsModelGroupedByType(ListModel): - NameRole = Qt.UserRole + 1 - ColorsRole = Qt.UserRole + 2 - - def __init__(self, parent = None): - super().__init__(parent) - - self.addRoleName(self.NameRole, "name") - self.addRoleName(self.ColorsRole, "colors") - - -# -# This model is used to show branded materials in the material drop down menu. -# The structure of the menu looks like this: -# Brand -> Material Type -> list of materials -# -# To illustrate, a branded material menu may look like this: -# Ultimaker -> PLA -> Yellow PLA -# -> Black PLA -# -> ... -# -> ABS -> White ABS -# ... -# -class BrandMaterialsModel(ListModel): - NameRole = Qt.UserRole + 1 - MaterialsRole = Qt.UserRole + 2 - - extruderPositionChanged = pyqtSignal() - - def __init__(self, parent = None): - super().__init__(parent) - - self.addRoleName(self.NameRole, "name") - self.addRoleName(self.MaterialsRole, "materials") - - self._extruder_position = 0 - self._extruder_stack = None - - from cura.CuraApplication import CuraApplication - self._machine_manager = CuraApplication.getInstance().getMachineManager() - self._extruder_manager = CuraApplication.getInstance().getExtruderManager() - self._material_manager = CuraApplication.getInstance().getMaterialManager() - - self._machine_manager.globalContainerChanged.connect(self._updateExtruderStack) - self._machine_manager.activeStackChanged.connect(self._update) #Update when switching machines. - self._material_manager.materialsUpdated.connect(self._update) #Update when the list of materials changes. - self._update() - - def _updateExtruderStack(self): - global_stack = self._machine_manager.activeMachine - if global_stack is None: - return - - if self._extruder_stack is not None: - self._extruder_stack.pyqtContainersChanged.disconnect(self._update) - self._extruder_stack = global_stack.extruders.get(str(self._extruder_position)) - if self._extruder_stack is not None: - self._extruder_stack.pyqtContainersChanged.connect(self._update) - # Force update the model when the extruder stack changes - self._update() - - def setExtruderPosition(self, position: int): - if self._extruder_stack is None or self._extruder_position != position: - self._extruder_position = position - self._updateExtruderStack() - self.extruderPositionChanged.emit() - - @pyqtProperty(int, fset=setExtruderPosition, notify=extruderPositionChanged) - def extruderPosition(self) -> int: - return self._extruder_position - - def _update(self): - Logger.log("d", "Updating {model_class_name}.".format(model_class_name = self.__class__.__name__)) - global_stack = self._machine_manager.activeMachine - if global_stack is None: - self.setItems([]) - return - extruder_position = str(self._extruder_position) - if extruder_position not in global_stack.extruders: - self.setItems([]) - return - extruder_stack = global_stack.extruders[str(self._extruder_position)] - - available_material_dict = self._material_manager.getAvailableMaterialsForMachineExtruder(global_stack, - extruder_stack) - if available_material_dict is None: - self.setItems([]) - return - - brand_item_list = [] - brand_group_dict = {} - for root_material_id, container_node in available_material_dict.items(): - metadata = container_node.metadata - brand = metadata["brand"] - # Only add results for generic materials - if brand.lower() == "generic": - continue - - # Do not include the materials from a to-be-removed package - if bool(metadata.get("removed", False)): - continue - - if brand not in brand_group_dict: - brand_group_dict[brand] = {} - - material_type = metadata["material"] - if material_type not in brand_group_dict[brand]: - brand_group_dict[brand][material_type] = [] - - item = {"root_material_id": root_material_id, - "id": metadata["id"], - "name": metadata["name"], - "brand": metadata["brand"], - "material": metadata["material"], - "color_name": metadata["color_name"], - "container_node": container_node - } - brand_group_dict[brand][material_type].append(item) - - for brand, material_dict in brand_group_dict.items(): - brand_item = {"name": brand, - "materials": MaterialsModelGroupedByType(self)} - - material_type_item_list = [] - for material_type, material_list in material_dict.items(): - material_type_item = {"name": material_type, - "colors": BaseMaterialsModel(self)} - material_type_item["colors"].clear() - - # Sort materials by name - material_list = sorted(material_list, key = lambda x: x["name"].upper()) - material_type_item["colors"].setItems(material_list) - - material_type_item_list.append(material_type_item) - - # Sort material type by name - material_type_item_list = sorted(material_type_item_list, key = lambda x: x["name"].upper()) - brand_item["materials"].setItems(material_type_item_list) - - brand_item_list.append(brand_item) - - # Sort brand by name - brand_item_list = sorted(brand_item_list, key = lambda x: x["name"].upper()) - self.setItems(brand_item_list) diff --git a/cura/Machines/Models/FavoriteMaterialsModel.py b/cura/Machines/Models/FavoriteMaterialsModel.py new file mode 100644 index 0000000000..18fe310c44 --- /dev/null +++ b/cura/Machines/Models/FavoriteMaterialsModel.py @@ -0,0 +1,42 @@ +# Copyright (c) 2018 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.Logger import Logger +from cura.Machines.Models.BaseMaterialsModel import BaseMaterialsModel + +class FavoriteMaterialsModel(BaseMaterialsModel): + + def __init__(self, parent = None): + super().__init__(parent) + self._update() + + def _update(self): + + # Perform standard check and reset if the check fails + if not self._canUpdate(): + self.setItems([]) + return + + # Get updated list of favorites + self._favorite_ids = self._material_manager.getFavorites() + + item_list = [] + + for root_material_id, container_node in self._available_materials.items(): + metadata = container_node.getMetadata() + + # Do not include the materials from a to-be-removed package + if bool(metadata.get("removed", False)): + continue + + # Only add results for favorite materials + if root_material_id not in self._favorite_ids: + continue + + item = self._createMaterialItem(root_material_id, container_node) + item_list.append(item) + + # Sort the item list alphabetically by name + item_list = sorted(item_list, key = lambda d: d["brand"].upper()) + + self.setItems(item_list) diff --git a/cura/Machines/Models/GenericMaterialsModel.py b/cura/Machines/Models/GenericMaterialsModel.py index f14b039c91..c276b865bf 100644 --- a/cura/Machines/Models/GenericMaterialsModel.py +++ b/cura/Machines/Models/GenericMaterialsModel.py @@ -4,63 +4,39 @@ from UM.Logger import Logger from cura.Machines.Models.BaseMaterialsModel import BaseMaterialsModel - class GenericMaterialsModel(BaseMaterialsModel): def __init__(self, parent = None): super().__init__(parent) - - from cura.CuraApplication import CuraApplication - self._machine_manager = CuraApplication.getInstance().getMachineManager() - self._extruder_manager = CuraApplication.getInstance().getExtruderManager() - self._material_manager = CuraApplication.getInstance().getMaterialManager() - - self._machine_manager.activeStackChanged.connect(self._update) #Update when switching machines. - self._material_manager.materialsUpdated.connect(self._update) #Update when the list of materials changes. self._update() def _update(self): - Logger.log("d", "Updating {model_class_name}.".format(model_class_name = self.__class__.__name__)) - global_stack = self._machine_manager.activeMachine - if global_stack is None: + # Perform standard check and reset if the check fails + if not self._canUpdate(): self.setItems([]) return - extruder_position = str(self._extruder_position) - if extruder_position not in global_stack.extruders: - self.setItems([]) - return - extruder_stack = global_stack.extruders[extruder_position] - available_material_dict = self._material_manager.getAvailableMaterialsForMachineExtruder(global_stack, - extruder_stack) - if available_material_dict is None: - self.setItems([]) - return + # Get updated list of favorites + self._favorite_ids = self._material_manager.getFavorites() item_list = [] - for root_material_id, container_node in available_material_dict.items(): - metadata = container_node.metadata - # Only add results for generic materials - if metadata["brand"].lower() != "generic": - continue + for root_material_id, container_node in self._available_materials.items(): + metadata = container_node.getMetadata() # Do not include the materials from a to-be-removed package if bool(metadata.get("removed", False)): continue - item = {"root_material_id": root_material_id, - "id": metadata["id"], - "name": metadata["name"], - "brand": metadata["brand"], - "material": metadata["material"], - "color_name": metadata["color_name"], - "container_node": container_node - } + # Only add results for generic materials + if metadata["brand"].lower() != "generic": + continue + + item = self._createMaterialItem(root_material_id, container_node) item_list.append(item) - # Sort the item list by material name alphabetically + # Sort the item list alphabetically by name item_list = sorted(item_list, key = lambda d: d["name"].upper()) self.setItems(item_list) diff --git a/cura/Machines/Models/MaterialBrandsModel.py b/cura/Machines/Models/MaterialBrandsModel.py new file mode 100644 index 0000000000..458e4d9b47 --- /dev/null +++ b/cura/Machines/Models/MaterialBrandsModel.py @@ -0,0 +1,107 @@ +# Copyright (c) 2018 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt5.QtCore import Qt, pyqtSignal, pyqtProperty +from UM.Qt.ListModel import ListModel +from UM.Logger import Logger +from cura.Machines.Models.BaseMaterialsModel import BaseMaterialsModel + +class MaterialTypesModel(ListModel): + + def __init__(self, parent = None): + super().__init__(parent) + + self.addRoleName(Qt.UserRole + 1, "name") + self.addRoleName(Qt.UserRole + 2, "brand") + self.addRoleName(Qt.UserRole + 3, "colors") + +class MaterialBrandsModel(BaseMaterialsModel): + + extruderPositionChanged = pyqtSignal() + + def __init__(self, parent = None): + super().__init__(parent) + + self.addRoleName(Qt.UserRole + 1, "name") + self.addRoleName(Qt.UserRole + 2, "material_types") + + self._update() + + def _update(self): + + # Perform standard check and reset if the check fails + if not self._canUpdate(): + self.setItems([]) + return + + # Get updated list of favorites + self._favorite_ids = self._material_manager.getFavorites() + + brand_item_list = [] + brand_group_dict = {} + + # Part 1: Generate the entire tree of brands -> material types -> spcific materials + for root_material_id, container_node in self._available_materials.items(): + # Do not include the materials from a to-be-removed package + if bool(container_node.getMetaDataEntry("removed", False)): + continue + + # Add brands we haven't seen yet to the dict, skipping generics + brand = container_node.getMetaDataEntry("brand", "") + if brand.lower() == "generic": + continue + if brand not in brand_group_dict: + brand_group_dict[brand] = {} + + # Add material types we haven't seen yet to the dict + material_type = container_node.getMetaDataEntry("material", "") + if material_type not in brand_group_dict[brand]: + brand_group_dict[brand][material_type] = [] + + # Now handle the individual materials + item = self._createMaterialItem(root_material_id, container_node) + brand_group_dict[brand][material_type].append(item) + + # Part 2: Organize the tree into models + # + # Normally, the structure of the menu looks like this: + # Brand -> Material Type -> Specific Material + # + # To illustrate, a branded material menu may look like this: + # Ultimaker ┳ PLA ┳ Yellow PLA + # ┃ ┣ Black PLA + # ┃ ┗ ... + # ┃ + # ┗ ABS ┳ White ABS + # ┗ ... + for brand, material_dict in brand_group_dict.items(): + + material_type_item_list = [] + brand_item = { + "name": brand, + "material_types": MaterialTypesModel(self) + } + + for material_type, material_list in material_dict.items(): + material_type_item = { + "name": material_type, + "brand": brand, + "colors": BaseMaterialsModel(self) + } + material_type_item["colors"].clear() + + # Sort materials by name + material_list = sorted(material_list, key = lambda x: x["name"].upper()) + material_type_item["colors"].setItems(material_list) + + material_type_item_list.append(material_type_item) + + # Sort material type by name + material_type_item_list = sorted(material_type_item_list, key = lambda x: x["name"].upper()) + brand_item["material_types"].setItems(material_type_item_list) + + brand_item_list.append(brand_item) + + # Sort brand by name + brand_item_list = sorted(brand_item_list, key = lambda x: x["name"].upper()) + self.setItems(brand_item_list) diff --git a/cura/Machines/Models/MaterialManagementModel.py b/cura/Machines/Models/MaterialManagementModel.py deleted file mode 100644 index 46e9cb887a..0000000000 --- a/cura/Machines/Models/MaterialManagementModel.py +++ /dev/null @@ -1,104 +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.Logger import Logger -from UM.Qt.ListModel import ListModel - - -# -# This model is for the Material management page. -# -class MaterialManagementModel(ListModel): - RootMaterialIdRole = Qt.UserRole + 1 - DisplayNameRole = Qt.UserRole + 2 - BrandRole = Qt.UserRole + 3 - MaterialTypeRole = Qt.UserRole + 4 - ColorNameRole = Qt.UserRole + 5 - ColorCodeRole = Qt.UserRole + 6 - ContainerNodeRole = Qt.UserRole + 7 - ContainerIdRole = Qt.UserRole + 8 - - DescriptionRole = Qt.UserRole + 9 - AdhesionInfoRole = Qt.UserRole + 10 - ApproximateDiameterRole = Qt.UserRole + 11 - GuidRole = Qt.UserRole + 12 - DensityRole = Qt.UserRole + 13 - DiameterRole = Qt.UserRole + 14 - IsReadOnlyRole = Qt.UserRole + 15 - - def __init__(self, parent = None): - super().__init__(parent) - - self.addRoleName(self.RootMaterialIdRole, "root_material_id") - self.addRoleName(self.DisplayNameRole, "name") - self.addRoleName(self.BrandRole, "brand") - self.addRoleName(self.MaterialTypeRole, "material") - self.addRoleName(self.ColorNameRole, "color_name") - self.addRoleName(self.ColorCodeRole, "color_code") - self.addRoleName(self.ContainerNodeRole, "container_node") - self.addRoleName(self.ContainerIdRole, "container_id") - - self.addRoleName(self.DescriptionRole, "description") - self.addRoleName(self.AdhesionInfoRole, "adhesion_info") - self.addRoleName(self.ApproximateDiameterRole, "approximate_diameter") - self.addRoleName(self.GuidRole, "guid") - self.addRoleName(self.DensityRole, "density") - self.addRoleName(self.DiameterRole, "diameter") - self.addRoleName(self.IsReadOnlyRole, "is_read_only") - - from cura.CuraApplication import CuraApplication - self._container_registry = CuraApplication.getInstance().getContainerRegistry() - self._machine_manager = CuraApplication.getInstance().getMachineManager() - self._extruder_manager = CuraApplication.getInstance().getExtruderManager() - self._material_manager = CuraApplication.getInstance().getMaterialManager() - - self._machine_manager.globalContainerChanged.connect(self._update) - self._extruder_manager.activeExtruderChanged.connect(self._update) - self._material_manager.materialsUpdated.connect(self._update) - - self._update() - - def _update(self): - Logger.log("d", "Updating {model_class_name}.".format(model_class_name = self.__class__.__name__)) - - global_stack = self._machine_manager.activeMachine - if global_stack is None: - self.setItems([]) - return - active_extruder_stack = self._machine_manager.activeStack - - available_material_dict = self._material_manager.getAvailableMaterialsForMachineExtruder(global_stack, - active_extruder_stack) - if available_material_dict is None: - self.setItems([]) - return - - material_list = [] - for root_material_id, container_node in available_material_dict.items(): - keys_to_fetch = ("name", - "brand", - "material", - "color_name", - "color_code", - "description", - "adhesion_info", - "approximate_diameter",) - - item = {"root_material_id": container_node.metadata["base_file"], - "container_node": container_node, - "guid": container_node.metadata["GUID"], - "container_id": container_node.metadata["id"], - "density": container_node.metadata.get("properties", {}).get("density", ""), - "diameter": container_node.metadata.get("properties", {}).get("diameter", ""), - "is_read_only": self._container_registry.isReadOnly(container_node.metadata["id"]), - } - - for key in keys_to_fetch: - item[key] = container_node.metadata.get(key, "") - - material_list.append(item) - - material_list = sorted(material_list, key = lambda k: (k["brand"].upper(), k["name"].upper())) - self.setItems(material_list) diff --git a/cura/Machines/Models/QualityProfilesDropDownMenuModel.py b/cura/Machines/Models/QualityProfilesDropDownMenuModel.py index 59c4f4fa5b..a01cc1194f 100644 --- a/cura/Machines/Models/QualityProfilesDropDownMenuModel.py +++ b/cura/Machines/Models/QualityProfilesDropDownMenuModel.py @@ -6,10 +6,10 @@ from PyQt5.QtCore import Qt from UM.Application import Application from UM.Logger import Logger from UM.Qt.ListModel import ListModel +from UM.Settings.SettingFunction import SettingFunction from cura.Machines.QualityManager import QualityGroup - # # QML Model for all built-in quality profiles. This model is used for the drop-down quality menu. # @@ -106,4 +106,8 @@ class QualityProfilesDropDownMenuModel(ListModel): container = global_stack.definition if container and container.hasProperty("layer_height", "value"): layer_height = container.getProperty("layer_height", "value") + + if isinstance(layer_height, SettingFunction): + layer_height = layer_height(global_stack) + return float(layer_height) diff --git a/cura/Machines/Models/SettingVisibilityPresetsModel.py b/cura/Machines/Models/SettingVisibilityPresetsModel.py index 3062e83889..d5fa51d20a 100644 --- a/cura/Machines/Models/SettingVisibilityPresetsModel.py +++ b/cura/Machines/Models/SettingVisibilityPresetsModel.py @@ -58,7 +58,7 @@ class SettingVisibilityPresetsModel(ListModel): break return result - def _populate(self): + def _populate(self) -> None: from cura.CuraApplication import CuraApplication items = [] for file_path in Resources.getAllResourcesOfType(CuraApplication.ResourceTypes.SettingVisibilityPreset): @@ -147,7 +147,7 @@ class SettingVisibilityPresetsModel(ListModel): def activePreset(self) -> str: return self._active_preset_item["id"] - def _onPreferencesChanged(self, name: str): + def _onPreferencesChanged(self, name: str) -> None: if name != "general/visible_settings": return diff --git a/cura/Machines/QualityChangesGroup.py b/cura/Machines/QualityChangesGroup.py index 2d0e655ed8..7844b935dc 100644 --- a/cura/Machines/QualityChangesGroup.py +++ b/cura/Machines/QualityChangesGroup.py @@ -17,16 +17,16 @@ class QualityChangesGroup(QualityGroup): super().__init__(name, quality_type, parent) self._container_registry = Application.getInstance().getContainerRegistry() - def addNode(self, node: "QualityNode"): + def addNode(self, node: "QualityNode") -> None: extruder_position = node.getMetaDataEntry("position") if extruder_position is None and self.node_for_global is not None or extruder_position in self.nodes_for_extruders: #We would be overwriting another node. ConfigurationErrorMessage.getInstance().addFaultyContainers(node.getMetaDataEntry("id")) return - if extruder_position is None: #Then we're a global quality changes profile. + if extruder_position is None: # Then we're a global quality changes profile. self.node_for_global = node - else: #This is an extruder's quality changes profile. + else: # This is an extruder's quality changes profile. self.nodes_for_extruders[extruder_position] = node def __str__(self) -> str: diff --git a/cura/Machines/QualityGroup.py b/cura/Machines/QualityGroup.py index 90ef63af51..535ba453f8 100644 --- a/cura/Machines/QualityGroup.py +++ b/cura/Machines/QualityGroup.py @@ -6,6 +6,7 @@ from typing import Dict, Optional, List, Set from PyQt5.QtCore import QObject, pyqtSlot from cura.Machines.ContainerNode import ContainerNode + # # A QualityGroup represents a group of containers that must be applied to each ContainerStack when it's used. # Some concrete examples are Quality and QualityChanges: when we select quality type "normal", this quality type @@ -34,7 +35,7 @@ class QualityGroup(QObject): return self.name def getAllKeys(self) -> Set[str]: - result = set() #type: Set[str] + result = set() # type: Set[str] for node in [self.node_for_global] + list(self.nodes_for_extruders.values()): if node is None: continue diff --git a/cura/Machines/QualityManager.py b/cura/Machines/QualityManager.py index df3bec0827..21abb5a9cc 100644 --- a/cura/Machines/QualityManager.py +++ b/cura/Machines/QualityManager.py @@ -1,7 +1,7 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import TYPE_CHECKING, Optional, cast +from typing import TYPE_CHECKING, Optional, cast, Dict, List from PyQt5.QtCore import QObject, QTimer, pyqtSignal, pyqtSlot @@ -20,6 +20,8 @@ if TYPE_CHECKING: from UM.Settings.DefinitionContainer import DefinitionContainer from cura.Settings.GlobalStack import GlobalStack from .QualityChangesGroup import QualityChangesGroup + from cura.CuraApplication import CuraApplication + from UM.Settings.ContainerRegistry import ContainerRegistry # @@ -36,17 +38,20 @@ class QualityManager(QObject): qualitiesUpdated = pyqtSignal() - def __init__(self, container_registry, parent = None): + def __init__(self, container_registry: "ContainerRegistry", parent = None) -> None: super().__init__(parent) - self._application = Application.getInstance() + self._application = Application.getInstance() # type: CuraApplication self._material_manager = self._application.getMaterialManager() self._container_registry = container_registry self._empty_quality_container = self._application.empty_quality_container self._empty_quality_changes_container = self._application.empty_quality_changes_container - self._machine_nozzle_buildplate_material_quality_type_to_quality_dict = {} # for quality lookup - self._machine_quality_type_to_quality_changes_dict = {} # for quality_changes lookup + # For quality lookup + self._machine_nozzle_buildplate_material_quality_type_to_quality_dict = {} # type: Dict[str, QualityNode] + + # For quality_changes lookup + self._machine_quality_type_to_quality_changes_dict = {} # type: Dict[str, QualityNode] self._default_machine_definition_id = "fdmprinter" @@ -62,7 +67,7 @@ class QualityManager(QObject): self._update_timer.setSingleShot(True) self._update_timer.timeout.connect(self._updateMaps) - def initialize(self): + def initialize(self) -> None: # Initialize the lookup tree for quality profiles with following structure: # -> -> -> # -> @@ -133,13 +138,13 @@ class QualityManager(QObject): Logger.log("d", "Lookup tables updated.") self.qualitiesUpdated.emit() - def _updateMaps(self): + def _updateMaps(self) -> None: self.initialize() - def _onContainerMetadataChanged(self, container): + def _onContainerMetadataChanged(self, container: InstanceContainer) -> None: self._onContainerChanged(container) - def _onContainerChanged(self, container): + def _onContainerChanged(self, container: InstanceContainer) -> None: container_type = container.getMetaDataEntry("type") if container_type not in ("quality", "quality_changes"): return @@ -148,7 +153,7 @@ class QualityManager(QObject): self._update_timer.start() # Updates the given quality groups' availabilities according to which extruders are being used/ enabled. - def _updateQualityGroupsAvailability(self, machine: "GlobalStack", quality_group_list): + def _updateQualityGroupsAvailability(self, machine: "GlobalStack", quality_group_list) -> None: used_extruders = set() for i in range(machine.getProperty("machine_extruder_count", "value")): if str(i) in machine.extruders and machine.extruders[str(i)].isEnabled: @@ -196,32 +201,42 @@ class QualityManager(QObject): # Whether a QualityGroup is available can be unknown via the field QualityGroup.is_available. # For more details, see QualityGroup. # - def getQualityGroups(self, machine: "GlobalStack") -> dict: + def getQualityGroups(self, machine: "GlobalStack") -> Dict[str, QualityGroup]: machine_definition_id = getMachineDefinitionIDForQualitySearch(machine.definition) # This determines if we should only get the global qualities for the global stack and skip the global qualities for the extruder stacks - has_variant_materials = parseBool(machine.getMetaDataEntry("has_variant_materials", False)) + has_machine_specific_qualities = machine.getHasMachineQuality() # To find the quality container for the GlobalStack, check in the following fall-back manner: # (1) the machine-specific node # (2) the generic node machine_node = self._machine_nozzle_buildplate_material_quality_type_to_quality_dict.get(machine_definition_id) + # Check if this machine has specific quality profiles for its extruders, if so, when looking up extruder + # qualities, we should not fall back to use the global qualities. + has_extruder_specific_qualities = False + if machine_node: + if machine_node.children_map: + has_extruder_specific_qualities = True + default_machine_node = self._machine_nozzle_buildplate_material_quality_type_to_quality_dict.get(self._default_machine_definition_id) - nodes_to_check = [machine_node, default_machine_node] + + nodes_to_check = [] # type: List[QualityNode] + if machine_node is not None: + nodes_to_check.append(machine_node) + if default_machine_node is not None: + nodes_to_check.append(default_machine_node) # Iterate over all quality_types in the machine node quality_group_dict = {} for node in nodes_to_check: if node and node.quality_type_map: - # Only include global qualities - if has_variant_materials: - quality_node = list(node.quality_type_map.values())[0] - is_global_quality = parseBool(quality_node.metadata.get("global_quality", False)) - if not is_global_quality: - continue + quality_node = list(node.quality_type_map.values())[0] + is_global_quality = parseBool(quality_node.getMetaDataEntry("global_quality", False)) + if not is_global_quality: + continue for quality_type, quality_node in node.quality_type_map.items(): - quality_group = QualityGroup(quality_node.metadata["name"], quality_type) + quality_group = QualityGroup(quality_node.getMetaDataEntry("name", ""), quality_type) quality_group.node_for_global = quality_node quality_group_dict[quality_type] = quality_group break @@ -259,18 +274,25 @@ class QualityManager(QObject): # 2. machine-nozzle-and-material-specific qualities if exist # 3. machine-nozzle-specific qualities if exist # 4. machine-material-specific qualities if exist - # 5. machine-specific qualities if exist - # 6. generic qualities if exist + # 5. machine-specific global qualities if exist, otherwise generic global qualities + # NOTE: We DO NOT fail back to generic global qualities if machine-specific global qualities exist. + # This is because when a machine defines its own global qualities such as Normal, Fine, etc., + # it is intended to maintain those specific qualities ONLY. If we still fail back to the generic + # global qualities, there can be unimplemented quality types e.g. "coarse", and this is not + # correct. # Each points above can be represented as a node in the lookup tree, so here we simply put those nodes into # the list with priorities as the order. Later, we just need to loop over each node in this list and fetch # qualities from there. - node_info_list_0 = [nozzle_name, buildplate_name, root_material_id] + node_info_list_0 = [nozzle_name, buildplate_name, root_material_id] # type: List[Optional[str]] nodes_to_check = [] # This function tries to recursively find the deepest (the most specific) branch and add those nodes to # the search list in the order described above. So, by iterating over that search node list, we first look # in the more specific branches and then the less specific (generic) ones. - def addNodesToCheck(node, nodes_to_check_list, node_info_list, node_info_idx): + def addNodesToCheck(node: Optional[QualityNode], nodes_to_check_list: List[QualityNode], node_info_list, node_info_idx: int) -> None: + if node is None: + return + if node_info_idx < len(node_info_list): node_name = node_info_list[node_info_idx] if node_name is not None: @@ -289,31 +311,44 @@ class QualityManager(QObject): addNodesToCheck(machine_node, nodes_to_check, node_info_list_0, 0) - nodes_to_check += [machine_node, default_machine_node] - for node in nodes_to_check: + # The last fall back will be the global qualities (either from the machine-specific node or the generic + # node), but we only use one. For details see the overview comments above. + + if machine_node is not None and machine_node.quality_type_map: + nodes_to_check += [machine_node] + elif default_machine_node is not None: + nodes_to_check += [default_machine_node] + + for node_idx, node in enumerate(nodes_to_check): if node and node.quality_type_map: - if has_variant_materials: + if has_extruder_specific_qualities: # Only include variant qualities; skip non global qualities quality_node = list(node.quality_type_map.values())[0] - is_global_quality = parseBool(quality_node.metadata.get("global_quality", False)) + is_global_quality = parseBool(quality_node.getMetaDataEntry("global_quality", False)) if is_global_quality: continue for quality_type, quality_node in node.quality_type_map.items(): if quality_type not in quality_group_dict: - quality_group = QualityGroup(quality_node.metadata["name"], quality_type) + quality_group = QualityGroup(quality_node.getMetaDataEntry("name", ""), quality_type) quality_group_dict[quality_type] = quality_group quality_group = quality_group_dict[quality_type] if position not in quality_group.nodes_for_extruders: quality_group.nodes_for_extruders[position] = quality_node + # If the machine has its own specific qualities, for extruders, it should skip the global qualities + # and use the material/variant specific qualities. + if has_extruder_specific_qualities: + if node_idx == len(nodes_to_check) - 1: + break + # Update availabilities for each quality group self._updateQualityGroupsAvailability(machine, quality_group_dict.values()) return quality_group_dict - def getQualityGroupsForMachineDefinition(self, machine: "GlobalStack") -> dict: + def getQualityGroupsForMachineDefinition(self, machine: "GlobalStack") -> Dict[str, QualityGroup]: machine_definition_id = getMachineDefinitionIDForQualitySearch(machine.definition) # To find the quality container for the GlobalStack, check in the following fall-back manner: @@ -329,7 +364,7 @@ class QualityManager(QObject): for node in nodes_to_check: if node and node.quality_type_map: for quality_type, quality_node in node.quality_type_map.items(): - quality_group = QualityGroup(quality_node.metadata["name"], quality_type) + quality_group = QualityGroup(quality_node.getMetaDataEntry("name", ""), quality_type) quality_group.node_for_global = quality_node quality_group_dict[quality_type] = quality_group break @@ -351,10 +386,21 @@ class QualityManager(QObject): # Remove the given quality changes group. # @pyqtSlot(QObject) - def removeQualityChangesGroup(self, quality_changes_group: "QualityChangesGroup"): + def removeQualityChangesGroup(self, quality_changes_group: "QualityChangesGroup") -> None: Logger.log("i", "Removing quality changes group [%s]", quality_changes_group.name) + removed_quality_changes_ids = set() for node in quality_changes_group.getAllNodes(): - self._container_registry.removeContainer(node.getMetaDataEntry("id")) + container_id = node.getMetaDataEntry("id") + self._container_registry.removeContainer(container_id) + removed_quality_changes_ids.add(container_id) + + # Reset all machines that have activated this quality changes to empty. + for global_stack in self._container_registry.findContainerStacks(type = "machine"): + if global_stack.qualityChanges.getId() in removed_quality_changes_ids: + global_stack.qualityChanges = self._empty_quality_changes_container + for extruder_stack in self._container_registry.findContainerStacks(type = "extruder_train"): + if extruder_stack.qualityChanges.getId() in removed_quality_changes_ids: + extruder_stack.qualityChanges = self._empty_quality_changes_container # # Rename a set of quality changes containers. Returns the new name. @@ -383,7 +429,7 @@ class QualityManager(QObject): # Duplicates the given quality. # @pyqtSlot(str, "QVariantMap") - def duplicateQualityChanges(self, quality_changes_name, quality_model_item): + def duplicateQualityChanges(self, quality_changes_name: str, quality_model_item) -> None: global_stack = self._application.getGlobalContainerStack() if not global_stack: Logger.log("i", "No active global stack, cannot duplicate quality changes.") @@ -411,7 +457,7 @@ class QualityManager(QObject): # the user containers in each stack. These then replace the quality_changes containers in the # stack and clear the user settings. @pyqtSlot(str) - def createQualityChanges(self, base_name): + def createQualityChanges(self, base_name: str) -> None: machine_manager = Application.getInstance().getMachineManager() global_stack = machine_manager.activeMachine diff --git a/cura/Machines/QualityNode.py b/cura/Machines/QualityNode.py index f384ee7825..991388a4bd 100644 --- a/cura/Machines/QualityNode.py +++ b/cura/Machines/QualityNode.py @@ -1,7 +1,7 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import Optional, Dict, cast +from typing import Optional, Dict, cast, Any from .ContainerNode import ContainerNode from .QualityChangesGroup import QualityChangesGroup @@ -12,18 +12,21 @@ from .QualityChangesGroup import QualityChangesGroup # class QualityNode(ContainerNode): - def __init__(self, metadata: Optional[dict] = None) -> None: + def __init__(self, metadata: Optional[Dict[str, Any]] = None) -> None: super().__init__(metadata = metadata) self.quality_type_map = {} # type: Dict[str, QualityNode] # quality_type -> QualityNode for InstanceContainer - def addQualityMetadata(self, quality_type: str, metadata: dict): + def getChildNode(self, child_key: str) -> Optional["QualityNode"]: + return self.children_map.get(child_key) + + def addQualityMetadata(self, quality_type: str, metadata: Dict[str, Any]): if quality_type not in self.quality_type_map: self.quality_type_map[quality_type] = QualityNode(metadata) def getQualityNode(self, quality_type: str) -> Optional["QualityNode"]: return self.quality_type_map.get(quality_type) - def addQualityChangesMetadata(self, quality_type: str, metadata: dict): + def addQualityChangesMetadata(self, quality_type: str, metadata: Dict[str, Any]): if quality_type not in self.quality_type_map: self.quality_type_map[quality_type] = QualityNode() quality_type_node = self.quality_type_map[quality_type] diff --git a/cura/Machines/VariantManager.py b/cura/Machines/VariantManager.py index 969fed670e..9c8cff9efb 100644 --- a/cura/Machines/VariantManager.py +++ b/cura/Machines/VariantManager.py @@ -2,7 +2,7 @@ # Cura is released under the terms of the LGPLv3 or higher. from collections import OrderedDict -from typing import Optional, TYPE_CHECKING +from typing import Optional, TYPE_CHECKING, Dict from UM.ConfigurationErrorMessage import ConfigurationErrorMessage from UM.Logger import Logger @@ -36,11 +36,11 @@ if TYPE_CHECKING: # class VariantManager: - def __init__(self, container_registry): - self._container_registry = container_registry # type: ContainerRegistry + def __init__(self, container_registry: ContainerRegistry) -> None: + self._container_registry = container_registry - self._machine_to_variant_dict_map = dict() # -> - self._machine_to_buildplate_dict_map = dict() + self._machine_to_variant_dict_map = dict() # type: Dict[str, Dict["VariantType", Dict[str, ContainerNode]]] + self._machine_to_buildplate_dict_map = dict() # type: Dict[str, Dict[str, ContainerNode]] self._exclude_variant_id_list = ["empty_variant"] @@ -48,7 +48,7 @@ class VariantManager: # Initializes the VariantManager including: # - initializing the variant lookup table based on the metadata in ContainerRegistry. # - def initialize(self): + def initialize(self) -> None: self._machine_to_variant_dict_map = OrderedDict() self._machine_to_buildplate_dict_map = OrderedDict() @@ -106,10 +106,10 @@ class VariantManager: variant_node = variant_dict[variant_name] break return variant_node + return self._machine_to_variant_dict_map[machine_definition_id].get(variant_type, {}).get(variant_name) - def getVariantNodes(self, machine: "GlobalStack", - variant_type: Optional["VariantType"] = None) -> dict: + def getVariantNodes(self, machine: "GlobalStack", variant_type: "VariantType") -> Dict[str, ContainerNode]: machine_definition_id = machine.definition.getId() return self._machine_to_variant_dict_map.get(machine_definition_id, {}).get(variant_type, {}) diff --git a/cura/PrintInformation.py b/cura/PrintInformation.py index 21e2040dc1..8527da1b8a 100644 --- a/cura/PrintInformation.py +++ b/cura/PrintInformation.py @@ -300,7 +300,7 @@ class PrintInformation(QObject): def _updateJobName(self): if self._base_name == "": - self._job_name = "unnamed" + self._job_name = "Untitled" self._is_user_specified_job_name = False self.jobNameChanged.emit() return diff --git a/cura/PrintJobPreviewImageProvider.py b/cura/PrintJobPreviewImageProvider.py new file mode 100644 index 0000000000..a8df5aa273 --- /dev/null +++ b/cura/PrintJobPreviewImageProvider.py @@ -0,0 +1,27 @@ +from PyQt5.QtGui import QImage +from PyQt5.QtQuick import QQuickImageProvider +from PyQt5.QtCore import QSize + +from UM.Application import Application + + +class PrintJobPreviewImageProvider(QQuickImageProvider): + def __init__(self): + super().__init__(QQuickImageProvider.Image) + + ## Request a new image. + def requestImage(self, id: str, size: QSize) -> QImage: + # The id will have an uuid and an increment separated by a slash. As we don't care about the value of the + # increment, we need to strip that first. + uuid = id[id.find("/") + 1:] + for output_device in Application.getInstance().getOutputDeviceManager().getOutputDevices(): + if not hasattr(output_device, "printJobs"): + continue + + for print_job in output_device.printJobs: + if print_job.key == uuid: + if print_job.getPreviewImage(): + return print_job.getPreviewImage(), QSize(15, 15) + else: + return QImage(), QSize(15, 15) + return QImage(), QSize(15,15) \ No newline at end of file diff --git a/cura/PrinterOutput/ConfigurationModel.py b/cura/PrinterOutput/ConfigurationModel.py index c03d968b9e..89e609c913 100644 --- a/cura/PrinterOutput/ConfigurationModel.py +++ b/cura/PrinterOutput/ConfigurationModel.py @@ -13,36 +13,42 @@ class ConfigurationModel(QObject): configurationChanged = pyqtSignal() - def __init__(self): + def __init__(self) -> None: super().__init__() - self._printer_type = None + self._printer_type = "" self._extruder_configurations = [] # type: List[ExtruderConfigurationModel] - self._buildplate_configuration = None + self._buildplate_configuration = "" def setPrinterType(self, printer_type): self._printer_type = printer_type @pyqtProperty(str, fset = setPrinterType, notify = configurationChanged) - def printerType(self): + def printerType(self) -> str: return self._printer_type - def setExtruderConfigurations(self, extruder_configurations): - self._extruder_configurations = extruder_configurations + def setExtruderConfigurations(self, extruder_configurations: List["ExtruderConfigurationModel"]): + if self._extruder_configurations != extruder_configurations: + self._extruder_configurations = extruder_configurations + + for extruder_configuration in self._extruder_configurations: + extruder_configuration.extruderConfigurationChanged.connect(self.configurationChanged) + + self.configurationChanged.emit() @pyqtProperty("QVariantList", fset = setExtruderConfigurations, notify = configurationChanged) def extruderConfigurations(self): return self._extruder_configurations - def setBuildplateConfiguration(self, buildplate_configuration): + def setBuildplateConfiguration(self, buildplate_configuration: str) -> None: self._buildplate_configuration = buildplate_configuration @pyqtProperty(str, fset = setBuildplateConfiguration, notify = configurationChanged) - def buildplateConfiguration(self): + def buildplateConfiguration(self) -> str: return self._buildplate_configuration ## This method is intended to indicate whether the configuration is valid or not. # The method checks if the mandatory fields are or not set - def isValid(self): + def isValid(self) -> bool: if not self._extruder_configurations: return False for configuration in self._extruder_configurations: diff --git a/cura/PrinterOutput/ExtruderConfigurationModel.py b/cura/PrinterOutput/ExtruderConfigurationModel.py index bc7f1a7c07..da0ad6b0b2 100644 --- a/cura/PrinterOutput/ExtruderConfigurationModel.py +++ b/cura/PrinterOutput/ExtruderConfigurationModel.py @@ -1,56 +1,67 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +from typing import Optional from PyQt5.QtCore import pyqtProperty, QObject, pyqtSignal +from cura.PrinterOutput.MaterialOutputModel import MaterialOutputModel + class ExtruderConfigurationModel(QObject): extruderConfigurationChanged = pyqtSignal() - def __init__(self): + def __init__(self, position: int = -1) -> None: super().__init__() - self._position = -1 - self._material = None - self._hotend_id = None + self._position = position # type: int + self._material = None # type: Optional[MaterialOutputModel] + self._hotend_id = None # type: Optional[str] - def setPosition(self, position): + def setPosition(self, position: int) -> None: self._position = position @pyqtProperty(int, fset = setPosition, notify = extruderConfigurationChanged) - def position(self): + def position(self) -> int: return self._position - def setMaterial(self, material): - self._material = material + def setMaterial(self, material: Optional[MaterialOutputModel]) -> None: + if self._hotend_id != material: + self._material = material + self.extruderConfigurationChanged.emit() @pyqtProperty(QObject, fset = setMaterial, notify = extruderConfigurationChanged) - def material(self): + def activeMaterial(self) -> Optional[MaterialOutputModel]: return self._material - def setHotendID(self, hotend_id): - self._hotend_id = hotend_id + @pyqtProperty(QObject, fset=setMaterial, notify=extruderConfigurationChanged) + def material(self) -> Optional[MaterialOutputModel]: + return self._material + + def setHotendID(self, hotend_id: Optional[str]) -> None: + if self._hotend_id != hotend_id: + self._hotend_id = hotend_id + self.extruderConfigurationChanged.emit() @pyqtProperty(str, fset = setHotendID, notify = extruderConfigurationChanged) - def hotendID(self): + def hotendID(self) -> Optional[str]: return self._hotend_id ## This method is intended to indicate whether the configuration is valid or not. # The method checks if the mandatory fields are or not set # At this moment is always valid since we allow to have empty material and variants. - def isValid(self): + def isValid(self) -> bool: return True - def __str__(self): + def __str__(self) -> str: message_chunks = [] message_chunks.append("Position: " + str(self._position)) message_chunks.append("-") - message_chunks.append("Material: " + self.material.type if self.material else "empty") + message_chunks.append("Material: " + self.activeMaterial.type if self.activeMaterial else "empty") message_chunks.append("-") message_chunks.append("HotendID: " + self.hotendID if self.hotendID else "empty") return " ".join(message_chunks) - def __eq__(self, other): + def __eq__(self, other) -> bool: return hash(self) == hash(other) # Calculating a hash function using the position of the extruder, the material GUID and the hotend id to check if is diff --git a/cura/PrinterOutput/ExtruderOutputModel.py b/cura/PrinterOutput/ExtruderOutputModel.py index 0726662c6c..30d53bbd85 100644 --- a/cura/PrinterOutput/ExtruderOutputModel.py +++ b/cura/PrinterOutput/ExtruderOutputModel.py @@ -12,64 +12,61 @@ if TYPE_CHECKING: class ExtruderOutputModel(QObject): - hotendIDChanged = pyqtSignal() targetHotendTemperatureChanged = pyqtSignal() hotendTemperatureChanged = pyqtSignal() - activeMaterialChanged = pyqtSignal() + extruderConfigurationChanged = pyqtSignal() isPreheatingChanged = pyqtSignal() - def __init__(self, printer: "PrinterOutputModel", position, parent=None) -> None: + def __init__(self, printer: "PrinterOutputModel", position: int, parent=None) -> None: super().__init__(parent) - self._printer = printer + self._printer = printer # type: PrinterOutputModel self._position = position - self._target_hotend_temperature = 0 # type: float - self._hotend_temperature = 0 # type: float - self._hotend_id = "" - self._active_material = None # type: Optional[MaterialOutputModel] - self._extruder_configuration = ExtruderConfigurationModel() - self._extruder_configuration.position = self._position + self._target_hotend_temperature = 0.0 # type: float + self._hotend_temperature = 0.0 # type: float self._is_preheating = False - def getPrinter(self): + # The extruder output model wraps the configuration model. This way we can use the same config model for jobs + # and extruders alike. + self._extruder_configuration = ExtruderConfigurationModel() + self._extruder_configuration.position = self._position + self._extruder_configuration.extruderConfigurationChanged.connect(self.extruderConfigurationChanged) + + def getPrinter(self) -> "PrinterOutputModel": return self._printer - def getPosition(self): + def getPosition(self) -> int: return self._position # Does the printer support pre-heating the bed at all @pyqtProperty(bool, constant=True) - def canPreHeatHotends(self): + def canPreHeatHotends(self) -> bool: if self._printer: return self._printer.canPreHeatHotends return False - @pyqtProperty(QObject, notify = activeMaterialChanged) + @pyqtProperty(QObject, notify = extruderConfigurationChanged) def activeMaterial(self) -> Optional["MaterialOutputModel"]: - return self._active_material + return self._extruder_configuration.activeMaterial - def updateActiveMaterial(self, material: Optional["MaterialOutputModel"]): - if self._active_material != material: - self._active_material = material - self._extruder_configuration.material = self._active_material - self.activeMaterialChanged.emit() - self.extruderConfigurationChanged.emit() + def updateActiveMaterial(self, material: Optional["MaterialOutputModel"]) -> None: + self._extruder_configuration.setMaterial(material) ## Update the hotend temperature. This only changes it locally. - def updateHotendTemperature(self, temperature: float): + def updateHotendTemperature(self, temperature: float) -> None: if self._hotend_temperature != temperature: self._hotend_temperature = temperature self.hotendTemperatureChanged.emit() - def updateTargetHotendTemperature(self, temperature: float): + def updateTargetHotendTemperature(self, temperature: float) -> None: if self._target_hotend_temperature != temperature: self._target_hotend_temperature = temperature self.targetHotendTemperatureChanged.emit() ## Set the target hotend temperature. This ensures that it's actually sent to the remote. @pyqtSlot(float) - def setTargetHotendTemperature(self, temperature: float): + def setTargetHotendTemperature(self, temperature: float) -> None: self._printer.getController().setTargetHotendTemperature(self._printer, self, temperature) self.updateTargetHotendTemperature(temperature) @@ -81,30 +78,26 @@ class ExtruderOutputModel(QObject): def hotendTemperature(self) -> float: return self._hotend_temperature - @pyqtProperty(str, notify = hotendIDChanged) + @pyqtProperty(str, notify = extruderConfigurationChanged) def hotendID(self) -> str: - return self._hotend_id + return self._extruder_configuration.hotendID - def updateHotendID(self, id: str): - if self._hotend_id != id: - self._hotend_id = id - self._extruder_configuration.hotendID = self._hotend_id - self.hotendIDChanged.emit() - self.extruderConfigurationChanged.emit() + def updateHotendID(self, hotend_id: str) -> None: + self._extruder_configuration.setHotendID(hotend_id) @pyqtProperty(QObject, notify = extruderConfigurationChanged) - def extruderConfiguration(self): + def extruderConfiguration(self) -> Optional[ExtruderConfigurationModel]: if self._extruder_configuration.isValid(): return self._extruder_configuration return None - def updateIsPreheating(self, pre_heating): + def updateIsPreheating(self, pre_heating: bool) -> None: if self._is_preheating != pre_heating: self._is_preheating = pre_heating self.isPreheatingChanged.emit() @pyqtProperty(bool, notify=isPreheatingChanged) - def isPreheating(self): + def isPreheating(self) -> bool: return self._is_preheating ## Pre-heats the extruder before printer. @@ -113,9 +106,9 @@ class ExtruderOutputModel(QObject): # Celsius. # \param duration How long the bed should stay warm, in seconds. @pyqtSlot(float, float) - def preheatHotend(self, temperature, duration): + def preheatHotend(self, temperature: float, duration: float) -> None: self._printer._controller.preheatHotend(self, temperature, duration) @pyqtSlot() - def cancelPreheatHotend(self): - self._printer._controller.cancelPreheatHotend(self) \ No newline at end of file + def cancelPreheatHotend(self) -> None: + self._printer._controller.cancelPreheatHotend(self) diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index b7862251c9..d9c5707a03 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -53,21 +53,8 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): self._sending_gcode = False self._compressing_gcode = False self._gcode = [] # type: List[str] - self._connection_state_before_timeout = None # type: Optional[ConnectionState] - printer_type = self._properties.get(b"machine", b"").decode("utf-8") - printer_type_identifiers = { - "9066": "ultimaker3", - "9511": "ultimaker3_extended", - "9051": "ultimaker_s5" - } - self._printer_type = "Unknown" - for key, value in printer_type_identifiers.items(): - if printer_type.startswith(key): - self._printer_type = value - break - def requestWrite(self, nodes: List[SceneNode], file_name: Optional[str] = None, limit_mimetypes: bool = False, file_handler: Optional[FileHandler] = None, **kwargs: str) -> None: raise NotImplementedError("requestWrite needs to be implemented") @@ -188,40 +175,55 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): if reply in self._kept_alive_multiparts: del self._kept_alive_multiparts[reply] - def put(self, target: str, data: str, on_finished: Optional[Callable[[QNetworkReply], None]]) -> None: + def _validateManager(self) -> None: if self._manager is None: self._createNetworkManager() assert (self._manager is not None) + + def put(self, target: str, data: str, on_finished: Optional[Callable[[QNetworkReply], None]]) -> None: + self._validateManager() request = self._createEmptyRequest(target) self._last_request_time = time() - reply = self._manager.put(request, data.encode()) - self._registerOnFinishedCallback(reply, on_finished) + if self._manager is not None: + reply = self._manager.put(request, data.encode()) + self._registerOnFinishedCallback(reply, on_finished) + else: + Logger.log("e", "Could not find manager.") + + def delete(self, target: str, on_finished: Optional[Callable[[QNetworkReply], None]]) -> None: + self._validateManager() + request = self._createEmptyRequest(target) + self._last_request_time = time() + if self._manager is not None: + reply = self._manager.deleteResource(request) + self._registerOnFinishedCallback(reply, on_finished) + else: + Logger.log("e", "Could not find manager.") def get(self, target: str, on_finished: Optional[Callable[[QNetworkReply], None]]) -> None: - if self._manager is None: - self._createNetworkManager() - assert (self._manager is not None) + self._validateManager() request = self._createEmptyRequest(target) self._last_request_time = time() - reply = self._manager.get(request) - self._registerOnFinishedCallback(reply, on_finished) + if self._manager is not None: + reply = self._manager.get(request) + self._registerOnFinishedCallback(reply, on_finished) + else: + Logger.log("e", "Could not find manager.") def post(self, target: str, data: str, on_finished: Optional[Callable[[QNetworkReply], None]], on_progress: Callable = None) -> None: - if self._manager is None: - self._createNetworkManager() - assert (self._manager is not None) + self._validateManager() request = self._createEmptyRequest(target) self._last_request_time = time() - reply = self._manager.post(request, data) - if on_progress is not None: - reply.uploadProgress.connect(on_progress) - self._registerOnFinishedCallback(reply, on_finished) + if self._manager is not None: + reply = self._manager.post(request, data) + if on_progress is not None: + reply.uploadProgress.connect(on_progress) + self._registerOnFinishedCallback(reply, on_finished) + else: + Logger.log("e", "Could not find manager.") def postFormWithParts(self, target: str, parts: List[QHttpPart], on_finished: Optional[Callable[[QNetworkReply], None]], on_progress: Callable = None) -> QNetworkReply: - - if self._manager is None: - self._createNetworkManager() - assert (self._manager is not None) + self._validateManager() request = self._createEmptyRequest(target, content_type=None) multi_post_part = QHttpMultiPart(QHttpMultiPart.FormDataType) for part in parts: @@ -229,15 +231,18 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): self._last_request_time = time() - reply = self._manager.post(request, multi_post_part) + if self._manager is not None: + reply = self._manager.post(request, multi_post_part) - self._kept_alive_multiparts[reply] = multi_post_part + self._kept_alive_multiparts[reply] = multi_post_part - if on_progress is not None: - reply.uploadProgress.connect(on_progress) - self._registerOnFinishedCallback(reply, on_finished) + if on_progress is not None: + reply.uploadProgress.connect(on_progress) + self._registerOnFinishedCallback(reply, on_finished) - return reply + return reply + else: + Logger.log("e", "Could not find manager.") def postForm(self, target: str, header_data: str, body_data: bytes, on_finished: Optional[Callable[[QNetworkReply], None]], on_progress: Callable = None) -> None: post_part = QHttpPart() @@ -323,7 +328,7 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): @pyqtProperty(str, constant = True) def printerType(self) -> str: - return self._printer_type + return self._properties.get(b"printer_type", b"Unknown").decode("utf-8") ## IP adress of this printer @pyqtProperty(str, constant = True) diff --git a/cura/PrinterOutput/PrintJobOutputModel.py b/cura/PrinterOutput/PrintJobOutputModel.py index b77600f85c..7366b95f86 100644 --- a/cura/PrinterOutput/PrintJobOutputModel.py +++ b/cura/PrinterOutput/PrintJobOutputModel.py @@ -2,11 +2,15 @@ # Cura is released under the terms of the LGPLv3 or higher. from PyQt5.QtCore import pyqtSignal, pyqtProperty, QObject, pyqtSlot -from typing import Optional, TYPE_CHECKING +from typing import Optional, TYPE_CHECKING, List + +from PyQt5.QtCore import QUrl +from PyQt5.QtGui import QImage if TYPE_CHECKING: from cura.PrinterOutput.PrinterOutputController import PrinterOutputController from cura.PrinterOutput.PrinterOutputModel import PrinterOutputModel + from cura.PrinterOutput.ConfigurationModel import ConfigurationModel class PrintJobOutputModel(QObject): @@ -17,6 +21,9 @@ class PrintJobOutputModel(QObject): keyChanged = pyqtSignal() assignedPrinterChanged = pyqtSignal() ownerChanged = pyqtSignal() + configurationChanged = pyqtSignal() + previewImageChanged = pyqtSignal() + compatibleMachineFamiliesChanged = pyqtSignal() def __init__(self, output_controller: "PrinterOutputController", key: str = "", name: str = "", parent=None) -> None: super().__init__(parent) @@ -29,6 +36,48 @@ class PrintJobOutputModel(QObject): self._assigned_printer = None # type: Optional[PrinterOutputModel] self._owner = "" # Who started/owns the print job? + self._configuration = None # type: Optional[ConfigurationModel] + self._compatible_machine_families = [] # type: List[str] + self._preview_image_id = 0 + + self._preview_image = None # type: Optional[QImage] + + @pyqtProperty("QStringList", notify=compatibleMachineFamiliesChanged) + def compatibleMachineFamilies(self): + # Hack; Some versions of cluster will return a family more than once... + return set(self._compatible_machine_families) + + def setCompatibleMachineFamilies(self, compatible_machine_families: List[str]) -> None: + if self._compatible_machine_families != compatible_machine_families: + self._compatible_machine_families = compatible_machine_families + self.compatibleMachineFamiliesChanged.emit() + + @pyqtProperty(QUrl, notify=previewImageChanged) + def previewImageUrl(self): + self._preview_image_id += 1 + # There is an image provider that is called "camera". In order to ensure that the image qml object, that + # requires a QUrl to function, updates correctly we add an increasing number. This causes to see the QUrl + # as new (instead of relying on cached version and thus forces an update. + temp = "image://print_job_preview/" + str(self._preview_image_id) + "/" + self._key + return QUrl(temp, QUrl.TolerantMode) + + def getPreviewImage(self) -> Optional[QImage]: + return self._preview_image + + def updatePreviewImage(self, preview_image: Optional[QImage]) -> None: + if self._preview_image != preview_image: + self._preview_image = preview_image + self.previewImageChanged.emit() + + @pyqtProperty(QObject, notify=configurationChanged) + def configuration(self) -> Optional["ConfigurationModel"]: + return self._configuration + + def updateConfiguration(self, configuration: Optional["ConfigurationModel"]) -> None: + if self._configuration != configuration: + self._configuration = configuration + self.configurationChanged.emit() + @pyqtProperty(str, notify=ownerChanged) def owner(self): return self._owner diff --git a/cura/PrinterOutput/PrinterOutputModel.py b/cura/PrinterOutput/PrinterOutputModel.py index 5d63f6f1ce..859165aef3 100644 --- a/cura/PrinterOutput/PrinterOutputModel.py +++ b/cura/PrinterOutput/PrinterOutputModel.py @@ -37,7 +37,7 @@ class PrinterOutputModel(QObject): self._controller = output_controller self._controller.canUpdateFirmwareChanged.connect(self._onControllerCanUpdateFirmwareChanged) self._extruders = [ExtruderOutputModel(printer = self, position = i) for i in range(number_of_extruders)] - self._printer_configuration = ConfigurationModel() # Indicates the current configuration setup in this printer + self._printer_configuration = ConfigurationModel() # Indicates the current configuration setup in this printer self._head_position = Vector(0, 0, 0) self._active_print_job = None # type: Optional[PrintJobOutputModel] self._firmware_version = firmware_version @@ -45,9 +45,9 @@ class PrinterOutputModel(QObject): self._is_preheating = False self._printer_type = "" self._buildplate_name = None - # Update the printer configuration every time any of the extruders changes its configuration - for extruder in self._extruders: - extruder.extruderConfigurationChanged.connect(self._updateExtruderConfiguration) + + self._printer_configuration.extruderConfigurations = [extruder.extruderConfiguration for extruder in + self._extruders] self._camera = None @@ -295,8 +295,4 @@ class PrinterOutputModel(QObject): def printerConfiguration(self): if self._printer_configuration.isValid(): return self._printer_configuration - return None - - def _updateExtruderConfiguration(self): - self._printer_configuration.extruderConfigurations = [extruder.extruderConfiguration for extruder in self._extruders] - self.configurationChanged.emit() + return None \ No newline at end of file diff --git a/cura/Scene/ConvexHullDecorator.py b/cura/Scene/ConvexHullDecorator.py index 367144abfc..31e21df6bf 100644 --- a/cura/Scene/ConvexHullDecorator.py +++ b/cura/Scene/ConvexHullDecorator.py @@ -13,23 +13,31 @@ from cura.Scene import ConvexHullNode import numpy +from typing import TYPE_CHECKING, Any, Optional + +if TYPE_CHECKING: + from UM.Scene.SceneNode import SceneNode + from cura.Settings.GlobalStack import GlobalStack + + ## The convex hull decorator is a scene node decorator that adds the convex hull functionality to a scene node. # If a scene node has a convex hull decorator, it will have a shadow in which other objects can not be printed. class ConvexHullDecorator(SceneNodeDecorator): - def __init__(self): + def __init__(self) -> None: super().__init__() - self._convex_hull_node = None + self._convex_hull_node = None # type: Optional["SceneNode"] self._init2DConvexHullCache() - self._global_stack = None + self._global_stack = None # type: Optional[GlobalStack] # Make sure the timer is created on the main thread - self._recompute_convex_hull_timer = None - Application.getInstance().callLater(self.createRecomputeConvexHullTimer) + self._recompute_convex_hull_timer = None # type: Optional[QTimer] + + if Application.getInstance() is not None: + Application.getInstance().callLater(self.createRecomputeConvexHullTimer) self._raft_thickness = 0.0 - # For raft thickness, DRY self._build_volume = Application.getInstance().getBuildVolume() self._build_volume.raftThicknessChanged.connect(self._onChanged) @@ -39,13 +47,13 @@ class ConvexHullDecorator(SceneNodeDecorator): self._onGlobalStackChanged() - def createRecomputeConvexHullTimer(self): + def createRecomputeConvexHullTimer(self) -> None: self._recompute_convex_hull_timer = QTimer() self._recompute_convex_hull_timer.setInterval(200) self._recompute_convex_hull_timer.setSingleShot(True) self._recompute_convex_hull_timer.timeout.connect(self.recomputeConvexHull) - def setNode(self, node): + def setNode(self, node: "SceneNode") -> None: previous_node = self._node # Disconnect from previous node signals if previous_node is not None and node is not previous_node: @@ -63,14 +71,14 @@ class ConvexHullDecorator(SceneNodeDecorator): def __deepcopy__(self, memo): return ConvexHullDecorator() - ## Get the unmodified 2D projected convex hull of the node - def getConvexHull(self): + ## Get the unmodified 2D projected convex hull of the node (if any) + def getConvexHull(self) -> Optional[Polygon]: if self._node is None: return None hull = self._compute2DConvexHull() - if self._global_stack and self._node: + if self._global_stack and self._node and hull is not None: # Parent can be None if node is just loaded. if self._global_stack.getProperty("print_sequence", "value") == "one_at_a_time" and (self._node.getParent() is None or not self._node.getParent().callDecoration("isGroup")): hull = hull.getMinkowskiHull(Polygon(numpy.array(self._global_stack.getProperty("machine_head_polygon", "value"), numpy.float32))) @@ -78,7 +86,7 @@ class ConvexHullDecorator(SceneNodeDecorator): return hull ## Get the convex hull of the node with the full head size - def getConvexHullHeadFull(self): + def getConvexHullHeadFull(self) -> Optional[Polygon]: if self._node is None: return None @@ -87,7 +95,7 @@ class ConvexHullDecorator(SceneNodeDecorator): ## Get convex hull of the object + head size # In case of printing all at once this is the same as the convex hull. # For one at the time this is area with intersection of mirrored head - def getConvexHullHead(self): + def getConvexHullHead(self) -> Optional[Polygon]: if self._node is None: return None @@ -101,7 +109,7 @@ class ConvexHullDecorator(SceneNodeDecorator): ## Get convex hull of the node # In case of printing all at once this is the same as the convex hull. # For one at the time this is the area without the head. - def getConvexHullBoundary(self): + def getConvexHullBoundary(self) -> Optional[Polygon]: if self._node is None: return None @@ -111,13 +119,14 @@ class ConvexHullDecorator(SceneNodeDecorator): return self._compute2DConvexHull() return None - def recomputeConvexHullDelayed(self): + ## The same as recomputeConvexHull, but using a timer if it was set. + def recomputeConvexHullDelayed(self) -> None: if self._recompute_convex_hull_timer is not None: self._recompute_convex_hull_timer.start() else: self.recomputeConvexHull() - def recomputeConvexHull(self): + def recomputeConvexHull(self) -> None: controller = Application.getInstance().getController() root = controller.getScene().getRoot() if self._node is None or controller.isToolOperationActive() or not self.__isDescendant(root, self._node): @@ -132,17 +141,17 @@ class ConvexHullDecorator(SceneNodeDecorator): hull_node = ConvexHullNode.ConvexHullNode(self._node, convex_hull, self._raft_thickness, root) self._convex_hull_node = hull_node - def _onSettingValueChanged(self, key, property_name): - if property_name != "value": #Not the value that was changed. + def _onSettingValueChanged(self, key: str, property_name: str) -> None: + if property_name != "value": # Not the value that was changed. return if key in self._affected_settings: self._onChanged() if key in self._influencing_settings: - self._init2DConvexHullCache() #Invalidate the cache. + self._init2DConvexHullCache() # Invalidate the cache. self._onChanged() - def _init2DConvexHullCache(self): + def _init2DConvexHullCache(self) -> None: # Cache for the group code path in _compute2DConvexHull() self._2d_convex_hull_group_child_polygon = None self._2d_convex_hull_group_result = None @@ -152,7 +161,7 @@ class ConvexHullDecorator(SceneNodeDecorator): self._2d_convex_hull_mesh_world_transform = None self._2d_convex_hull_mesh_result = None - def _compute2DConvexHull(self): + def _compute2DConvexHull(self) -> Optional[Polygon]: if self._node.callDecoration("isGroup"): points = numpy.zeros((0, 2), dtype=numpy.int32) for child in self._node.getChildren(): @@ -179,8 +188,6 @@ class ConvexHullDecorator(SceneNodeDecorator): else: offset_hull = None - mesh = None - world_transform = None if self._node.getMeshData(): mesh = self._node.getMeshData() world_transform = self._node.getWorldTransformation() @@ -228,24 +235,33 @@ class ConvexHullDecorator(SceneNodeDecorator): return offset_hull - def _getHeadAndFans(self): - return Polygon(numpy.array(self._global_stack.getHeadAndFansCoordinates(), numpy.float32)) + def _getHeadAndFans(self) -> Polygon: + if self._global_stack: + return Polygon(numpy.array(self._global_stack.getHeadAndFansCoordinates(), numpy.float32)) + return Polygon() - def _compute2DConvexHeadFull(self): - return self._compute2DConvexHull().getMinkowskiHull(self._getHeadAndFans()) + def _compute2DConvexHeadFull(self) -> Optional[Polygon]: + convex_hull = self._compute2DConvexHeadFull() + if convex_hull: + return convex_hull.getMinkowskiHull(self._getHeadAndFans()) + return None - def _compute2DConvexHeadMin(self): - headAndFans = self._getHeadAndFans() - mirrored = headAndFans.mirror([0, 0], [0, 1]).mirror([0, 0], [1, 0]) # Mirror horizontally & vertically. + def _compute2DConvexHeadMin(self) -> Optional[Polygon]: + head_and_fans = self._getHeadAndFans() + mirrored = head_and_fans.mirror([0, 0], [0, 1]).mirror([0, 0], [1, 0]) # Mirror horizontally & vertically. head_and_fans = self._getHeadAndFans().intersectionConvexHulls(mirrored) # Min head hull is used for the push free - min_head_hull = self._compute2DConvexHull().getMinkowskiHull(head_and_fans) - return min_head_hull + convex_hull = self._compute2DConvexHeadFull() + if convex_hull: + return convex_hull.getMinkowskiHull(head_and_fans) + return None ## Compensate given 2D polygon with adhesion margin # \return 2D polygon with added margin - def _add2DAdhesionMargin(self, poly): + def _add2DAdhesionMargin(self, poly: Polygon) -> Polygon: + if not self._global_stack: + return Polygon() # Compensate for raft/skirt/brim # Add extra margin depending on adhesion type adhesion_type = self._global_stack.getProperty("adhesion_type", "value") @@ -263,7 +279,7 @@ class ConvexHullDecorator(SceneNodeDecorator): else: raise Exception("Unknown bed adhesion type. Did you forget to update the convex hull calculations for your new bed adhesion type?") - # adjust head_and_fans with extra margin + # Adjust head_and_fans with extra margin if extra_margin > 0: extra_margin_polygon = Polygon.approximatedCircle(extra_margin) poly = poly.getMinkowskiHull(extra_margin_polygon) @@ -274,7 +290,7 @@ class ConvexHullDecorator(SceneNodeDecorator): # \param convex_hull Polygon of the original convex hull. # \return New Polygon instance that is offset with everything that # influences the collision area. - def _offsetHull(self, convex_hull): + def _offsetHull(self, convex_hull: Polygon) -> Polygon: horizontal_expansion = max( self._getSettingProperty("xy_offset", "value"), self._getSettingProperty("xy_offset_layer_0", "value") @@ -295,16 +311,16 @@ class ConvexHullDecorator(SceneNodeDecorator): else: return convex_hull - def _onChanged(self, *args): + def _onChanged(self, *args) -> None: self._raft_thickness = self._build_volume.getRaftThickness() if not args or args[0] == self._node: self.recomputeConvexHullDelayed() - def _onGlobalStackChanged(self): + def _onGlobalStackChanged(self) -> None: if self._global_stack: self._global_stack.propertyChanged.disconnect(self._onSettingValueChanged) self._global_stack.containersChanged.disconnect(self._onChanged) - extruders = ExtruderManager.getInstance().getMachineExtruders(self._global_stack.getId()) + extruders = ExtruderManager.getInstance().getActiveExtruderStacks() for extruder in extruders: extruder.propertyChanged.disconnect(self._onSettingValueChanged) @@ -314,14 +330,16 @@ class ConvexHullDecorator(SceneNodeDecorator): self._global_stack.propertyChanged.connect(self._onSettingValueChanged) self._global_stack.containersChanged.connect(self._onChanged) - extruders = ExtruderManager.getInstance().getMachineExtruders(self._global_stack.getId()) + extruders = ExtruderManager.getInstance().getActiveExtruderStacks() for extruder in extruders: extruder.propertyChanged.connect(self._onSettingValueChanged) self._onChanged() ## Private convenience function to get a setting from the correct extruder (as defined by limit_to_extruder property). - def _getSettingProperty(self, setting_key, prop = "value"): + def _getSettingProperty(self, setting_key: str, prop: str = "value") -> Any: + if not self._global_stack: + return None per_mesh_stack = self._node.callDecoration("getStack") if per_mesh_stack: return per_mesh_stack.getProperty(setting_key, prop) @@ -339,8 +357,8 @@ class ConvexHullDecorator(SceneNodeDecorator): # Limit_to_extruder is set. The global stack handles this then return self._global_stack.getProperty(setting_key, prop) - ## Returns true if node is a descendant or the same as the root node. - def __isDescendant(self, root, node): + ## Returns True if node is a descendant or the same as the root node. + def __isDescendant(self, root: "SceneNode", node: "SceneNode") -> bool: if node is None: return False if root is node: diff --git a/cura/Scene/GCodeListDecorator.py b/cura/Scene/GCodeListDecorator.py index 5738d0a7f2..572fea6ac4 100644 --- a/cura/Scene/GCodeListDecorator.py +++ b/cura/Scene/GCodeListDecorator.py @@ -1,13 +1,19 @@ from UM.Scene.SceneNodeDecorator import SceneNodeDecorator +from typing import List class GCodeListDecorator(SceneNodeDecorator): - def __init__(self): + def __init__(self) -> None: super().__init__() - self._gcode_list = [] + self._gcode_list = [] # type: List[str] - def getGCodeList(self): + def getGCodeList(self) -> List[str]: return self._gcode_list - def setGCodeList(self, list): + def setGCodeList(self, list: List[str]): self._gcode_list = list + + def __deepcopy__(self, memo) -> "GCodeListDecorator": + copied_decorator = GCodeListDecorator() + copied_decorator.setGCodeList(self.getGCodeList()) + return copied_decorator \ No newline at end of file diff --git a/cura/Scene/SliceableObjectDecorator.py b/cura/Scene/SliceableObjectDecorator.py index 1cb589d9c6..982a38d667 100644 --- a/cura/Scene/SliceableObjectDecorator.py +++ b/cura/Scene/SliceableObjectDecorator.py @@ -2,11 +2,11 @@ from UM.Scene.SceneNodeDecorator import SceneNodeDecorator class SliceableObjectDecorator(SceneNodeDecorator): - def __init__(self): + def __init__(self) -> None: super().__init__() - def isSliceable(self): + def isSliceable(self) -> bool: return True - def __deepcopy__(self, memo): + def __deepcopy__(self, memo) -> "SliceableObjectDecorator": return type(self)() diff --git a/cura/Scene/ZOffsetDecorator.py b/cura/Scene/ZOffsetDecorator.py index d3ee5c8454..b35b17a412 100644 --- a/cura/Scene/ZOffsetDecorator.py +++ b/cura/Scene/ZOffsetDecorator.py @@ -1,18 +1,19 @@ from UM.Scene.SceneNodeDecorator import SceneNodeDecorator + ## A decorator that stores the amount an object has been moved below the platform. class ZOffsetDecorator(SceneNodeDecorator): - def __init__(self): + def __init__(self) -> None: super().__init__() - self._z_offset = 0 + self._z_offset = 0. - def setZOffset(self, offset): + def setZOffset(self, offset: float) -> None: self._z_offset = offset - def getZOffset(self): + def getZOffset(self) -> float: return self._z_offset - def __deepcopy__(self, memo): + def __deepcopy__(self, memo) -> "ZOffsetDecorator": copied_decorator = ZOffsetDecorator() copied_decorator.setZOffset(self.getZOffset()) return copied_decorator diff --git a/cura/Settings/ContainerManager.py b/cura/Settings/ContainerManager.py index 2b8ff4a234..e1a1495dac 100644 --- a/cura/Settings/ContainerManager.py +++ b/cura/Settings/ContainerManager.py @@ -4,12 +4,12 @@ import os import urllib.parse import uuid -from typing import Any -from typing import Dict, Union, Optional +from typing import Dict, Union, Any, TYPE_CHECKING, List -from PyQt5.QtCore import QObject, QUrl, QVariant +from PyQt5.QtCore import QObject, QUrl from PyQt5.QtWidgets import QMessageBox + from UM.i18n import i18nCatalog from UM.FlameProfiler import pyqtSlot from UM.Logger import Logger @@ -21,6 +21,18 @@ from UM.Settings.ContainerStack import ContainerStack from UM.Settings.DefinitionContainer import DefinitionContainer from UM.Settings.InstanceContainer import InstanceContainer + +if TYPE_CHECKING: + from cura.CuraApplication import CuraApplication + from cura.Machines.ContainerNode import ContainerNode + from cura.Machines.MaterialNode import MaterialNode + from cura.Machines.QualityChangesGroup import QualityChangesGroup + from UM.PluginRegistry import PluginRegistry + from UM.Settings.ContainerRegistry import ContainerRegistry + from cura.Settings.MachineManager import MachineManager + from cura.Machines.MaterialManager import MaterialManager + from cura.Machines.QualityManager import QualityManager + catalog = i18nCatalog("cura") @@ -31,20 +43,20 @@ catalog = i18nCatalog("cura") # when a certain action happens. This can be done through this class. class ContainerManager(QObject): - def __init__(self, application): + def __init__(self, application: "CuraApplication") -> None: if ContainerManager.__instance is not None: raise RuntimeError("Try to create singleton '%s' more than once" % self.__class__.__name__) ContainerManager.__instance = self super().__init__(parent = application) - self._application = application - self._plugin_registry = self._application.getPluginRegistry() - self._container_registry = self._application.getContainerRegistry() - self._machine_manager = self._application.getMachineManager() - self._material_manager = self._application.getMaterialManager() - self._quality_manager = self._application.getQualityManager() - self._container_name_filters = {} # type: Dict[str, Dict[str, Any]] + self._application = application # type: CuraApplication + self._plugin_registry = self._application.getPluginRegistry() # type: PluginRegistry + self._container_registry = self._application.getContainerRegistry() # type: ContainerRegistry + self._machine_manager = self._application.getMachineManager() # type: MachineManager + self._material_manager = self._application.getMaterialManager() # type: MaterialManager + self._quality_manager = self._application.getQualityManager() # type: QualityManager + self._container_name_filters = {} # type: Dict[str, Dict[str, Any]] @pyqtSlot(str, str, result=str) def getContainerMetaDataEntry(self, container_id: str, entry_names: str) -> str: @@ -69,21 +81,23 @@ class ContainerManager(QObject): # by using "/" as a separator. For example, to change an entry "foo" in a # dictionary entry "bar", you can specify "bar/foo" as entry name. # - # \param container_id \type{str} The ID of the container to change. + # \param container_node \type{ContainerNode} # \param entry_name \type{str} The name of the metadata entry to change. # \param entry_value The new value of the entry. # - # \return True if successful, False if not. # TODO: This is ONLY used by MaterialView for material containers. Maybe refactor this. # Update: In order for QML to use objects and sub objects, those (sub) objects must all be QObject. Is that what we want? @pyqtSlot("QVariant", str, str) - def setContainerMetaDataEntry(self, container_node, entry_name, entry_value): - root_material_id = container_node.metadata["base_file"] + def setContainerMetaDataEntry(self, container_node: "ContainerNode", entry_name: str, entry_value: str) -> bool: + root_material_id = container_node.getMetaDataEntry("base_file", "") if self._container_registry.isReadOnly(root_material_id): Logger.log("w", "Cannot set metadata of read-only container %s.", root_material_id) return False material_group = self._material_manager.getMaterialGroup(root_material_id) + if material_group is None: + Logger.log("w", "Unable to find material group for: %s.", root_material_id) + return False entries = entry_name.split("/") entry_name = entries.pop() @@ -91,11 +105,11 @@ class ContainerManager(QObject): sub_item_changed = False if entries: root_name = entries.pop(0) - root = material_group.root_material_node.metadata.get(root_name) + root = material_group.root_material_node.getMetaDataEntry(root_name) item = root for _ in range(len(entries)): - item = item.get(entries.pop(0), { }) + item = item.get(entries.pop(0), {}) if item[entry_name] != entry_value: sub_item_changed = True @@ -109,9 +123,10 @@ class ContainerManager(QObject): container.setMetaDataEntry(entry_name, entry_value) if sub_item_changed: #If it was only a sub-item that has changed then the setMetaDataEntry won't correctly notice that something changed, and we must manually signal that the metadata changed. container.metaDataChanged.emit(container) + return True @pyqtSlot(str, result = str) - def makeUniqueName(self, original_name): + def makeUniqueName(self, original_name: str) -> str: return self._container_registry.uniqueName(original_name) ## Get a list of string that can be used as name filters for a Qt File Dialog @@ -125,7 +140,7 @@ class ContainerManager(QObject): # # \return A string list with name filters. @pyqtSlot(str, result = "QStringList") - def getContainerNameFilters(self, type_name): + def getContainerNameFilters(self, type_name: str) -> List[str]: if not self._container_name_filters: self._updateContainerNameFilters() @@ -257,7 +272,7 @@ class ContainerManager(QObject): # # \return \type{bool} True if successful, False if not. @pyqtSlot(result = bool) - def updateQualityChanges(self): + def updateQualityChanges(self) -> bool: global_stack = self._machine_manager.activeMachine if not global_stack: return False @@ -313,10 +328,10 @@ class ContainerManager(QObject): # \param material_id \type{str} the id of the material for which to get the linked materials. # \return \type{list} a list of names of materials with the same GUID @pyqtSlot("QVariant", bool, result = "QStringList") - def getLinkedMaterials(self, material_node, exclude_self = False): - guid = material_node.metadata["GUID"] + def getLinkedMaterials(self, material_node: "MaterialNode", exclude_self: bool = False): + guid = material_node.getMetaDataEntry("GUID", "") - self_root_material_id = material_node.metadata["base_file"] + self_root_material_id = material_node.getMetaDataEntry("base_file") material_group_list = self._material_manager.getMaterialGroupListByGUID(guid) linked_material_names = [] @@ -324,15 +339,19 @@ class ContainerManager(QObject): for material_group in material_group_list: if exclude_self and material_group.name == self_root_material_id: continue - linked_material_names.append(material_group.root_material_node.metadata["name"]) + linked_material_names.append(material_group.root_material_node.getMetaDataEntry("name", "")) return linked_material_names ## Unlink a material from all other materials by creating a new GUID # \param material_id \type{str} the id of the material to create a new GUID for. @pyqtSlot("QVariant") - def unlinkMaterial(self, material_node): + def unlinkMaterial(self, material_node: "MaterialNode") -> None: # Get the material group - material_group = self._material_manager.getMaterialGroup(material_node.metadata["base_file"]) + material_group = self._material_manager.getMaterialGroup(material_node.getMetaDataEntry("base_file", "")) + + if material_group is None: + Logger.log("w", "Unable to find material group for %s", material_node) + return # Generate a new GUID new_guid = str(uuid.uuid4()) @@ -344,7 +363,7 @@ class ContainerManager(QObject): if container is not None: container.setMetaDataEntry("GUID", new_guid) - def _performMerge(self, merge_into, merge, clear_settings = True): + def _performMerge(self, merge_into: InstanceContainer, merge: InstanceContainer, clear_settings: bool = True) -> None: if merge == merge_into: return @@ -400,7 +419,7 @@ class ContainerManager(QObject): ## Import single profile, file_url does not have to end with curaprofile @pyqtSlot(QUrl, result="QVariantMap") - def importProfile(self, file_url): + def importProfile(self, file_url: QUrl): if not file_url.isValid(): return path = file_url.toLocalFile() @@ -409,7 +428,7 @@ class ContainerManager(QObject): return self._container_registry.importProfile(path) @pyqtSlot(QObject, QUrl, str) - def exportQualityChangesGroup(self, quality_changes_group, file_url: QUrl, file_type: str): + def exportQualityChangesGroup(self, quality_changes_group: "QualityChangesGroup", file_url: QUrl, file_type: str) -> None: if not file_url.isValid(): return path = file_url.toLocalFile() diff --git a/cura/Settings/CuraContainerStack.py b/cura/Settings/CuraContainerStack.py index c8d1d9e370..0ec95e2e41 100755 --- a/cura/Settings/CuraContainerStack.py +++ b/cura/Settings/CuraContainerStack.py @@ -291,7 +291,7 @@ class CuraContainerStack(ContainerStack): # Helper to make sure we emit a PyQt signal on container changes. def _onContainersChanged(self, container: Any) -> None: - self.pyqtContainersChanged.emit() + Application.getInstance().callLater(self.pyqtContainersChanged.emit) # Helper that can be overridden to get the "machine" definition, that is, the definition that defines the machine # and its properties rather than, for example, the extruder. Defaults to simply returning the definition property. diff --git a/cura/Settings/CuraStackBuilder.py b/cura/Settings/CuraStackBuilder.py index 12fe732e3e..6374e6056c 100644 --- a/cura/Settings/CuraStackBuilder.py +++ b/cura/Settings/CuraStackBuilder.py @@ -15,6 +15,7 @@ from .ExtruderStack import ExtruderStack ## Contains helper functions to create new machines. class CuraStackBuilder: + ## Create a new instance of a machine. # # \param name The name of the new machine. @@ -26,7 +27,6 @@ class CuraStackBuilder: from cura.CuraApplication import CuraApplication application = CuraApplication.getInstance() variant_manager = application.getVariantManager() - material_manager = application.getMaterialManager() quality_manager = application.getQualityManager() registry = application.getContainerRegistry() @@ -46,16 +46,6 @@ class CuraStackBuilder: if not global_variant_container: global_variant_container = application.empty_variant_container - # get variant container for extruders - extruder_variant_container = application.empty_variant_container - extruder_variant_node = variant_manager.getDefaultVariantNode(machine_definition, VariantType.NOZZLE) - extruder_variant_name = None - if extruder_variant_node: - extruder_variant_container = extruder_variant_node.getContainer() - if not extruder_variant_container: - extruder_variant_container = application.empty_variant_container - extruder_variant_name = extruder_variant_container.getName() - generated_name = registry.createUniqueName("machine", "", name, machine_definition.getName()) # Make sure the new name does not collide with any definition or (quality) profile # createUniqueName() only looks at other stacks, but not at definitions or quality profiles @@ -74,34 +64,8 @@ class CuraStackBuilder: # Create ExtruderStacks extruder_dict = machine_definition.getMetaDataEntry("machine_extruder_trains") - - for position, extruder_definition_id in extruder_dict.items(): - # Sanity check: make sure that the positions in the extruder definitions are same as in the machine - # definition - extruder_definition = registry.findDefinitionContainers(id = extruder_definition_id)[0] - position_in_extruder_def = extruder_definition.getMetaDataEntry("position") - if position_in_extruder_def != position: - ConfigurationErrorMessage.getInstance().addFaultyContainers(extruder_definition_id) - return None #Don't return any container stack then, not the rest of the extruders either. - - # get material container for extruders - material_container = application.empty_material_container - material_node = material_manager.getDefaultMaterial(new_global_stack, position, extruder_variant_name, extruder_definition = extruder_definition) - if material_node and material_node.getContainer(): - material_container = material_node.getContainer() - - new_extruder_id = registry.uniqueName(extruder_definition_id) - new_extruder = cls.createExtruderStack( - new_extruder_id, - extruder_definition = extruder_definition, - machine_definition_id = definition_id, - position = position, - variant_container = extruder_variant_container, - material_container = material_container, - quality_container = application.empty_quality_container - ) - new_extruder.setNextStack(new_global_stack) - new_global_stack.addExtruder(new_extruder) + for position in extruder_dict: + cls.createExtruderStackWithDefaultSetup(new_global_stack, position) for new_extruder in new_global_stack.extruders.values(): #Only register the extruders if we're sure that all of them are correct. registry.addContainer(new_extruder) @@ -136,19 +100,73 @@ class CuraStackBuilder: return new_global_stack + ## Create a default Extruder Stack + # + # \param global_stack The global stack this extruder refers to. + # \param extruder_position The position of the current extruder. + @classmethod + def createExtruderStackWithDefaultSetup(cls, global_stack: "GlobalStack", extruder_position: int) -> None: + from cura.CuraApplication import CuraApplication + application = CuraApplication.getInstance() + variant_manager = application.getVariantManager() + material_manager = application.getMaterialManager() + registry = application.getContainerRegistry() + + # get variant container for extruders + extruder_variant_container = application.empty_variant_container + extruder_variant_node = variant_manager.getDefaultVariantNode(global_stack.definition, VariantType.NOZZLE) + extruder_variant_name = None + if extruder_variant_node: + extruder_variant_container = extruder_variant_node.getContainer() + if not extruder_variant_container: + extruder_variant_container = application.empty_variant_container + extruder_variant_name = extruder_variant_container.getName() + + extruder_definition_dict = global_stack.getMetaDataEntry("machine_extruder_trains") + extruder_definition_id = extruder_definition_dict[str(extruder_position)] + extruder_definition = registry.findDefinitionContainers(id = extruder_definition_id)[0] + + # get material container for extruders + material_container = application.empty_material_container + material_node = material_manager.getDefaultMaterial(global_stack, extruder_position, extruder_variant_name, + extruder_definition = extruder_definition) + if material_node and material_node.getContainer(): + material_container = material_node.getContainer() + + new_extruder_id = registry.uniqueName(extruder_definition_id) + new_extruder = cls.createExtruderStack( + new_extruder_id, + extruder_definition = extruder_definition, + machine_definition_id = global_stack.definition.getId(), + position = extruder_position, + variant_container = extruder_variant_container, + material_container = material_container, + quality_container = application.empty_quality_container + ) + new_extruder.setNextStack(global_stack) + global_stack.addExtruder(new_extruder) + + registry.addContainer(new_extruder) + ## Create a new Extruder stack # # \param new_stack_id The ID of the new stack. - # \param definition The definition to base the new stack on. - # \param machine_definition_id The ID of the machine definition to use for - # the user container. - # \param kwargs You can add keyword arguments to specify IDs of containers to use for a specific type, for example "variant": "0.4mm" + # \param extruder_definition The definition to base the new stack on. + # \param machine_definition_id The ID of the machine definition to use for the user container. + # \param position The position the extruder occupies in the machine. + # \param variant_container The variant selected for the current extruder. + # \param material_container The material selected for the current extruder. + # \param quality_container The quality selected for the current extruder. # - # \return A new Global stack instance with the specified parameters. + # \return A new Extruder stack instance with the specified parameters. @classmethod - def createExtruderStack(cls, new_stack_id: str, extruder_definition: DefinitionContainerInterface, machine_definition_id: str, + def createExtruderStack(cls, new_stack_id: str, extruder_definition: DefinitionContainerInterface, + machine_definition_id: str, position: int, - variant_container, material_container, quality_container) -> ExtruderStack: + variant_container: "InstanceContainer", + material_container: "InstanceContainer", + quality_container: "InstanceContainer") -> ExtruderStack: + from cura.CuraApplication import CuraApplication application = CuraApplication.getInstance() registry = application.getContainerRegistry() @@ -157,7 +175,7 @@ class CuraStackBuilder: stack.setName(extruder_definition.getName()) stack.setDefinition(extruder_definition) - stack.setMetaDataEntry("position", position) + stack.setMetaDataEntry("position", str(position)) user_container = cls.createUserChangesContainer(new_stack_id + "_user", machine_definition_id, new_stack_id, is_global_stack = False) @@ -183,9 +201,22 @@ class CuraStackBuilder: # \param kwargs You can add keyword arguments to specify IDs of containers to use for a specific type, for example "variant": "0.4mm" # # \return A new Global stack instance with the specified parameters. + + ## Create a new Global stack + # + # \param new_stack_id The ID of the new stack. + # \param definition The definition to base the new stack on. + # \param variant_container The variant selected for the current stack. + # \param material_container The material selected for the current stack. + # \param quality_container The quality selected for the current stack. + # + # \return A new Global stack instance with the specified parameters. @classmethod def createGlobalStack(cls, new_stack_id: str, definition: DefinitionContainerInterface, - variant_container, material_container, quality_container) -> GlobalStack: + variant_container: "InstanceContainer", + material_container: "InstanceContainer", + quality_container: "InstanceContainer") -> GlobalStack: + from cura.CuraApplication import CuraApplication application = CuraApplication.getInstance() registry = application.getContainerRegistry() diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index e046082b5f..803491d1b3 100755 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.py @@ -4,7 +4,8 @@ from PyQt5.QtCore import pyqtSignal, pyqtProperty, QObject, QVariant # For communicating data and events to Qt. from UM.FlameProfiler import pyqtSlot -import cura.CuraApplication #To get the global container stack to find the current machine. +import cura.CuraApplication # To get the global container stack to find the current machine. +from cura.Settings.GlobalStack import GlobalStack from UM.Logger import Logger from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator from UM.Scene.SceneNode import SceneNode @@ -12,15 +13,13 @@ from UM.Scene.Selection import Selection from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator from UM.Settings.ContainerRegistry import ContainerRegistry # Finding containers by ID. from UM.Settings.SettingFunction import SettingFunction -from UM.Settings.SettingInstance import SettingInstance from UM.Settings.ContainerStack import ContainerStack from UM.Settings.PropertyEvaluationContext import PropertyEvaluationContext -from typing import Optional, List, TYPE_CHECKING, Union, Dict +from typing import Any, cast, Dict, List, Optional, TYPE_CHECKING, Union if TYPE_CHECKING: from cura.Settings.ExtruderStack import ExtruderStack - from cura.Settings.GlobalStack import GlobalStack ## Manages all existing extruder stacks. @@ -38,9 +37,13 @@ class ExtruderManager(QObject): self._application = cura.CuraApplication.CuraApplication.getInstance() - self._extruder_trains = {} # Per machine, a dictionary of extruder container stack IDs. Only for separately defined extruders. + # Per machine, a dictionary of extruder container stack IDs. Only for separately defined extruders. + self._extruder_trains = {} # type: Dict[str, Dict[str, "ExtruderStack"]] self._active_extruder_index = -1 # Indicates the index of the active extruder stack. -1 means no active extruder stack - self._selected_object_extruders = [] + + # TODO; I have no idea why this is a union of ID's and extruder stacks. This needs to be fixed at some point. + self._selected_object_extruders = [] # type: List[Union[str, "ExtruderStack"]] + self._addCurrentMachineExtruders() Selection.selectionChanged.connect(self.resetSelectedObjectExtruders) @@ -68,7 +71,7 @@ class ExtruderManager(QObject): ## Return extruder count according to extruder trains. @pyqtProperty(int, notify = extrudersChanged) - def extruderCount(self): + def extruderCount(self) -> int: if not self._application.getGlobalContainerStack(): return 0 # No active machine, so no extruders. try: @@ -79,28 +82,14 @@ class ExtruderManager(QObject): ## Gets a dict with the extruder stack ids with the extruder number as the key. @pyqtProperty("QVariantMap", notify = extrudersChanged) def extruderIds(self) -> Dict[str, str]: - extruder_stack_ids = {} + extruder_stack_ids = {} # type: Dict[str, str] global_container_stack = self._application.getGlobalContainerStack() if global_container_stack: - global_stack_id = global_container_stack.getId() - - if global_stack_id in self._extruder_trains: - for position in self._extruder_trains[global_stack_id]: - extruder_stack_ids[position] = self._extruder_trains[global_stack_id][position].getId() + extruder_stack_ids = {position: extruder.id for position, extruder in global_container_stack.extruders.items()} return extruder_stack_ids - @pyqtSlot(str, result = str) - def getQualityChangesIdByExtruderStackId(self, extruder_stack_id: str) -> str: - global_container_stack = self._application.getGlobalContainerStack() - if global_container_stack is not None: - for position in self._extruder_trains[global_container_stack.getId()]: - extruder = self._extruder_trains[global_container_stack.getId()][position] - if extruder.getId() == extruder_stack_id: - return extruder.qualityChanges.getId() - return "" - ## Changes the active extruder by index. # # \param index The index of the new active extruder. @@ -117,9 +106,9 @@ class ExtruderManager(QObject): # # \param index The index of the extruder whose name to get. @pyqtSlot(int, result = str) - def getExtruderName(self, index): + def getExtruderName(self, index: int) -> str: try: - return list(self.getActiveExtruderStacks())[index].getName() + return self.getActiveExtruderStacks()[index].getName() except IndexError: return "" @@ -128,12 +117,12 @@ class ExtruderManager(QObject): ## Provides a list of extruder IDs used by the current selected objects. @pyqtProperty("QVariantList", notify = selectedObjectExtrudersChanged) - def selectedObjectExtruders(self) -> List[str]: + def selectedObjectExtruders(self) -> List[Union[str, "ExtruderStack"]]: if not self._selected_object_extruders: object_extruders = set() # First, build a list of the actual selected objects (including children of groups, excluding group nodes) - selected_nodes = [] + selected_nodes = [] # type: List["SceneNode"] for node in Selection.getAllSelectedObjects(): if node.callDecoration("isGroup"): for grouped_node in BreadthFirstIterator(node): #type: ignore #Ignore type error because iter() should get called automatically by Python syntax. @@ -145,16 +134,15 @@ class ExtruderManager(QObject): selected_nodes.append(node) # Then, figure out which nodes are used by those selected nodes. - global_stack = self._application.getGlobalContainerStack() - current_extruder_trains = self._extruder_trains.get(global_stack.getId()) + current_extruder_trains = self.getActiveExtruderStacks() for node in selected_nodes: extruder = node.callDecoration("getActiveExtruder") if extruder: object_extruders.add(extruder) elif current_extruder_trains: - object_extruders.add(current_extruder_trains["0"].getId()) + object_extruders.add(current_extruder_trains[0].getId()) - self._selected_object_extruders = list(object_extruders) + self._selected_object_extruders = list(object_extruders) # type: List[Union[str, "ExtruderStack"]] return self._selected_object_extruders @@ -163,19 +151,12 @@ class ExtruderManager(QObject): # This will trigger a recalculation of the extruders used for the # selection. def resetSelectedObjectExtruders(self) -> None: - self._selected_object_extruders = [] + self._selected_object_extruders = [] # type: List[Union[str, "ExtruderStack"]] self.selectedObjectExtrudersChanged.emit() @pyqtSlot(result = QObject) def getActiveExtruderStack(self) -> Optional["ExtruderStack"]: - global_container_stack = self._application.getGlobalContainerStack() - - if global_container_stack: - if global_container_stack.getId() in self._extruder_trains: - if str(self._active_extruder_index) in self._extruder_trains[global_container_stack.getId()]: - return self._extruder_trains[global_container_stack.getId()][str(self._active_extruder_index)] - - return None + return self.getExtruderStack(self._active_extruder_index) ## Get an extruder stack by index def getExtruderStack(self, index) -> Optional["ExtruderStack"]: @@ -186,16 +167,7 @@ class ExtruderManager(QObject): return self._extruder_trains[global_container_stack.getId()][str(index)] return None - ## Get all extruder stacks - def getExtruderStacks(self) -> List["ExtruderStack"]: - result = [] - for i in range(self.extruderCount): - stack = self.getExtruderStack(i) - if stack: - result.append(stack) - return result - - def registerExtruder(self, extruder_train, machine_id): + def registerExtruder(self, extruder_train: "ExtruderStack", machine_id: str) -> None: changed = False if machine_id not in self._extruder_trains: @@ -214,23 +186,20 @@ class ExtruderManager(QObject): if changed: self.extrudersChanged.emit(machine_id) - def getAllExtruderValues(self, setting_key): - return self.getAllExtruderSettings(setting_key, "value") - ## Gets a property of a setting for all extruders. # # \param setting_key \type{str} The setting to get the property of. # \param property \type{str} The property to get. # \return \type{List} the list of results - def getAllExtruderSettings(self, setting_key: str, prop: str): + def getAllExtruderSettings(self, setting_key: str, prop: str) -> List: result = [] - for index in self.extruderIds: - extruder_stack_id = self.extruderIds[str(index)] - extruder_stack = ContainerRegistry.getInstance().findContainerStacks(id = extruder_stack_id)[0] + + for extruder_stack in self.getActiveExtruderStacks(): result.append(extruder_stack.getProperty(setting_key, prop)) + return result - def extruderValueWithDefault(self, value): + def extruderValueWithDefault(self, value: str) -> str: machine_manager = self._application.getMachineManager() if value == "-1": return machine_manager.defaultExtruderPosition @@ -321,7 +290,7 @@ class ExtruderManager(QObject): ## Removes the container stack and user profile for the extruders for a specific machine. # # \param machine_id The machine to remove the extruders for. - def removeMachineExtruders(self, machine_id: str): + def removeMachineExtruders(self, machine_id: str) -> None: for extruder in self.getMachineExtruders(machine_id): ContainerRegistry.getInstance().removeContainer(extruder.userChanges.getId()) ContainerRegistry.getInstance().removeContainer(extruder.getId()) @@ -331,24 +300,11 @@ class ExtruderManager(QObject): ## Returns extruders for a specific machine. # # \param machine_id The machine to get the extruders of. - def getMachineExtruders(self, machine_id: str): + def getMachineExtruders(self, machine_id: str) -> List["ExtruderStack"]: if machine_id not in self._extruder_trains: return [] return [self._extruder_trains[machine_id][name] for name in self._extruder_trains[machine_id]] - ## Returns a list containing the global stack and active extruder stacks. - # - # The first element is the global container stack, followed by any extruder stacks. - # \return \type{List[ContainerStack]} - def getActiveGlobalAndExtruderStacks(self) -> Optional[List[Union["ExtruderStack", "GlobalStack"]]]: - global_stack = self._application.getGlobalContainerStack() - if not global_stack: - return None - - result = [global_stack] - result.extend(self.getActiveExtruderStacks()) - return result - ## Returns the list of active extruder stacks, taking into account the machine extruder count. # # \return \type{List[ContainerStack]} a list of @@ -357,14 +313,11 @@ class ExtruderManager(QObject): if not global_stack: return [] - result = [] - if global_stack.getId() in self._extruder_trains: - for extruder in sorted(self._extruder_trains[global_stack.getId()]): - result.append(self._extruder_trains[global_stack.getId()][extruder]) + result_tuple_list = sorted(list(global_stack.extruders.items()), key = lambda x: int(x[0])) + result_list = [item[1] for item in result_tuple_list] machine_extruder_count = global_stack.getProperty("machine_extruder_count", "value") - - return result[:machine_extruder_count] + return result_list[:machine_extruder_count] def _globalContainerStackChanged(self) -> None: # If the global container changed, the machine changed and might have extruders that were not registered yet @@ -406,10 +359,17 @@ class ExtruderManager(QObject): # After 3.4, all single-extrusion machines have their own extruder definition files instead of reusing # "fdmextruder". We need to check a machine here so its extruder definition is correct according to this. - def _fixSingleExtrusionMachineExtruderDefinition(self, global_stack): + def _fixSingleExtrusionMachineExtruderDefinition(self, global_stack: "GlobalStack") -> None: expected_extruder_definition_0_id = global_stack.getMetaDataEntry("machine_extruder_trains")["0"] - extruder_stack_0 = global_stack.extruders["0"] - if extruder_stack_0.definition.getId() != expected_extruder_definition_0_id: + extruder_stack_0 = global_stack.extruders.get("0") + + if extruder_stack_0 is None: + Logger.log("i", "No extruder stack for global stack [%s], create one", global_stack.getId()) + # Single extrusion machine without an ExtruderStack, create it + from cura.Settings.CuraStackBuilder import CuraStackBuilder + CuraStackBuilder.createExtruderStackWithDefaultSetup(global_stack, 0) + + elif extruder_stack_0.definition.getId() != expected_extruder_definition_0_id: Logger.log("e", "Single extruder printer [{printer}] expected extruder [{expected}], but got [{got}]. I'm making it [{expected}].".format( printer = global_stack.getId(), expected = expected_extruder_definition_0_id, got = extruder_stack_0.definition.getId())) container_registry = ContainerRegistry.getInstance() @@ -425,11 +385,11 @@ class ExtruderManager(QObject): # \return A list of values for all extruders. If an extruder does not have a value, it will not be in the list. # If no extruder has the value, the list will contain the global value. @staticmethod - def getExtruderValues(key): - global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack() + def getExtruderValues(key: str) -> List[Any]: + global_stack = cast(GlobalStack, cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()) #We know that there must be a global stack by the time you're requesting setting values. result = [] - for extruder in ExtruderManager.getInstance().getMachineExtruders(global_stack.getId()): + for extruder in ExtruderManager.getInstance().getActiveExtruderStacks(): if not extruder.isEnabled: continue # only include values from extruders that are "active" for the current machine instance @@ -460,8 +420,8 @@ class ExtruderManager(QObject): # \return A list of values for all extruders. If an extruder does not have a value, it will not be in the list. # If no extruder has the value, the list will contain the global value. @staticmethod - def getDefaultExtruderValues(key): - global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack() + def getDefaultExtruderValues(key: str) -> List[Any]: + global_stack = cast(GlobalStack, cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()) #We know that there must be a global stack by the time you're requesting setting values. context = PropertyEvaluationContext(global_stack) context.context["evaluate_from_container_index"] = 1 # skip the user settings container context.context["override_operators"] = { @@ -471,7 +431,7 @@ class ExtruderManager(QObject): } result = [] - for extruder in ExtruderManager.getInstance().getMachineExtruders(global_stack.getId()): + for extruder in ExtruderManager.getInstance().getActiveExtruderStacks(): # only include values from extruders that are "active" for the current machine instance if int(extruder.getMetaDataEntry("position")) >= global_stack.getProperty("machine_extruder_count", "value", context = context): continue @@ -504,7 +464,7 @@ class ExtruderManager(QObject): # # \return String representing the extruder values @pyqtSlot(str, result="QVariant") - def getInstanceExtruderValues(self, key): + def getInstanceExtruderValues(self, key) -> List: return ExtruderManager.getExtruderValues(key) ## Get the value for a setting from a specific extruder. @@ -517,7 +477,7 @@ class ExtruderManager(QObject): # \return The value of the setting for the specified extruder or for the # global stack if not found. @staticmethod - def getExtruderValue(extruder_index, key): + def getExtruderValue(extruder_index: int, key: str) -> Any: if extruder_index == -1: extruder_index = int(cura.CuraApplication.CuraApplication.getInstance().getMachineManager().defaultExtruderPosition) extruder = ExtruderManager.getInstance().getExtruderStack(extruder_index) @@ -528,7 +488,7 @@ class ExtruderManager(QObject): value = value(extruder) else: # Just a value from global. - value = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack().getProperty(key, "value") + value = cast(GlobalStack, cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()).getProperty(key, "value") return value @@ -542,7 +502,7 @@ class ExtruderManager(QObject): # \return The value of the setting for the specified extruder or for the # global stack if not found. @staticmethod - def getDefaultExtruderValue(extruder_index, key): + def getDefaultExtruderValue(extruder_index: int, key: str) -> Any: extruder = ExtruderManager.getInstance().getExtruderStack(extruder_index) context = PropertyEvaluationContext(extruder) context.context["evaluate_from_container_index"] = 1 # skip the user settings container @@ -557,7 +517,7 @@ class ExtruderManager(QObject): if isinstance(value, SettingFunction): value = value(extruder, context = context) else: # Just a value from global. - value = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack().getProperty(key, "value", context = context) + value = cast(GlobalStack, cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()).getProperty(key, "value", context = context) return value @@ -569,8 +529,8 @@ class ExtruderManager(QObject): # # \return The effective value @staticmethod - def getResolveOrValue(key): - global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack() + def getResolveOrValue(key: str) -> Any: + global_stack = cast(GlobalStack, cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()) resolved_value = global_stack.getProperty(key, "value") return resolved_value @@ -583,8 +543,8 @@ class ExtruderManager(QObject): # # \return The effective value @staticmethod - def getDefaultResolveOrValue(key): - global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack() + def getDefaultResolveOrValue(key: str) -> Any: + global_stack = cast(GlobalStack, cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack()) context = PropertyEvaluationContext(global_stack) context.context["evaluate_from_container_index"] = 1 # skip the user settings container context.context["override_operators"] = { diff --git a/cura/Settings/ExtrudersModel.py b/cura/Settings/ExtrudersModel.py index f179dabd5a..52fc502bfc 100644 --- a/cura/Settings/ExtrudersModel.py +++ b/cura/Settings/ExtrudersModel.py @@ -134,7 +134,7 @@ class ExtrudersModel(UM.Qt.ListModel.ListModel): # Link to new extruders self._active_machine_extruders = [] extruder_manager = Application.getInstance().getExtruderManager() - for extruder in extruder_manager.getExtruderStacks(): + for extruder in extruder_manager.getActiveExtruderStacks(): if extruder is None: #This extruder wasn't loaded yet. This happens asynchronously while this model is constructed from QML. continue extruder.containersChanged.connect(self._onExtruderStackContainersChanged) @@ -171,7 +171,7 @@ class ExtrudersModel(UM.Qt.ListModel.ListModel): # get machine extruder count for verification machine_extruder_count = global_container_stack.getProperty("machine_extruder_count", "value") - for extruder in Application.getInstance().getExtruderManager().getMachineExtruders(global_container_stack.getId()): + for extruder in Application.getInstance().getExtruderManager().getActiveExtruderStacks(): position = extruder.getMetaDataEntry("position", default = "0") # Get the position try: position = int(position) diff --git a/cura/Settings/GlobalStack.py b/cura/Settings/GlobalStack.py index dda21f3719..517b45eb98 100755 --- a/cura/Settings/GlobalStack.py +++ b/cura/Settings/GlobalStack.py @@ -13,6 +13,8 @@ from UM.Settings.SettingInstance import InstanceState from UM.Settings.ContainerRegistry import ContainerRegistry from UM.Settings.Interfaces import PropertyEvaluationContext from UM.Logger import Logger +from UM.Util import parseBool + import cura.CuraApplication from . import Exceptions @@ -21,6 +23,7 @@ from .CuraContainerStack import CuraContainerStack if TYPE_CHECKING: from cura.Settings.ExtruderStack import ExtruderStack + ## Represents the Global or Machine stack and its related containers. # class GlobalStack(CuraContainerStack): @@ -61,6 +64,10 @@ class GlobalStack(CuraContainerStack): name = self.variant.getName() return name + @pyqtProperty(str, constant = True) + def preferred_output_file_formats(self) -> str: + return self.getMetaDataEntry("file_formats") + ## Add an extruder to the list of extruders of this stack. # # \param extruder The extruder to add. @@ -184,6 +191,15 @@ class GlobalStack(CuraContainerStack): def getHeadAndFansCoordinates(self): return self.getProperty("machine_head_with_fans_polygon", "value") + def getHasMaterials(self) -> bool: + return parseBool(self.getMetaDataEntry("has_materials", False)) + + def getHasVariants(self) -> bool: + return parseBool(self.getMetaDataEntry("has_variants", False)) + + def getHasMachineQuality(self) -> bool: + return parseBool(self.getMetaDataEntry("has_machine_quality", False)) + ## private: global_stack_mime = MimeType( diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index f330d70225..6fd945fc31 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -369,6 +369,7 @@ class MachineManager(QObject): return global_stack = containers[0] + ExtruderManager.getInstance()._fixSingleExtrusionMachineExtruderDefinition(global_stack) if not global_stack.isValid(): # Mark global stack as invalid ConfigurationErrorMessage.getInstance().addFaultyContainers(global_stack.getId()) @@ -377,7 +378,7 @@ class MachineManager(QObject): self._global_container_stack = global_stack self._application.setGlobalContainerStack(global_stack) ExtruderManager.getInstance()._globalContainerStackChanged() - self._initMachineState(containers[0]) + self._initMachineState(global_stack) self._onGlobalContainerChanged() self.__emitChangedSignals() @@ -387,7 +388,9 @@ class MachineManager(QObject): # \param definition_id \type{str} definition id that needs to look for # \param metadata_filter \type{dict} list of metadata keys and values used for filtering @staticmethod - def getMachine(definition_id: str, metadata_filter: Dict[str, str] = None) -> Optional["GlobalStack"]: + def getMachine(definition_id: str, metadata_filter: Optional[Dict[str, str]] = None) -> Optional["GlobalStack"]: + if metadata_filter is None: + metadata_filter = {} machines = CuraContainerRegistry.getInstance().findContainerStacks(type = "machine", **metadata_filter) for machine in machines: if machine.definition.getId() == definition_id: @@ -414,7 +417,7 @@ class MachineManager(QObject): # Not a very pretty solution, but the extruder manager doesn't really know how many extruders there are machine_extruder_count = self._global_container_stack.getProperty("machine_extruder_count", "value") - extruder_stacks = ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId()) + extruder_stacks = ExtruderManager.getInstance().getActiveExtruderStacks() count = 1 # we start with the global stack for stack in extruder_stacks: md = stack.getMetaData() @@ -437,7 +440,7 @@ class MachineManager(QObject): if self._global_container_stack.getTop().findInstances(): return True - stacks = list(ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId())) + stacks = ExtruderManager.getInstance().getActiveExtruderStacks() for stack in stacks: if stack.getTop().findInstances(): return True @@ -450,7 +453,7 @@ class MachineManager(QObject): return 0 num_user_settings = 0 num_user_settings += len(self._global_container_stack.getTop().findInstances()) - stacks = list(ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId())) + stacks = ExtruderManager.getInstance().getActiveExtruderStacks() for stack in stacks: num_user_settings += len(stack.getTop().findInstances()) return num_user_settings @@ -475,7 +478,7 @@ class MachineManager(QObject): stack = ExtruderManager.getInstance().getActiveExtruderStack() stacks = [stack] else: - stacks = ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId()) + stacks = ExtruderManager.getInstance().getActiveExtruderStacks() for stack in stacks: if stack is not None: @@ -640,7 +643,7 @@ class MachineManager(QObject): if self._active_container_stack is None or self._global_container_stack is None: return new_value = self._active_container_stack.getProperty(key, "value") - extruder_stacks = [stack for stack in ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId())] + extruder_stacks = [stack for stack in ExtruderManager.getInstance().getActiveExtruderStacks()] # check in which stack the value has to be replaced for extruder_stack in extruder_stacks: @@ -892,7 +895,11 @@ class MachineManager(QObject): extruder_nr = node.callDecoration("getActiveExtruderPosition") if extruder_nr is not None and int(extruder_nr) > extruder_count - 1: - node.callDecoration("setActiveExtruder", extruder_manager.getExtruderStack(extruder_count - 1).getId()) + extruder = extruder_manager.getExtruderStack(extruder_count - 1) + if extruder is not None: + node.callDecoration("setActiveExtruder", extruder.getId()) + else: + Logger.log("w", "Could not find extruder to set active.") # Make sure one of the extruder stacks is active extruder_manager.setActiveExtruderIndex(0) diff --git a/cura/Settings/MachineNameValidator.py b/cura/Settings/MachineNameValidator.py index 19b29feac4..acdda4b0a0 100644 --- a/cura/Settings/MachineNameValidator.py +++ b/cura/Settings/MachineNameValidator.py @@ -35,10 +35,9 @@ class MachineNameValidator(QObject): ## Check if a specified machine name is allowed. # # \param name The machine name to check. - # \param position The current position of the cursor in the text box. # \return ``QValidator.Invalid`` if it's disallowed, or # ``QValidator.Acceptable`` if it's allowed. - def validate(self, name, position): + def validate(self, name): #Check for file name length of the current settings container (which is the longest file we're saving with the name). try: filename_max_length = os.statvfs(Resources.getDataStoragePath()).f_namemax @@ -54,7 +53,7 @@ class MachineNameValidator(QObject): ## Updates the validation state of a machine name text field. @pyqtSlot(str) def updateValidation(self, new_name): - is_valid = self.validate(new_name, 0) + is_valid = self.validate(new_name) if is_valid == QValidator.Acceptable: self.validation_regex = "^.*$" #Matches anything. else: diff --git a/cura/Settings/SidebarCustomMenuItemsModel.py b/cura/Settings/SidebarCustomMenuItemsModel.py index ec926363f5..7177d26923 100644 --- a/cura/Settings/SidebarCustomMenuItemsModel.py +++ b/cura/Settings/SidebarCustomMenuItemsModel.py @@ -18,7 +18,7 @@ class SidebarCustomMenuItemsModel(ListModel): self.addRoleName(self.name_role, "name") self.addRoleName(self.actions_role, "actions") self.addRoleName(self.menu_item_role, "menu_item") - self.addRoleName(self.menu_item_icon_name_role, "iconName") + self.addRoleName(self.menu_item_icon_name_role, "icon_name") self._updateExtensionList() def _updateExtensionList(self)-> None: diff --git a/cura/Settings/UserChangesModel.py b/cura/Settings/UserChangesModel.py index 93274d61c9..95674e5ecd 100644 --- a/cura/Settings/UserChangesModel.py +++ b/cura/Settings/UserChangesModel.py @@ -43,7 +43,9 @@ class UserChangesModel(ListModel): global_stack = Application.getInstance().getGlobalContainerStack() if not global_stack: return - stacks = ExtruderManager.getInstance().getActiveGlobalAndExtruderStacks() + + stacks = [global_stack] + stacks.extend(global_stack.extruders.values()) # Check if the definition container has a translation file and ensure it's loaded. definition = global_stack.getBottom() diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index 9ba82364e8..49c6995d18 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -225,7 +225,7 @@ class ThreeMFReader(MeshReader): except Exception: Logger.logException("e", "An exception occurred in 3mf reader.") - return [] + return None return result diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 16ab22473b..36a725d148 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -85,14 +85,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader): def __init__(self) -> None: super().__init__() - MimeTypeDatabase.addMimeType( - MimeType( - name="application/x-curaproject+xml", - comment="Cura Project File", - suffixes=["curaproject.3mf"] - ) - ) - self._supported_extensions = [".3mf"] self._dialog = WorkspaceDialog() self._3mf_mesh_reader = None @@ -726,8 +718,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader): nodes = [] base_file_name = os.path.basename(file_name) - if base_file_name.endswith(".curaproject.3mf"): - base_file_name = base_file_name[:base_file_name.rfind(".curaproject.3mf")] self.setWorkspaceName(base_file_name) return nodes @@ -944,7 +934,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): root_material_id) if material_node is not None and material_node.getContainer() is not None: - extruder_stack.material = material_node.getContainer() + extruder_stack.material = material_node.getContainer() # type: InstanceContainer def _applyChangesToMachine(self, global_stack, extruder_stack_dict): # Clear all first diff --git a/plugins/3MFReader/__init__.py b/plugins/3MFReader/__init__.py index 3a4fde4ab8..ce94bbe69c 100644 --- a/plugins/3MFReader/__init__.py +++ b/plugins/3MFReader/__init__.py @@ -18,11 +18,7 @@ catalog = i18nCatalog("cura") def getMetaData() -> Dict: - # Workaround for osx not supporting double file extensions correctly. - if Platform.isOSX(): - workspace_extension = "3mf" - else: - workspace_extension = "curaproject.3mf" + workspace_extension = "3mf" metaData = {} if "3MFReader.ThreeMFReader" in sys.modules: diff --git a/plugins/3MFReader/plugin.json b/plugins/3MFReader/plugin.json index 5d15123017..5e41975752 100644 --- a/plugins/3MFReader/plugin.json +++ b/plugins/3MFReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for reading 3MF files.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index e779628f7e..4b8a03888d 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -15,11 +15,7 @@ from UM.Platform import Platform i18n_catalog = i18nCatalog("uranium") def getMetaData(): - # Workarround for osx not supporting double file extensions correctly. - if Platform.isOSX(): - workspace_extension = "3mf" - else: - workspace_extension = "curaproject.3mf" + workspace_extension = "3mf" metaData = {} @@ -36,7 +32,7 @@ def getMetaData(): "output": [{ "extension": workspace_extension, "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), - "mime_type": "application/x-curaproject+xml", + "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode }] } diff --git a/plugins/3MFWriter/plugin.json b/plugins/3MFWriter/plugin.json index 22d18b2cf1..9ec4fb0c20 100644 --- a/plugins/3MFWriter/plugin.json +++ b/plugins/3MFWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for writing 3MF files.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/ChangeLogPlugin/ChangeLog.txt b/plugins/ChangeLogPlugin/ChangeLog.txt index aefeb92ce5..fec177ca60 100755 --- a/plugins/ChangeLogPlugin/ChangeLog.txt +++ b/plugins/ChangeLogPlugin/ChangeLog.txt @@ -1,3 +1,103 @@ +[3.5.0] +*Monitor page +The monitor page of Ultimaker Cura has been remodeled for better consistency with the Cura Connect ‘Print jobs’ interface. This means less switching between interfaces, and more control from within Ultimaker Cura. + +*Open recent projects +Project files can now be found in the ‘Open Recent’ menu. + +*New tool hotkeys +New hotkeys have been assigned for quick toggling between the translate (T), scale (S), rotate (R) and mirror (M) tools. + +*Project files use 3MF only +A 3MF extension is now used for project files. The ‘.curaproject’ extension is no longer used. + +*Camera maximum zoom +The maximum zoom has been adjusted to scale with the size of the selected printer. This fixes third-party printers with huge build volumes to be correctly visible. + +*Corrected width of layer number box +The layer number indicator in the layer view now displays numbers above 999 correctly. + +*Materials preferences +This screen has been redesigned to improve user experience. Materials can now be set as a favorites, so they can be easily accessed in the material selection panel at the top-right of the screen. + +*Installed packages checkmark +Packages that are already installed in the Toolbox are now have a checkmark for easy reference. + +*Mac OSX save dialog +The save dialog has been restored to its native behavior and bugs have been fixed. + +*Removed .gz extension +Saving compressed g-code files from the save dialog has been removed because of incompatibility with MacOS. If sending jobs over Wi-Fi, g-code is still compressed. + +*Updates to Chinese translations +Improved and updated Chinese translations. Contributed by MarmaladeForMeat. + +*Save project +Saving the project no longer triggers the project to reslice. + +*File menu +The Save option in the file menu now saves project files. The export option now saves other types of files, such as STL. + +*Improved processing of overhang walls +Overhang walls are detected and printed with different speeds. It will not start a perimeter on an overhanging wall. The quality of overhanging walls may be improved by printing those at a different speed. Contributed by smartavionics. + +*Prime tower reliability +The prime tower has been improved for better reliability. This is especially useful when printing with two materials that do not adhere well. + +*Support infill line direction +The support infill lines can now be rotated to increase the supporting capabilities and reduce artifacts on the model. This setting rotates existing patterns, like triangle support infill. Contributed by fieldOfView. + +*Minimum polygon circumference +Polygons in sliced layers that have a circumference smaller than the setting value will be filtered out. Lower values lead to higher resolution meshes at the cost of increased slicing time. This setting is ideal for very tiny prints with a lot of detail, or for SLA printers. Contributed by cubiq. + +*Initial layer support line distance +This setting enables the user to reduce or increase the density of the support initial layer in order to increase or reduce adhesion to the build plate and the overall strength. + +*Extra infill wall line count +Adds extra walls around infill. Contributed by BagelOrb. + +*Multiply infill +Creates multiple infill lines on the same pattern for sturdier infill. Contributed by BagelOrb. + +*Connected infill polygons +Connecting infill lines now also works with concentric and cross infill patterns. The benefit would be stronger infill and more consistent material flow/saving retractions. Contributed by BagelOrb. + +*Fan speed override +New setting to modify the fan speed of supported areas. This setting can be found in Support settings > Fan Speed Override when support is enabled. Contributed by smartavionics. + +*Minimum wall flow +New setting to define a minimum flow for thin printed walls. Contributed by smartavionics. + +*Custom support plugin +A tool downloadable from the toolbox, similar to the support blocker, that adds cubes of support to the model manually by clicking parts of it. Contributed by Lokster. + +*Quickly toggle autoslicing +Adds a pause/play button to the progress bar to quickly toggle autoslicing. Contributed by fieldOfview. + +*Cura-DuetRRFPlugin +Adds output devices for a Duet RepRapFirmware printer: "Print", "Simulate", and "Upload". Contributed by Kriechi. + +*Dremel 3D20 +This plugin adds the Dremel printer to Ultimaker Cura. Contributed by Kriechi. + +*Bug fixes +- Removed extra M109 commands. Older versions would generate superfluous M109 commands. This has been fixed for better temperature stability when printing. +- Fixed minor mesh handling bugs. A few combinations of modifier meshes now lead to expected behavior. +- Removed unnecessary travels. Connected infill lines are now always printed completely connected, without unnecessary travel moves. +- Removed concentric 3D infill. This infill type has been removed due to lack of reliability. +- Extra skin wall count. Fixed an issue that caused extra print moves with this setting enabled. +- Concentric skin. Small gaps in concentric skin are now filled correctly. +- Order of printed models. The order of a large batch of printed models is now more consistent, instead of random. + +*Third party printers +- TiZYX +- Winbo +- Tevo Tornado +- Creality CR-10S +- Wanhao Duplicator +- Deltacomb (update) +- Dacoma (update) + [3.4.1] *Bug fixes - Fixed an issue that would occasionally cause an unnecessary extra skin wall to be printed, which increased print time. diff --git a/plugins/ChangeLogPlugin/plugin.json b/plugins/ChangeLogPlugin/plugin.json index e9414b9b71..e09a08564a 100644 --- a/plugins/ChangeLogPlugin/plugin.json +++ b/plugins/ChangeLogPlugin/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Shows changes since latest checked version.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 9a5c95b04d..58bc74f3f1 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -179,8 +179,7 @@ class CuraEngineBackend(QObject, Backend): # This is useful for debugging and used to actually start the engine. # \return list of commands and args / parameters. def getEngineCommand(self) -> List[str]: - json_path = Resources.getPath(Resources.DefinitionContainers, "fdmprinter.def.json") - command = [self._application.getPreferences().getValue("backend/location"), "connect", "127.0.0.1:{0}".format(self._port), "-j", json_path, ""] + command = [self._application.getPreferences().getValue("backend/location"), "connect", "127.0.0.1:{0}".format(self._port), ""] parser = argparse.ArgumentParser(prog = "cura", add_help = False) parser.add_argument("--debug", action = "store_true", default = False, help = "Turn on the debug mode by setting this option.") @@ -343,7 +342,7 @@ class CuraEngineBackend(QObject, Backend): if not self._global_container_stack: Logger.log("w", "Global container stack not assigned to CuraEngineBackend!") return - extruders = list(ExtruderManager.getInstance().getMachineExtruders(self._global_container_stack.getId())) + extruders = ExtruderManager.getInstance().getActiveExtruderStacks() error_keys = [] #type: List[str] for extruder in extruders: error_keys.extend(extruder.getErrorKeys()) diff --git a/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py b/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py index 3bd6d79198..3953625c7e 100644 --- a/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py +++ b/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py @@ -178,7 +178,7 @@ class ProcessSlicedLayersJob(Job): # Find out colors per extruder global_container_stack = Application.getInstance().getGlobalContainerStack() manager = ExtruderManager.getInstance() - extruders = list(manager.getMachineExtruders(global_container_stack.getId())) + extruders = manager.getActiveExtruderStacks() if extruders: material_color_map = numpy.zeros((len(extruders), 4), dtype=numpy.float32) for extruder in extruders: diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 0ebcafdbb2..dd0d9db0a2 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -220,8 +220,10 @@ class StartSliceJob(Job): stack = global_stack skip_group = False for node in group: + # Only check if the printing extruder is enabled for printing meshes + is_non_printing_mesh = node.callDecoration("evaluateIsNonPrintingMesh") extruder_position = node.callDecoration("getActiveExtruderPosition") - if not extruders_enabled[extruder_position]: + if not is_non_printing_mesh and not extruders_enabled[extruder_position]: skip_group = True has_model_with_disabled_extruders = True associated_disabled_extruders.add(extruder_position) @@ -331,7 +333,7 @@ class StartSliceJob(Job): "-1": self._buildReplacementTokens(global_stack) } - for extruder_stack in ExtruderManager.getInstance().getMachineExtruders(global_stack.getId()): + for extruder_stack in ExtruderManager.getInstance().getActiveExtruderStacks(): extruder_nr = extruder_stack.getProperty("extruder_nr", "value") self._all_extruders_settings[str(extruder_nr)] = self._buildReplacementTokens(extruder_stack) @@ -438,8 +440,7 @@ class StartSliceJob(Job): Job.yieldThread() # Ensure that the engine is aware what the build extruder is. - if stack.getProperty("machine_extruder_count", "value") > 1: - changed_setting_keys.add("extruder_nr") + changed_setting_keys.add("extruder_nr") # Get values for all changed settings for key in changed_setting_keys: diff --git a/plugins/CuraEngineBackend/plugin.json b/plugins/CuraEngineBackend/plugin.json index e5df06f228..111698d8d1 100644 --- a/plugins/CuraEngineBackend/plugin.json +++ b/plugins/CuraEngineBackend/plugin.json @@ -2,7 +2,7 @@ "name": "CuraEngine Backend", "author": "Ultimaker B.V.", "description": "Provides the link to the CuraEngine slicing backend.", - "api": 4, + "api": 5, "version": "1.0.0", "i18n-catalog": "cura" } diff --git a/plugins/CuraProfileReader/plugin.json b/plugins/CuraProfileReader/plugin.json index 004a1ade4d..66a2a6a56b 100644 --- a/plugins/CuraProfileReader/plugin.json +++ b/plugins/CuraProfileReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for importing Cura profiles.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/CuraProfileWriter/plugin.json b/plugins/CuraProfileWriter/plugin.json index d9accce770..16c8c34152 100644 --- a/plugins/CuraProfileWriter/plugin.json +++ b/plugins/CuraProfileWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for exporting Cura profiles.", - "api": 4, + "api": 5, "i18n-catalog":"cura" } diff --git a/plugins/FirmwareUpdateChecker/plugin.json b/plugins/FirmwareUpdateChecker/plugin.json index d6a9f9fbd7..cbbd41e420 100644 --- a/plugins/FirmwareUpdateChecker/plugin.json +++ b/plugins/FirmwareUpdateChecker/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Checks for firmware updates.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/GCodeGzReader/GCodeGzReader.py b/plugins/GCodeGzReader/GCodeGzReader.py index 73a08075d2..d075e4e3b0 100644 --- a/plugins/GCodeGzReader/GCodeGzReader.py +++ b/plugins/GCodeGzReader/GCodeGzReader.py @@ -4,15 +4,22 @@ import gzip from UM.Mesh.MeshReader import MeshReader #The class we're extending/implementing. +from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType #To add the .gcode.gz files to the MIME type database. from UM.PluginRegistry import PluginRegistry - ## A file reader that reads gzipped g-code. # # If you're zipping g-code, you might as well use gzip! class GCodeGzReader(MeshReader): def __init__(self) -> None: super().__init__() + MimeTypeDatabase.addMimeType( + MimeType( + name = "application/x-cura-compressed-gcode-file", + comment = "Cura Compressed GCode File", + suffixes = ["gcode.gz"] + ) + ) self._supported_extensions = [".gcode.gz"] def _read(self, file_name): diff --git a/plugins/GCodeGzReader/plugin.json b/plugins/GCodeGzReader/plugin.json index e9f14724e0..3bd6a4097d 100644 --- a/plugins/GCodeGzReader/plugin.json +++ b/plugins/GCodeGzReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Reads g-code from a compressed archive.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/GCodeGzWriter/GCodeGzWriter.py b/plugins/GCodeGzWriter/GCodeGzWriter.py index e191a9c427..cbbfb8f986 100644 --- a/plugins/GCodeGzWriter/GCodeGzWriter.py +++ b/plugins/GCodeGzWriter/GCodeGzWriter.py @@ -17,6 +17,10 @@ catalog = i18nCatalog("cura") # # If you're zipping g-code, you might as well use gzip! class GCodeGzWriter(MeshWriter): + + def __init__(self) -> None: + super().__init__(add_to_recent_files = False) + ## Writes the gzipped g-code to a stream. # # Note that even though the function accepts a collection of nodes, the diff --git a/plugins/GCodeGzWriter/__init__.py b/plugins/GCodeGzWriter/__init__.py index e257bcb011..95949eee74 100644 --- a/plugins/GCodeGzWriter/__init__.py +++ b/plugins/GCodeGzWriter/__init__.py @@ -16,7 +16,8 @@ def getMetaData(): "extension": file_extension, "description": catalog.i18nc("@item:inlistbox", "Compressed G-code File"), "mime_type": "application/gzip", - "mode": GCodeGzWriter.GCodeGzWriter.OutputMode.BinaryMode + "mode": GCodeGzWriter.GCodeGzWriter.OutputMode.BinaryMode, + "hide_in_file_dialog": True, }] } } diff --git a/plugins/GCodeGzWriter/plugin.json b/plugins/GCodeGzWriter/plugin.json index 9774e9a25c..4c6497317b 100644 --- a/plugins/GCodeGzWriter/plugin.json +++ b/plugins/GCodeGzWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Writes g-code to a compressed archive.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/GCodeProfileReader/plugin.json b/plugins/GCodeProfileReader/plugin.json index f8f7d4c291..9677628c85 100644 --- a/plugins/GCodeProfileReader/plugin.json +++ b/plugins/GCodeProfileReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for importing profiles from g-code files.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/GCodeReader/FlavorParser.py b/plugins/GCodeReader/FlavorParser.py index 10f841fc43..eb19853748 100644 --- a/plugins/GCodeReader/FlavorParser.py +++ b/plugins/GCodeReader/FlavorParser.py @@ -275,7 +275,7 @@ class FlavorParser: ## For showing correct x, y offsets for each extruder def _extruderOffsets(self) -> Dict[int, List[float]]: result = {} - for extruder in ExtruderManager.getInstance().getExtruderStacks(): + for extruder in ExtruderManager.getInstance().getActiveExtruderStacks(): result[int(extruder.getMetaData().get("position", "0"))] = [ extruder.getProperty("machine_nozzle_offset_x", "value"), extruder.getProperty("machine_nozzle_offset_y", "value")] diff --git a/plugins/GCodeReader/GCodeReader.py b/plugins/GCodeReader/GCodeReader.py index 45ef1e1058..1bc22a3e62 100755 --- a/plugins/GCodeReader/GCodeReader.py +++ b/plugins/GCodeReader/GCodeReader.py @@ -1,4 +1,5 @@ # Copyright (c) 2017 Aleph Objects, Inc. +# Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from UM.FileHandler.FileReader import FileReader @@ -11,13 +12,7 @@ catalog = i18nCatalog("cura") from . import MarlinFlavorParser, RepRapFlavorParser -MimeTypeDatabase.addMimeType( - MimeType( - name = "application/x-cura-gcode-file", - comment = "Cura GCode File", - suffixes = ["gcode", "gcode.gz"] - ) -) + # Class for loading and parsing G-code files @@ -29,7 +24,15 @@ class GCodeReader(MeshReader): def __init__(self) -> None: super().__init__() + MimeTypeDatabase.addMimeType( + MimeType( + name = "application/x-cura-gcode-file", + comment = "Cura GCode File", + suffixes = ["gcode"] + ) + ) self._supported_extensions = [".gcode", ".g"] + self._flavor_reader = None Application.getInstance().getPreferences().addPreference("gcodereader/show_caution", True) diff --git a/plugins/GCodeReader/plugin.json b/plugins/GCodeReader/plugin.json index f72a8cc12c..75b4d0cd4f 100644 --- a/plugins/GCodeReader/plugin.json +++ b/plugins/GCodeReader/plugin.json @@ -3,6 +3,6 @@ "author": "Victor Larchenko", "version": "1.0.0", "description": "Allows loading and displaying G-code files.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/GCodeWriter/GCodeWriter.py b/plugins/GCodeWriter/GCodeWriter.py index 59e9a29691..5d5e3578cd 100644 --- a/plugins/GCodeWriter/GCodeWriter.py +++ b/plugins/GCodeWriter/GCodeWriter.py @@ -47,7 +47,7 @@ class GCodeWriter(MeshWriter): _setting_keyword = ";SETTING_" def __init__(self): - super().__init__() + super().__init__(add_to_recent_files = False) self._application = Application.getInstance() diff --git a/plugins/GCodeWriter/plugin.json b/plugins/GCodeWriter/plugin.json index 5fcb1a3bd7..3bbbab8b95 100644 --- a/plugins/GCodeWriter/plugin.json +++ b/plugins/GCodeWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Writes g-code to a file.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/ImageReader/plugin.json b/plugins/ImageReader/plugin.json index 2752c6e8f4..08195863e8 100644 --- a/plugins/ImageReader/plugin.json +++ b/plugins/ImageReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Enables ability to generate printable geometry from 2D image files.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/LegacyProfileReader/plugin.json b/plugins/LegacyProfileReader/plugin.json index 2dc71511a9..179f5444e0 100644 --- a/plugins/LegacyProfileReader/plugin.json +++ b/plugins/LegacyProfileReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for importing profiles from legacy Cura versions.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/MachineSettingsAction/MachineSettingsAction.qml b/plugins/MachineSettingsAction/MachineSettingsAction.qml index b12f8f8696..505c988a13 100644 --- a/plugins/MachineSettingsAction/MachineSettingsAction.qml +++ b/plugins/MachineSettingsAction/MachineSettingsAction.qml @@ -16,6 +16,8 @@ Cura.MachineAction property var extrudersModel: Cura.ExtrudersModel{} property int extruderTabsCount: 0 + property var activeMachineId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.id : "" + Connections { target: base.extrudersModel @@ -511,7 +513,7 @@ Cura.MachineAction } return ""; } - return Cura.MachineManager.activeMachineId; + return base.activeMachineId } key: settingKey watchedProperties: [ "value", "description" ] @@ -564,7 +566,7 @@ Cura.MachineAction } return ""; } - return Cura.MachineManager.activeMachineId; + return base.activeMachineId } key: settingKey watchedProperties: [ "value", "description" ] @@ -655,7 +657,7 @@ Cura.MachineAction } return ""; } - return Cura.MachineManager.activeMachineId; + return base.activeMachineId } key: settingKey watchedProperties: [ "value", "options", "description" ] @@ -754,7 +756,7 @@ Cura.MachineAction } return ""; } - return Cura.MachineManager.activeMachineId; + return base.activeMachineId } key: settingKey watchedProperties: [ "value", "description" ] @@ -879,7 +881,7 @@ Cura.MachineAction { id: machineExtruderCountProvider - containerStackId: Cura.MachineManager.activeMachineId + containerStackId: base.activeMachineId key: "machine_extruder_count" watchedProperties: [ "value", "description" ] storeIndex: manager.containerIndex @@ -889,7 +891,7 @@ Cura.MachineAction { id: machineHeadPolygonProvider - containerStackId: Cura.MachineManager.activeMachineId + containerStackId: base.activeMachineId key: "machine_head_with_fans_polygon" watchedProperties: [ "value" ] storeIndex: manager.containerIndex diff --git a/plugins/MachineSettingsAction/plugin.json b/plugins/MachineSettingsAction/plugin.json index 703a145deb..571658e40a 100644 --- a/plugins/MachineSettingsAction/plugin.json +++ b/plugins/MachineSettingsAction/plugin.json @@ -3,6 +3,6 @@ "author": "fieldOfView", "version": "1.0.0", "description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/ModelChecker/plugin.json b/plugins/ModelChecker/plugin.json index a9190adcaa..3753c0cc88 100644 --- a/plugins/ModelChecker/plugin.json +++ b/plugins/ModelChecker/plugin.json @@ -2,7 +2,7 @@ "name": "Model Checker", "author": "Ultimaker B.V.", "version": "0.1", - "api": 4, + "api": 5, "description": "Checks models and print configuration for possible printing issues and give suggestions.", "i18n-catalog": "cura" } diff --git a/plugins/MonitorStage/plugin.json b/plugins/MonitorStage/plugin.json index cb3f55a80d..88b53840e0 100644 --- a/plugins/MonitorStage/plugin.json +++ b/plugins/MonitorStage/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides a monitor stage in Cura.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml index a2790dcf08..596fbd2e99 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml +++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml @@ -17,7 +17,6 @@ Item { width: childrenRect.width; height: childrenRect.height; - property var all_categories_except_support: [ "machine_settings", "resolution", "shell", "infill", "material", "speed", "travel", "cooling", "platform_adhesion", "dual", "meshfix", "blackmagic", "experimental"] @@ -45,7 +44,7 @@ Item { UM.SettingPropertyProvider { id: meshTypePropertyProvider - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine watchedProperties: [ "enabled" ] } @@ -518,7 +517,7 @@ Item { { id: machineExtruderCount - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_extruder_count" watchedProperties: [ "value" ] storeIndex: 0 @@ -528,7 +527,7 @@ Item { { id: printSequencePropertyProvider - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "print_sequence" watchedProperties: [ "value" ] storeIndex: 0 diff --git a/plugins/PerObjectSettingsTool/plugin.json b/plugins/PerObjectSettingsTool/plugin.json index 3254662d33..15fde63387 100644 --- a/plugins/PerObjectSettingsTool/plugin.json +++ b/plugins/PerObjectSettingsTool/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides the Per Model Settings.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.py b/plugins/PostProcessingPlugin/PostProcessingPlugin.py index da971a8e61..b28a028325 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.py +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.py @@ -1,5 +1,6 @@ -# Copyright (c) 2015 Jaime van Kessel, Ultimaker B.V. +# Copyright (c) 2018 Jaime van Kessel, Ultimaker B.V. # The PostProcessingPlugin is released under the terms of the AGPLv3 or higher. + from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal, pyqtSlot from UM.PluginRegistry import PluginRegistry @@ -260,6 +261,9 @@ class PostProcessingPlugin(QObject, Extension): # Create the plugin dialog component path = os.path.join(PluginRegistry.getInstance().getPluginPath("PostProcessingPlugin"), "PostProcessingPlugin.qml") self._view = Application.getInstance().createQmlComponent(path, {"manager": self}) + if self._view is None: + Logger.log("e", "Not creating PostProcessing button near save button because the QML component failed to be created.") + return Logger.log("d", "Post processing view created.") # Create the save button component @@ -269,6 +273,9 @@ class PostProcessingPlugin(QObject, Extension): def showPopup(self): if self._view is None: self._createView() + if self._view is None: + Logger.log("e", "Not creating PostProcessing window since the QML component failed to be created.") + return self._view.show() ## Property changed: trigger re-slice diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index b8d7258ef2..e91fc73cf4 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml @@ -384,7 +384,7 @@ UM.Dialog UM.SettingPropertyProvider { id: inheritStackProvider - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: model.key ? model.key : "None" watchedProperties: [ "limit_to_extruder" ] } diff --git a/plugins/PostProcessingPlugin/plugin.json b/plugins/PostProcessingPlugin/plugin.json index ebfef8145a..fea061e93b 100644 --- a/plugins/PostProcessingPlugin/plugin.json +++ b/plugins/PostProcessingPlugin/plugin.json @@ -2,7 +2,7 @@ "name": "Post Processing", "author": "Ultimaker", "version": "2.2", - "api": 4, + "api": 5, "description": "Extension that allows for user created scripts for post processing", "catalog": "cura" } \ No newline at end of file diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeightRepRapFirmwareDuet.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeightRepRapFirmwareDuet.py new file mode 100644 index 0000000000..79e5d8c62d --- /dev/null +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeightRepRapFirmwareDuet.py @@ -0,0 +1,51 @@ +from ..Script import Script + +class PauseAtHeightRepRapFirmwareDuet(Script): + + def getSettingDataString(self): + return """{ + "name": "Pause at height for RepRapFirmware DuetWifi / Duet Ethernet / Duet Maestro", + "key": "PauseAtHeightRepRapFirmwareDuet", + "metadata": {}, + "version": 2, + "settings": + { + "pause_height": + { + "label": "Pause height", + "description": "At what height should the pause occur", + "unit": "mm", + "type": "float", + "default_value": 5.0 + } + } + }""" + + def execute(self, data): + current_z = 0. + pause_z = self.getSettingValueByKey("pause_height") + + layers_started = False + for layer_number, layer in enumerate(data): + lines = layer.split("\n") + for line in lines: + if ";LAYER:0" in line: + layers_started = True + continue + + if not layers_started: + continue + + if self.getValue(line, 'G') == 1 or self.getValue(line, 'G') == 0: + current_z = self.getValue(line, 'Z') + if current_z != None: + if current_z >= pause_z: + prepend_gcode = ";TYPE:CUSTOM\n" + prepend_gcode += "; -- Pause at height (%.2f mm) --\n" % pause_z + prepend_gcode += self.putValue(M = 226) + "\n" + layer = prepend_gcode + layer + + data[layer_number] = layer # Override the data of this layer with the modified data + return data + break + return data diff --git a/plugins/PrepareStage/plugin.json b/plugins/PrepareStage/plugin.json index 4fd55e955e..f0464313c7 100644 --- a/plugins/PrepareStage/plugin.json +++ b/plugins/PrepareStage/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides a prepare stage in Cura.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/RemovableDriveOutputDevice/plugin.json b/plugins/RemovableDriveOutputDevice/plugin.json index df11644256..36bb9ae186 100644 --- a/plugins/RemovableDriveOutputDevice/plugin.json +++ b/plugins/RemovableDriveOutputDevice/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "description": "Provides removable drive hotplugging and writing support.", "version": "1.0.0", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/SimulationView/LayerSlider.qml b/plugins/SimulationView/LayerSlider.qml index 6dcaa3f475..841472a836 100644 --- a/plugins/SimulationView/LayerSlider.qml +++ b/plugins/SimulationView/LayerSlider.qml @@ -9,7 +9,8 @@ import QtQuick.Controls.Styles 1.1 import UM 1.0 as UM import Cura 1.0 as Cura -Item { +Item +{ id: sliderRoot // handle properties @@ -39,40 +40,49 @@ Item { property real lowerValue: minimumValue property bool layersVisible: true + property bool manuallyChanged: true // Indicates whether the value was changed manually or during simulation - function getUpperValueFromSliderHandle() { + function getUpperValueFromSliderHandle() + { return upperHandle.getValue() } - function setUpperValue(value) { + function setUpperValue(value) + { upperHandle.setValue(value) updateRangeHandle() } - function getLowerValueFromSliderHandle() { + function getLowerValueFromSliderHandle() + { return lowerHandle.getValue() } - function setLowerValue(value) { + function setLowerValue(value) + { lowerHandle.setValue(value) updateRangeHandle() } - function updateRangeHandle() { + function updateRangeHandle() + { rangeHandle.height = lowerHandle.y - (upperHandle.y + upperHandle.height) } // set the active handle to show only one label at a time - function setActiveHandle(handle) { + function setActiveHandle(handle) + { activeHandle = handle } - function normalizeValue(value) { + function normalizeValue(value) + { return Math.min(Math.max(value, sliderRoot.minimumValue), sliderRoot.maximumValue) } // slider track - Rectangle { + Rectangle + { id: track width: sliderRoot.trackThickness @@ -86,7 +96,8 @@ Item { } // Range handle - Item { + Item + { id: rangeHandle y: upperHandle.y + upperHandle.height @@ -96,7 +107,9 @@ Item { visible: sliderRoot.layersVisible // set the new value when dragging - function onHandleDragged () { + function onHandleDragged() + { + sliderRoot.manuallyChanged = true upperHandle.y = y - upperHandle.height lowerHandle.y = y + height @@ -109,7 +122,14 @@ Item { UM.SimulationView.setMinimumLayer(lowerValue) } - function setValue (value) { + function setValueManually(value) + { + sliderRoot.manuallyChanged = true + upperHandle.setValue(value) + } + + function setValue(value) + { var range = sliderRoot.upperValue - sliderRoot.lowerValue value = Math.min(value, sliderRoot.maximumValue) value = Math.max(value, sliderRoot.minimumValue + range) @@ -118,17 +138,20 @@ Item { UM.SimulationView.setMinimumLayer(value - range) } - Rectangle { + Rectangle + { width: sliderRoot.trackThickness - 2 * sliderRoot.trackBorderWidth height: parent.height + sliderRoot.handleSize anchors.centerIn: parent color: sliderRoot.rangeHandleColor } - MouseArea { + MouseArea + { anchors.fill: parent - drag { + drag + { target: parent axis: Drag.YAxis minimumY: upperHandle.height @@ -139,7 +162,8 @@ Item { onPressed: sliderRoot.setActiveHandle(rangeHandle) } - SimulationSliderLabel { + SimulationSliderLabel + { id: rangleHandleLabel height: sliderRoot.handleSize + UM.Theme.getSize("default_margin").height @@ -152,12 +176,13 @@ Item { maximumValue: sliderRoot.maximumValue value: sliderRoot.upperValue busy: UM.SimulationView.busy - setValue: rangeHandle.setValue // connect callback functions + setValue: rangeHandle.setValueManually // connect callback functions } } // Upper handle - Rectangle { + Rectangle + { id: upperHandle y: sliderRoot.height - (sliderRoot.minimumRangeHandleSize + 2 * sliderRoot.handleSize) @@ -168,10 +193,13 @@ Item { color: upperHandleLabel.activeFocus ? sliderRoot.handleActiveColor : sliderRoot.upperHandleColor visible: sliderRoot.layersVisible - function onHandleDragged () { + function onHandleDragged() + { + sliderRoot.manuallyChanged = true // don't allow the lower handle to be heigher than the upper handle - if (lowerHandle.y - (y + height) < sliderRoot.minimumRangeHandleSize) { + if (lowerHandle.y - (y + height) < sliderRoot.minimumRangeHandleSize) + { lowerHandle.y = y + height + sliderRoot.minimumRangeHandleSize } @@ -183,15 +211,23 @@ Item { } // get the upper value based on the slider position - function getValue () { + function getValue() + { var result = y / (sliderRoot.height - (2 * sliderRoot.handleSize + sliderRoot.minimumRangeHandleSize)) result = sliderRoot.maximumValue + result * (sliderRoot.minimumValue - (sliderRoot.maximumValue - sliderRoot.minimumValue)) result = sliderRoot.roundValues ? Math.round(result) : result return result } + function setValueManually(value) + { + sliderRoot.manuallyChanged = true + upperHandle.setValue(value) + } + // set the slider position based on the upper value - function setValue (value) { + function setValue(value) + { // Normalize values between range, since using arrow keys will create out-of-the-range values value = sliderRoot.normalizeValue(value) @@ -209,10 +245,12 @@ Item { Keys.onDownPressed: upperHandleLabel.setValue(upperHandleLabel.value - ((event.modifiers & Qt.ShiftModifier) ? 10 : 1)) // dragging - MouseArea { + MouseArea + { anchors.fill: parent - drag { + drag + { target: parent axis: Drag.YAxis minimumY: 0 @@ -220,13 +258,15 @@ Item { } onPositionChanged: parent.onHandleDragged() - onPressed: { + onPressed: + { sliderRoot.setActiveHandle(upperHandle) upperHandleLabel.forceActiveFocus() } } - SimulationSliderLabel { + SimulationSliderLabel + { id: upperHandleLabel height: sliderRoot.handleSize + UM.Theme.getSize("default_margin").height @@ -239,12 +279,13 @@ Item { maximumValue: sliderRoot.maximumValue value: sliderRoot.upperValue busy: UM.SimulationView.busy - setValue: upperHandle.setValue // connect callback functions + setValue: upperHandle.setValueManually // connect callback functions } } // Lower handle - Rectangle { + Rectangle + { id: lowerHandle y: sliderRoot.height - sliderRoot.handleSize @@ -256,10 +297,13 @@ Item { visible: sliderRoot.layersVisible - function onHandleDragged () { + function onHandleDragged() + { + sliderRoot.manuallyChanged = true // don't allow the upper handle to be lower than the lower handle - if (y - (upperHandle.y + upperHandle.height) < sliderRoot.minimumRangeHandleSize) { + if (y - (upperHandle.y + upperHandle.height) < sliderRoot.minimumRangeHandleSize) + { upperHandle.y = y - (upperHandle.heigth + sliderRoot.minimumRangeHandleSize) } @@ -271,15 +315,24 @@ Item { } // get the lower value from the current slider position - function getValue () { + function getValue() + { var result = (y - (sliderRoot.handleSize + sliderRoot.minimumRangeHandleSize)) / (sliderRoot.height - (2 * sliderRoot.handleSize + sliderRoot.minimumRangeHandleSize)); result = sliderRoot.maximumValue - sliderRoot.minimumRange + result * (sliderRoot.minimumValue - (sliderRoot.maximumValue - sliderRoot.minimumRange)) result = sliderRoot.roundValues ? Math.round(result) : result return result } + function setValueManually(value) + { + sliderRoot.manuallyChanged = true + lowerHandle.setValue(value) + } + // set the slider position based on the lower value - function setValue (value) { + function setValue(value) + { + // Normalize values between range, since using arrow keys will create out-of-the-range values value = sliderRoot.normalizeValue(value) @@ -297,10 +350,12 @@ Item { Keys.onDownPressed: lowerHandleLabel.setValue(lowerHandleLabel.value - ((event.modifiers & Qt.ShiftModifier) ? 10 : 1)) // dragging - MouseArea { + MouseArea + { anchors.fill: parent - drag { + drag + { target: parent axis: Drag.YAxis minimumY: upperHandle.height + sliderRoot.minimumRangeHandleSize @@ -308,13 +363,15 @@ Item { } onPositionChanged: parent.onHandleDragged() - onPressed: { + onPressed: + { sliderRoot.setActiveHandle(lowerHandle) lowerHandleLabel.forceActiveFocus() } } - SimulationSliderLabel { + SimulationSliderLabel + { id: lowerHandleLabel height: sliderRoot.handleSize + UM.Theme.getSize("default_margin").height @@ -327,7 +384,7 @@ Item { maximumValue: sliderRoot.maximumValue value: sliderRoot.lowerValue busy: UM.SimulationView.busy - setValue: lowerHandle.setValue // connect callback functions + setValue: lowerHandle.setValueManually // connect callback functions } } -} +} \ No newline at end of file diff --git a/plugins/SimulationView/PathSlider.qml b/plugins/SimulationView/PathSlider.qml index 999912e3ba..f3c28fb5f7 100644 --- a/plugins/SimulationView/PathSlider.qml +++ b/plugins/SimulationView/PathSlider.qml @@ -9,7 +9,8 @@ import QtQuick.Controls.Styles 1.1 import UM 1.0 as UM import Cura 1.0 as Cura -Item { +Item +{ id: sliderRoot // handle properties @@ -34,26 +35,32 @@ Item { property real handleValue: maximumValue property bool pathsVisible: true + property bool manuallyChanged: true // Indicates whether the value was changed manually or during simulation - function getHandleValueFromSliderHandle () { + function getHandleValueFromSliderHandle() + { return handle.getValue() } - function setHandleValue (value) { + function setHandleValue(value) + { handle.setValue(value) updateRangeHandle() } - function updateRangeHandle () { + function updateRangeHandle() + { rangeHandle.width = handle.x - sliderRoot.handleSize } - function normalizeValue(value) { + function normalizeValue(value) + { return Math.min(Math.max(value, sliderRoot.minimumValue), sliderRoot.maximumValue) } // slider track - Rectangle { + Rectangle + { id: track width: sliderRoot.width - sliderRoot.handleSize @@ -67,7 +74,8 @@ Item { } // Progress indicator - Item { + Item + { id: rangeHandle x: handle.width @@ -76,7 +84,8 @@ Item { anchors.verticalCenter: sliderRoot.verticalCenter visible: sliderRoot.pathsVisible - Rectangle { + Rectangle + { height: sliderRoot.trackThickness - 2 * sliderRoot.trackBorderWidth width: parent.width + sliderRoot.handleSize anchors.centerIn: parent @@ -85,7 +94,8 @@ Item { } // Handle - Rectangle { + Rectangle + { id: handle x: sliderRoot.handleSize @@ -96,7 +106,9 @@ Item { color: handleLabel.activeFocus ? sliderRoot.handleActiveColor : sliderRoot.handleColor visible: sliderRoot.pathsVisible - function onHandleDragged () { + function onHandleDragged() + { + sliderRoot.manuallyChanged = true // update the range handle sliderRoot.updateRangeHandle() @@ -106,15 +118,23 @@ Item { } // get the value based on the slider position - function getValue () { + function getValue() + { var result = x / (sliderRoot.width - sliderRoot.handleSize) result = result * sliderRoot.maximumValue result = sliderRoot.roundValues ? Math.round(result) : result return result } + function setValueManually(value) + { + sliderRoot.manuallyChanged = true + handle.setValue(value) + } + // set the slider position based on the value - function setValue (value) { + function setValue(value) + { // Normalize values between range, since using arrow keys will create out-of-the-range values value = sliderRoot.normalizeValue(value) @@ -132,23 +152,23 @@ Item { Keys.onLeftPressed: handleLabel.setValue(handleLabel.value - ((event.modifiers & Qt.ShiftModifier) ? 10 : 1)) // dragging - MouseArea { + MouseArea + { anchors.fill: parent - drag { + drag + { target: parent axis: Drag.XAxis minimumX: 0 maximumX: sliderRoot.width - sliderRoot.handleSize } - onPressed: { - handleLabel.forceActiveFocus() - } - + onPressed: handleLabel.forceActiveFocus() onPositionChanged: parent.onHandleDragged() } - SimulationSliderLabel { + SimulationSliderLabel + { id: handleLabel height: sliderRoot.handleSize + UM.Theme.getSize("default_margin").height @@ -162,7 +182,7 @@ Item { maximumValue: sliderRoot.maximumValue value: sliderRoot.handleValue busy: UM.SimulationView.busy - setValue: handle.setValue // connect callback functions + setValue: handle.setValueManually // connect callback functions } } } diff --git a/plugins/SimulationView/SimulationSliderLabel.qml b/plugins/SimulationView/SimulationSliderLabel.qml index 94167d001e..b69fede243 100644 --- a/plugins/SimulationView/SimulationSliderLabel.qml +++ b/plugins/SimulationView/SimulationSliderLabel.qml @@ -44,12 +44,11 @@ UM.PointingRectangle { id: valueLabel anchors { - left: parent.left - leftMargin: Math.round(UM.Theme.getSize("default_margin").width / 2) verticalCenter: parent.verticalCenter + horizontalCenter: parent.horizontalCenter } - width: maximumValue.toString().length * 12 * screenScaleFactor + width: (maximumValue.toString().length + 1) * 10 * screenScaleFactor text: sliderLabelRoot.value + startFrom // the current handle value, add 1 because layers is an array horizontalAlignment: TextInput.AlignRight diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 44643dbf1c..8d739654d4 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -18,10 +18,13 @@ from UM.Platform import Platform from UM.PluginRegistry import PluginRegistry from UM.Resources import Resources from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator + from UM.Scene.Selection import Selection from UM.Signal import Signal from UM.View.GL.OpenGL import OpenGL from UM.View.GL.OpenGLContext import OpenGLContext + + from UM.View.View import View from UM.i18n import i18nCatalog from cura.Scene.ConvexHullNode import ConvexHullNode @@ -30,11 +33,20 @@ from cura.CuraApplication import CuraApplication from .NozzleNode import NozzleNode from .SimulationPass import SimulationPass from .SimulationViewProxy import SimulationViewProxy +import numpy +import os.path + +from typing import Optional, TYPE_CHECKING, List + +if TYPE_CHECKING: + from UM.Scene.SceneNode import SceneNode + from UM.Scene.Scene import Scene + from UM.View.GL.ShaderProgram import ShaderProgram + from UM.View.RenderPass import RenderPass + from UM.Settings.ContainerStack import ContainerStack catalog = i18nCatalog("cura") -import numpy -import os.path ## View used to display g-code paths. class SimulationView(View): @@ -44,7 +56,7 @@ class SimulationView(View): LAYER_VIEW_TYPE_FEEDRATE = 2 LAYER_VIEW_TYPE_THICKNESS = 3 - def __init__(self): + def __init__(self) -> None: super().__init__() self._max_layers = 0 @@ -64,21 +76,21 @@ class SimulationView(View): self._busy = False self._simulation_running = False - self._ghost_shader = None - self._layer_pass = None - self._composite_pass = None + self._ghost_shader = None # type: Optional["ShaderProgram"] + self._layer_pass = None # type: Optional[SimulationPass] + self._composite_pass = None # type: Optional[RenderPass] self._old_layer_bindings = None - self._simulationview_composite_shader = None + self._simulationview_composite_shader = None # type: Optional["ShaderProgram"] self._old_composite_shader = None - self._global_container_stack = None + self._global_container_stack = None # type: Optional[ContainerStack] self._proxy = SimulationViewProxy() self._controller.getScene().getRoot().childrenChanged.connect(self._onSceneChanged) self._resetSettings() self._legend_items = None self._show_travel_moves = False - self._nozzle_node = None + self._nozzle_node = None # type: Optional[NozzleNode] Application.getInstance().getPreferences().addPreference("view/top_layer_count", 5) Application.getInstance().getPreferences().addPreference("view/only_show_top_layers", False) @@ -102,29 +114,29 @@ class SimulationView(View): self._wireprint_warning_message = Message(catalog.i18nc("@info:status", "Cura does not accurately display layers when Wire Printing is enabled"), title = catalog.i18nc("@info:title", "Simulation View")) - def _evaluateCompatibilityMode(self): + def _evaluateCompatibilityMode(self) -> bool: return OpenGLContext.isLegacyOpenGL() or bool(Application.getInstance().getPreferences().getValue("view/force_layer_view_compatibility_mode")) - def _resetSettings(self): - self._layer_view_type = 0 # 0 is material color, 1 is color by linetype, 2 is speed, 3 is layer thickness + def _resetSettings(self) -> None: + self._layer_view_type = 0 # type: int # 0 is material color, 1 is color by linetype, 2 is speed, 3 is layer thickness self._extruder_count = 0 self._extruder_opacity = [1.0, 1.0, 1.0, 1.0] - self._show_travel_moves = 0 - self._show_helpers = 1 - self._show_skin = 1 - self._show_infill = 1 + self._show_travel_moves = False + self._show_helpers = True + self._show_skin = True + self._show_infill = True self.resetLayerData() - def getActivity(self): + def getActivity(self) -> bool: return self._activity - def setActivity(self, activity): + def setActivity(self, activity: bool) -> None: if self._activity == activity: return self._activity = activity self.activityChanged.emit() - def getSimulationPass(self): + def getSimulationPass(self) -> SimulationPass: if not self._layer_pass: # Currently the RenderPass constructor requires a size > 0 # This should be fixed in RenderPass's constructor. @@ -133,30 +145,30 @@ class SimulationView(View): self._layer_pass.setSimulationView(self) return self._layer_pass - def getCurrentLayer(self): + def getCurrentLayer(self) -> int: return self._current_layer_num - def getMinimumLayer(self): + def getMinimumLayer(self) -> int: return self._minimum_layer_num - def getMaxLayers(self): + def getMaxLayers(self) -> int: return self._max_layers - def getCurrentPath(self): + def getCurrentPath(self) -> int: return self._current_path_num - def getMinimumPath(self): + def getMinimumPath(self) -> int: return self._minimum_path_num - def getMaxPaths(self): + def getMaxPaths(self) -> int: return self._max_paths - def getNozzleNode(self): + def getNozzleNode(self) -> NozzleNode: if not self._nozzle_node: self._nozzle_node = NozzleNode() return self._nozzle_node - def _onSceneChanged(self, node): + def _onSceneChanged(self, node: "SceneNode") -> None: if node.getMeshData() is None: self.resetLayerData() @@ -164,21 +176,21 @@ class SimulationView(View): self.calculateMaxLayers() self.calculateMaxPathsOnLayer(self._current_layer_num) - def isBusy(self): + def isBusy(self) -> bool: return self._busy - def setBusy(self, busy): + def setBusy(self, busy: bool) -> None: if busy != self._busy: self._busy = busy self.busyChanged.emit() - def isSimulationRunning(self): + def isSimulationRunning(self) -> bool: return self._simulation_running - def setSimulationRunning(self, running): + def setSimulationRunning(self, running: bool) -> None: self._simulation_running = running - def resetLayerData(self): + def resetLayerData(self) -> None: self._current_layer_mesh = None self._current_layer_jumps = None self._max_feedrate = sys.float_info.min @@ -186,7 +198,7 @@ class SimulationView(View): self._max_thickness = sys.float_info.min self._min_thickness = sys.float_info.max - def beginRendering(self): + def beginRendering(self) -> None: scene = self.getController().getScene() renderer = self.getRenderer() @@ -204,7 +216,7 @@ class SimulationView(View): if (node.getMeshData()) and node.isVisible(): renderer.queueNode(node, transparent = True, shader = self._ghost_shader) - def setLayer(self, value): + def setLayer(self, value: int) -> None: if self._current_layer_num != value: self._current_layer_num = value if self._current_layer_num < 0: @@ -218,7 +230,7 @@ class SimulationView(View): self.currentLayerNumChanged.emit() - def setMinimumLayer(self, value): + def setMinimumLayer(self, value: int) -> None: if self._minimum_layer_num != value: self._minimum_layer_num = value if self._minimum_layer_num < 0: @@ -232,7 +244,7 @@ class SimulationView(View): self.currentLayerNumChanged.emit() - def setPath(self, value): + def setPath(self, value: int) -> None: if self._current_path_num != value: self._current_path_num = value if self._current_path_num < 0: @@ -246,7 +258,7 @@ class SimulationView(View): self.currentPathNumChanged.emit() - def setMinimumPath(self, value): + def setMinimumPath(self, value: int) -> None: if self._minimum_path_num != value: self._minimum_path_num = value if self._minimum_path_num < 0: @@ -263,24 +275,24 @@ class SimulationView(View): ## Set the layer view type # # \param layer_view_type integer as in SimulationView.qml and this class - def setSimulationViewType(self, layer_view_type): + def setSimulationViewType(self, layer_view_type: int) -> None: self._layer_view_type = layer_view_type self.currentLayerNumChanged.emit() ## Return the layer view type, integer as in SimulationView.qml and this class - def getSimulationViewType(self): + def getSimulationViewType(self) -> int: return self._layer_view_type ## Set the extruder opacity # # \param extruder_nr 0..3 # \param opacity 0.0 .. 1.0 - def setExtruderOpacity(self, extruder_nr, opacity): + def setExtruderOpacity(self, extruder_nr: int, opacity: float) -> None: if 0 <= extruder_nr <= 3: self._extruder_opacity[extruder_nr] = opacity self.currentLayerNumChanged.emit() - def getExtruderOpacities(self): + def getExtruderOpacities(self)-> List[float]: return self._extruder_opacity def setShowTravelMoves(self, show): @@ -290,46 +302,46 @@ class SimulationView(View): def getShowTravelMoves(self): return self._show_travel_moves - def setShowHelpers(self, show): + def setShowHelpers(self, show: bool) -> None: self._show_helpers = show self.currentLayerNumChanged.emit() - def getShowHelpers(self): + def getShowHelpers(self) -> bool: return self._show_helpers - def setShowSkin(self, show): + def setShowSkin(self, show: bool) -> None: self._show_skin = show self.currentLayerNumChanged.emit() - def getShowSkin(self): + def getShowSkin(self) -> bool: return self._show_skin - def setShowInfill(self, show): + def setShowInfill(self, show: bool) -> None: self._show_infill = show self.currentLayerNumChanged.emit() - def getShowInfill(self): + def getShowInfill(self) -> bool: return self._show_infill - def getCompatibilityMode(self): + def getCompatibilityMode(self) -> bool: return self._compatibility_mode - def getExtruderCount(self): + def getExtruderCount(self) -> int: return self._extruder_count - def getMinFeedrate(self): + def getMinFeedrate(self) -> float: return self._min_feedrate - def getMaxFeedrate(self): + def getMaxFeedrate(self) -> float: return self._max_feedrate - def getMinThickness(self): + def getMinThickness(self) -> float: return self._min_thickness - def getMaxThickness(self): + def getMaxThickness(self) -> float: return self._max_thickness - def calculateMaxLayers(self): + def calculateMaxLayers(self) -> None: scene = self.getController().getScene() self._old_max_layers = self._max_layers @@ -383,7 +395,7 @@ class SimulationView(View): self.maxLayersChanged.emit() self._startUpdateTopLayers() - def calculateMaxPathsOnLayer(self, layer_num): + def calculateMaxPathsOnLayer(self, layer_num: int) -> None: # Update the currentPath scene = self.getController().getScene() for node in DepthFirstIterator(scene.getRoot()): @@ -415,10 +427,10 @@ class SimulationView(View): def getProxy(self, engine, script_engine): return self._proxy - def endRendering(self): + def endRendering(self) -> None: pass - def event(self, event): + def event(self, event) -> bool: modifiers = QApplication.keyboardModifiers() ctrl_is_active = modifiers & Qt.ControlModifier shift_is_active = modifiers & Qt.ShiftModifier @@ -447,7 +459,7 @@ class SimulationView(View): if QOpenGLContext.currentContext() is None: Logger.log("d", "current context of OpenGL is empty on Mac OS X, will try to create shaders later") CuraApplication.getInstance().callLater(lambda e=event: self.event(e)) - return + return False # Make sure the SimulationPass is created layer_pass = self.getSimulationPass() @@ -480,11 +492,14 @@ class SimulationView(View): Application.getInstance().globalContainerStackChanged.disconnect(self._onGlobalStackChanged) if self._global_container_stack: self._global_container_stack.propertyChanged.disconnect(self._onPropertyChanged) - - self._nozzle_node.setParent(None) + if self._nozzle_node: + self._nozzle_node.setParent(None) self.getRenderer().removeRenderPass(self._layer_pass) - self._composite_pass.setLayerBindings(self._old_layer_bindings) - self._composite_pass.setCompositeShader(self._old_composite_shader) + if self._composite_pass: + self._composite_pass.setLayerBindings(self._old_layer_bindings) + self._composite_pass.setCompositeShader(self._old_composite_shader) + + return False def getCurrentLayerMesh(self): return self._current_layer_mesh @@ -492,7 +507,7 @@ class SimulationView(View): def getCurrentLayerJumps(self): return self._current_layer_jumps - def _onGlobalStackChanged(self): + def _onGlobalStackChanged(self) -> None: if self._global_container_stack: self._global_container_stack.propertyChanged.disconnect(self._onPropertyChanged) self._global_container_stack = Application.getInstance().getGlobalContainerStack() @@ -504,17 +519,17 @@ class SimulationView(View): else: self._wireprint_warning_message.hide() - def _onPropertyChanged(self, key, property_name): + def _onPropertyChanged(self, key: str, property_name: str) -> None: if key == "wireframe_enabled" and property_name == "value": - if self._global_container_stack.getProperty("wireframe_enabled", "value"): + if self._global_container_stack and self._global_container_stack.getProperty("wireframe_enabled", "value"): self._wireprint_warning_message.show() else: self._wireprint_warning_message.hide() - def _onCurrentLayerNumChanged(self): + def _onCurrentLayerNumChanged(self) -> None: self.calculateMaxPathsOnLayer(self._current_layer_num) - def _startUpdateTopLayers(self): + def _startUpdateTopLayers(self) -> None: if not self._compatibility_mode: return @@ -525,10 +540,10 @@ class SimulationView(View): self.setBusy(True) self._top_layers_job = _CreateTopLayersJob(self._controller.getScene(), self._current_layer_num, self._solid_layers) - self._top_layers_job.finished.connect(self._updateCurrentLayerMesh) - self._top_layers_job.start() + self._top_layers_job.finished.connect(self._updateCurrentLayerMesh) # type: ignore # mypy doesn't understand the whole private class thing that's going on here. + self._top_layers_job.start() # type: ignore - def _updateCurrentLayerMesh(self, job): + def _updateCurrentLayerMesh(self, job: "_CreateTopLayersJob") -> None: self.setBusy(False) if not job.getResult(): @@ -539,9 +554,9 @@ class SimulationView(View): self._current_layer_jumps = job.getResult().get("jumps") self._controller.getScene().sceneChanged.emit(self._controller.getScene().getRoot()) - self._top_layers_job = None + self._top_layers_job = None # type: Optional["_CreateTopLayersJob"] - def _updateWithPreferences(self): + def _updateWithPreferences(self) -> None: self._solid_layers = int(Application.getInstance().getPreferences().getValue("view/top_layer_count")) self._only_show_top_layers = bool(Application.getInstance().getPreferences().getValue("view/only_show_top_layers")) self._compatibility_mode = self._evaluateCompatibilityMode() @@ -563,7 +578,7 @@ class SimulationView(View): self._startUpdateTopLayers() self.preferencesChanged.emit() - def _onPreferencesChanged(self, preference): + def _onPreferencesChanged(self, preference: str) -> None: if preference not in { "view/top_layer_count", "view/only_show_top_layers", @@ -581,7 +596,7 @@ class SimulationView(View): class _CreateTopLayersJob(Job): - def __init__(self, scene, layer_number, solid_layers): + def __init__(self, scene: "Scene", layer_number: int, solid_layers: int) -> None: super().__init__() self._scene = scene @@ -589,7 +604,7 @@ class _CreateTopLayersJob(Job): self._solid_layers = solid_layers self._cancel = False - def run(self): + def run(self) -> None: layer_data = None for node in DepthFirstIterator(self._scene.getRoot()): layer_data = node.callDecoration("getLayerData") @@ -638,6 +653,6 @@ class _CreateTopLayersJob(Job): self.setResult({"layers": layer_mesh.build(), "jumps": jump_mesh}) - def cancel(self): + def cancel(self) -> None: self._cancel = True super().cancel() diff --git a/plugins/SimulationView/SimulationView.qml b/plugins/SimulationView/SimulationView.qml index a3a8ced4cf..be124157fb 100644 --- a/plugins/SimulationView/SimulationView.qml +++ b/plugins/SimulationView/SimulationView.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Ultimaker B.V. +// Copyright (c) 2018 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.4 @@ -12,30 +12,43 @@ import Cura 1.0 as Cura Item { id: base - width: { - if (UM.SimulationView.compatibilityMode) { + width: + { + if (UM.SimulationView.compatibilityMode) + { return UM.Theme.getSize("layerview_menu_size_compatibility").width; - } else { + } + else + { return UM.Theme.getSize("layerview_menu_size").width; } } height: { - if (viewSettings.collapsed) { - if (UM.SimulationView.compatibilityMode) { + if (viewSettings.collapsed) + { + if (UM.SimulationView.compatibilityMode) + { return UM.Theme.getSize("layerview_menu_size_compatibility_collapsed").height; } return UM.Theme.getSize("layerview_menu_size_collapsed").height; - } else if (UM.SimulationView.compatibilityMode) { + } + else if (UM.SimulationView.compatibilityMode) + { return UM.Theme.getSize("layerview_menu_size_compatibility").height; - } else if (UM.Preferences.getValue("layerview/layer_view_type") == 0) { + } + else if (UM.Preferences.getValue("layerview/layer_view_type") == 0) + { return UM.Theme.getSize("layerview_menu_size_material_color_mode").height + UM.SimulationView.extruderCount * (UM.Theme.getSize("layerview_row").height + UM.Theme.getSize("layerview_row_spacing").height) - } else { + } + else + { return UM.Theme.getSize("layerview_menu_size").height + UM.SimulationView.extruderCount * (UM.Theme.getSize("layerview_row").height + UM.Theme.getSize("layerview_row_spacing").height) } } Behavior on height { NumberAnimation { duration: 100 } } - property var buttonTarget: { + property var buttonTarget: + { if(parent != null) { var force_binding = parent.y; // ensure this gets reevaluated when the panel moves @@ -44,7 +57,8 @@ Item return Qt.point(0,0) } - Rectangle { + Rectangle + { id: layerViewMenu anchors.right: parent.right anchors.top: parent.top @@ -83,7 +97,8 @@ Item } } - ColumnLayout { + ColumnLayout + { id: viewSettings property bool collapsed: false @@ -195,7 +210,8 @@ Item width: width } - Connections { + Connections + { target: UM.Preferences onPreferenceChanged: { @@ -212,18 +228,22 @@ Item } } - Repeater { + Repeater + { model: Cura.ExtrudersModel{} - CheckBox { + CheckBox + { id: extrudersModelCheckBox checked: viewSettings.extruder_opacities[index] > 0.5 || viewSettings.extruder_opacities[index] == undefined || viewSettings.extruder_opacities[index] == "" - onClicked: { + onClicked: + { viewSettings.extruder_opacities[index] = checked ? 1.0 : 0.0 UM.Preferences.setValue("layerview/extruder_opacities", viewSettings.extruder_opacities.join("|")); } visible: !UM.SimulationView.compatibilityMode enabled: index + 1 <= 4 - Rectangle { + Rectangle + { anchors.verticalCenter: parent.verticalCenter anchors.right: extrudersModelCheckBox.right width: UM.Theme.getSize("layerview_legend_size").width @@ -253,8 +273,10 @@ Item } } - Repeater { - model: ListModel { + Repeater + { + model: ListModel + { id: typesLegendModel Component.onCompleted: { @@ -285,13 +307,16 @@ Item } } - CheckBox { + CheckBox + { id: legendModelCheckBox checked: model.initialValue - onClicked: { + onClicked: + { UM.Preferences.setValue(model.preference, checked); } - Rectangle { + Rectangle + { anchors.verticalCenter: parent.verticalCenter anchors.right: legendModelCheckBox.right width: UM.Theme.getSize("layerview_legend_size").width @@ -320,18 +345,22 @@ Item } } - CheckBox { + CheckBox + { checked: viewSettings.only_show_top_layers - onClicked: { + 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 } - CheckBox { + CheckBox + { checked: viewSettings.top_layer_count == 5 - onClicked: { + onClicked: + { UM.Preferences.setValue("view/top_layer_count", checked ? 5 : 1); } text: catalog.i18nc("@label", "Show 5 Detailed Layers On Top") @@ -339,8 +368,10 @@ Item style: UM.Theme.styles.checkbox } - Repeater { - model: ListModel { + Repeater + { + model: ListModel + { id: typesLegendModelNoCheck Component.onCompleted: { @@ -355,11 +386,13 @@ Item } } - Label { + Label + { text: label visible: viewSettings.show_legend id: typesLegendModelLabel - Rectangle { + Rectangle + { anchors.verticalCenter: parent.verticalCenter anchors.right: typesLegendModelLabel.right width: UM.Theme.getSize("layerview_legend_size").width @@ -378,30 +411,37 @@ Item } // Text for the minimum, maximum and units for the feedrates and layer thickness - Item { + Item + { id: gradientLegend visible: viewSettings.show_gradient width: parent.width height: UM.Theme.getSize("layerview_row").height - anchors { + anchors + { topMargin: UM.Theme.getSize("slider_layerview_margin").height horizontalCenter: parent.horizontalCenter } - Label { + Label + { text: minText() anchors.left: parent.left color: UM.Theme.getColor("setting_control_text") font: UM.Theme.getFont("default") - function minText() { - if (UM.SimulationView.layerActivity && CuraApplication.platformActivity) { + function minText() + { + if (UM.SimulationView.layerActivity && CuraApplication.platformActivity) + { // Feedrate selected - if (UM.Preferences.getValue("layerview/layer_view_type") == 2) { + if (UM.Preferences.getValue("layerview/layer_view_type") == 2) + { return parseFloat(UM.SimulationView.getMinFeedrate()).toFixed(2) } // Layer thickness selected - if (UM.Preferences.getValue("layerview/layer_view_type") == 3) { + if (UM.Preferences.getValue("layerview/layer_view_type") == 3) + { return parseFloat(UM.SimulationView.getMinThickness()).toFixed(2) } } @@ -409,20 +449,25 @@ Item } } - Label { + Label + { text: unitsText() anchors.horizontalCenter: parent.horizontalCenter color: UM.Theme.getColor("setting_control_text") font: UM.Theme.getFont("default") - function unitsText() { - if (UM.SimulationView.layerActivity && CuraApplication.platformActivity) { + function unitsText() + { + if (UM.SimulationView.layerActivity && CuraApplication.platformActivity) + { // Feedrate selected - if (UM.Preferences.getValue("layerview/layer_view_type") == 2) { + if (UM.Preferences.getValue("layerview/layer_view_type") == 2) + { return "mm/s" } // Layer thickness selected - if (UM.Preferences.getValue("layerview/layer_view_type") == 3) { + if (UM.Preferences.getValue("layerview/layer_view_type") == 3) + { return "mm" } } @@ -430,20 +475,25 @@ Item } } - Label { + Label + { text: maxText() anchors.right: parent.right color: UM.Theme.getColor("setting_control_text") font: UM.Theme.getFont("default") - function maxText() { - if (UM.SimulationView.layerActivity && CuraApplication.platformActivity) { + function maxText() + { + if (UM.SimulationView.layerActivity && CuraApplication.platformActivity) + { // Feedrate selected - if (UM.Preferences.getValue("layerview/layer_view_type") == 2) { + if (UM.Preferences.getValue("layerview/layer_view_type") == 2) + { return parseFloat(UM.SimulationView.getMaxFeedrate()).toFixed(2) } // Layer thickness selected - if (UM.Preferences.getValue("layerview/layer_view_type") == 3) { + if (UM.Preferences.getValue("layerview/layer_view_type") == 3) + { return parseFloat(UM.SimulationView.getMaxThickness()).toFixed(2) } } @@ -453,7 +503,8 @@ Item } // Gradient colors for feedrate - Rectangle { // In QML 5.9 can be changed by LinearGradient + Rectangle + { // In QML 5.9 can be changed by LinearGradient // Invert values because then the bar is rotated 90 degrees id: feedrateGradient visible: viewSettings.show_feedrate_gradient @@ -463,20 +514,25 @@ Item border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining") transform: Rotation {origin.x: 0; origin.y: 0; angle: 90} - gradient: Gradient { - GradientStop { + gradient: Gradient + { + GradientStop + { position: 0.000 color: Qt.rgba(1, 0.5, 0, 1) } - GradientStop { + GradientStop + { position: 0.625 color: Qt.rgba(0.375, 0.5, 0, 1) } - GradientStop { + GradientStop + { position: 0.75 color: Qt.rgba(0.25, 1, 0, 1) } - GradientStop { + GradientStop + { position: 1.0 color: Qt.rgba(0, 0, 1, 1) } @@ -484,7 +540,8 @@ Item } // Gradient colors for layer thickness (similar to parula colormap) - Rectangle { // In QML 5.9 can be changed by LinearGradient + Rectangle // In QML 5.9 can be changed by LinearGradient + { // Invert values because then the bar is rotated 90 degrees id: thicknessGradient visible: viewSettings.show_thickness_gradient @@ -494,24 +551,30 @@ Item border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining") transform: Rotation {origin.x: 0; origin.y: 0; angle: 90} - gradient: Gradient { - GradientStop { + gradient: Gradient + { + GradientStop + { position: 0.000 color: Qt.rgba(1, 1, 0, 1) } - GradientStop { + GradientStop + { position: 0.25 color: Qt.rgba(1, 0.75, 0.25, 1) } - GradientStop { + GradientStop + { position: 0.5 color: Qt.rgba(0, 0.75, 0.5, 1) } - GradientStop { + GradientStop + { position: 0.75 color: Qt.rgba(0, 0.375, 0.75, 1) } - GradientStop { + GradientStop + { position: 1.0 color: Qt.rgba(0, 0, 0.5, 1) } @@ -520,19 +583,22 @@ Item } } - Item { + Item + { id: slidersBox width: parent.width visible: UM.SimulationView.layerActivity && CuraApplication.platformActivity - anchors { + anchors + { top: parent.bottom topMargin: UM.Theme.getSize("slider_layerview_margin").height left: parent.left } - PathSlider { + PathSlider + { id: pathSlider height: UM.Theme.getSize("slider_handle").width @@ -553,25 +619,37 @@ Item rangeColor: UM.Theme.getColor("slider_groove_fill") // update values when layer data changes - Connections { + Connections + { target: UM.SimulationView onMaxPathsChanged: pathSlider.setHandleValue(UM.SimulationView.currentPath) - onCurrentPathChanged: pathSlider.setHandleValue(UM.SimulationView.currentPath) + onCurrentPathChanged: + { + // Only pause the simulation when the layer was changed manually, not when the simulation is running + if (pathSlider.manuallyChanged) + { + playButton.pauseSimulation() + } + pathSlider.setHandleValue(UM.SimulationView.currentPath) + } } // make sure the slider handlers show the correct value after switching views - Component.onCompleted: { + Component.onCompleted: + { pathSlider.setHandleValue(UM.SimulationView.currentPath) } } - LayerSlider { + LayerSlider + { id: layerSlider width: UM.Theme.getSize("slider_handle").width height: UM.Theme.getSize("layerview_menu_size").height - anchors { + anchors + { top: !UM.SimulationView.compatibilityMode ? pathSlider.bottom : parent.top topMargin: !UM.SimulationView.compatibilityMode ? UM.Theme.getSize("default_margin").height : 0 right: parent.right @@ -593,56 +671,78 @@ Item handleLabelWidth: UM.Theme.getSize("slider_layerview_background").width // update values when layer data changes - Connections { + Connections + { target: UM.SimulationView onMaxLayersChanged: layerSlider.setUpperValue(UM.SimulationView.currentLayer) onMinimumLayerChanged: layerSlider.setLowerValue(UM.SimulationView.minimumLayer) - onCurrentLayerChanged: layerSlider.setUpperValue(UM.SimulationView.currentLayer) + onCurrentLayerChanged: + { + // Only pause the simulation when the layer was changed manually, not when the simulation is running + if (layerSlider.manuallyChanged) + { + playButton.pauseSimulation() + } + layerSlider.setUpperValue(UM.SimulationView.currentLayer) + } } // make sure the slider handlers show the correct value after switching views - Component.onCompleted: { + Component.onCompleted: + { layerSlider.setLowerValue(UM.SimulationView.minimumLayer) layerSlider.setUpperValue(UM.SimulationView.currentLayer) } } // Play simulation button - Button { + Button + { id: playButton iconSource: "./resources/simulation_resume.svg" style: UM.Theme.styles.small_tool_button visible: !UM.SimulationView.compatibilityMode - anchors { + anchors + { verticalCenter: pathSlider.verticalCenter } property var status: 0 // indicates if it's stopped (0) or playing (1) - onClicked: { - switch(status) { - case 0: { + onClicked: + { + switch(status) + { + case 0: + { resumeSimulation() break } - case 1: { + case 1: + { pauseSimulation() break } } } - function pauseSimulation() { + function pauseSimulation() + { UM.SimulationView.setSimulationRunning(false) iconSource = "./resources/simulation_resume.svg" simulationTimer.stop() status = 0 + layerSlider.manuallyChanged = true + pathSlider.manuallyChanged = true } - function resumeSimulation() { + function resumeSimulation() + { UM.SimulationView.setSimulationRunning(true) iconSource = "./resources/simulation_pause.svg" simulationTimer.start() + layerSlider.manuallyChanged = false + pathSlider.manuallyChanged = false } } @@ -652,7 +752,8 @@ Item interval: 100 running: false repeat: true - onTriggered: { + onTriggered: + { var currentPath = UM.SimulationView.currentPath var numPaths = UM.SimulationView.numPaths var currentLayer = UM.SimulationView.currentLayer @@ -692,12 +793,15 @@ Item UM.SimulationView.setCurrentPath(currentPath+1) } } + // The status must be set here instead of in the resumeSimulation function otherwise it won't work + // correctly, because part of the logic is in this trigger function. playButton.status = 1 } } } - FontMetrics { + FontMetrics + { id: fontMetrics font: UM.Theme.getFont("default") } diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader index 03e279e9eb..de2b9335d8 100644 --- a/plugins/SimulationView/layers3d.shader +++ b/plugins/SimulationView/layers3d.shader @@ -256,6 +256,7 @@ fragment41core = out vec4 frag_color; uniform mediump vec4 u_ambientColor; + uniform mediump vec4 u_minimumAlbedo; uniform highp vec3 u_lightPosition; void main() @@ -263,7 +264,7 @@ fragment41core = mediump vec4 finalColor = vec4(0.0); float alpha = f_color.a; - finalColor.rgb += f_color.rgb * 0.3; + finalColor.rgb += f_color.rgb * 0.2 + u_minimumAlbedo.rgb; highp vec3 normal = normalize(f_normal); highp vec3 light_dir = normalize(u_lightPosition - f_vertex); @@ -285,6 +286,7 @@ u_extruder_opacity = [1.0, 1.0, 1.0, 1.0] u_specularColor = [0.4, 0.4, 0.4, 1.0] u_ambientColor = [0.3, 0.3, 0.3, 0.0] u_diffuseColor = [1.0, 0.79, 0.14, 1.0] +u_minimumAlbedo = [0.1, 0.1, 0.1, 1.0] u_shininess = 20.0 u_show_travel_moves = 0 diff --git a/plugins/SimulationView/plugin.json b/plugins/SimulationView/plugin.json index 0e7bec0626..93df98068f 100644 --- a/plugins/SimulationView/plugin.json +++ b/plugins/SimulationView/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides the Simulation view.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 2e9e557c4a..fd58e68938 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -5,6 +5,7 @@ import json import os import platform import time +from typing import cast, Optional, Set from PyQt5.QtCore import pyqtSlot, QObject @@ -16,7 +17,7 @@ from UM.i18n import i18nCatalog from UM.Logger import Logger from UM.PluginRegistry import PluginRegistry from UM.Qt.Duration import DurationFormat -from typing import cast, Optional + from .SliceInfoJob import SliceInfoJob @@ -95,13 +96,29 @@ class SliceInfo(QObject, Extension): def setSendSliceInfo(self, enabled: bool): Application.getInstance().getPreferences().setValue("info/send_slice_info", enabled) + def _getUserModifiedSettingKeys(self) -> list: + from cura.CuraApplication import CuraApplication + application = cast(CuraApplication, Application.getInstance()) + machine_manager = application.getMachineManager() + global_stack = machine_manager.activeMachine + + user_modified_setting_keys = set() # type: Set[str] + + for stack in [global_stack] + list(global_stack.extruders.values()): + # Get all settings in user_changes and quality_changes + all_keys = stack.userChanges.getAllKeys() | stack.qualityChanges.getAllKeys() + user_modified_setting_keys |= all_keys + + return list(sorted(user_modified_setting_keys)) + def _onWriteStarted(self, output_device): try: if not Application.getInstance().getPreferences().getValue("info/send_slice_info"): Logger.log("d", "'info/send_slice_info' is turned off.") return # Do nothing, user does not want to send data - application = Application.getInstance() + from cura.CuraApplication import CuraApplication + application = cast(CuraApplication, Application.getInstance()) machine_manager = application.getMachineManager() print_information = application.getPrintInformation() @@ -164,6 +181,8 @@ class SliceInfo(QObject, Extension): data["quality_profile"] = global_stack.quality.getMetaData().get("quality_type") + data["user_modified_setting_keys"] = self._getUserModifiedSettingKeys() + data["models"] = [] # Listing all files placed on the build plate for node in DepthFirstIterator(application.getController().getScene().getRoot()): diff --git a/plugins/SliceInfoPlugin/example_data.json b/plugins/SliceInfoPlugin/example_data.json index ec953e0842..5fc4175e60 100644 --- a/plugins/SliceInfoPlugin/example_data.json +++ b/plugins/SliceInfoPlugin/example_data.json @@ -56,6 +56,7 @@ } ], "quality_profile": "fast", + "user_modified_setting_keys": ["layer_height", "wall_line_width", "infill_sparse_density"], "models": [ { "hash": "b72789b9beb5366dff20b1cf501020c3d4d4df7dc2295ecd0fddd0a6436df070", diff --git a/plugins/SliceInfoPlugin/plugin.json b/plugins/SliceInfoPlugin/plugin.json index d1c643266b..939e5ff235 100644 --- a/plugins/SliceInfoPlugin/plugin.json +++ b/plugins/SliceInfoPlugin/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Submits anonymous slice info. Can be disabled through preferences.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/SolidView/plugin.json b/plugins/SolidView/plugin.json index 6d6bda96f0..e70ec224dd 100644 --- a/plugins/SolidView/plugin.json +++ b/plugins/SolidView/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides a normal solid mesh view.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/SupportEraser/plugin.json b/plugins/SupportEraser/plugin.json index 5ccb639913..7af35e0fb5 100644 --- a/plugins/SupportEraser/plugin.json +++ b/plugins/SupportEraser/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Creates an eraser mesh to block the printing of support in certain places", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/Toolbox/plugin.json b/plugins/Toolbox/plugin.json index 12d4042b6b..2557185524 100644 --- a/plugins/Toolbox/plugin.json +++ b/plugins/Toolbox/plugin.json @@ -2,6 +2,6 @@ "name": "Toolbox", "author": "Ultimaker B.V.", "version": "1.0.0", - "api": 4, + "api": 5, "description": "Find, manage and install new Cura packages." } diff --git a/plugins/Toolbox/resources/qml/Toolbox.qml b/plugins/Toolbox/resources/qml/Toolbox.qml index 2a56898503..4fb8192d81 100644 --- a/plugins/Toolbox/resources/qml/Toolbox.qml +++ b/plugins/Toolbox/resources/qml/Toolbox.qml @@ -33,6 +33,7 @@ Window { id: header } + Item { id: mainView @@ -75,6 +76,7 @@ Window visible: toolbox.viewCategory == "installed" } } + ToolboxFooter { id: footer diff --git a/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml b/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml index 04b055ed66..90b92bd832 100644 --- a/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml +++ b/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml @@ -82,9 +82,16 @@ Item } spacing: Math.floor(UM.Theme.getSize("narrow_margin").height) width: childrenRect.width + Label { - text: catalog.i18nc("@label", "Contact") + ":" + text: catalog.i18nc("@label", "Website") + ":" + font: UM.Theme.getFont("very_small") + color: UM.Theme.getColor("text_medium") + } + Label + { + text: catalog.i18nc("@label", "Email") + ":" font: UM.Theme.getFont("very_small") color: UM.Theme.getColor("text_medium") } @@ -100,18 +107,32 @@ Item topMargin: UM.Theme.getSize("default_margin").height } spacing: Math.floor(UM.Theme.getSize("narrow_margin").height) + + Label + { + text: + { + if (details.website) + { + return "" + details.website + "" + } + return "" + } + font: UM.Theme.getFont("very_small") + color: UM.Theme.getColor("text") + linkColor: UM.Theme.getColor("text_link") + onLinkActivated: Qt.openUrlExternally(link) + } + Label { text: { if (details.email) { - return ""+details.name+"" - } - else - { - return ""+details.name+"" + return "" + details.email + "" } + return "" } font: UM.Theme.getFont("very_small") color: UM.Theme.getColor("text") diff --git a/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml b/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml index 1efcde2110..58fea079e9 100644 --- a/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml +++ b/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml @@ -1,14 +1,25 @@ // Copyright (c) 2018 Ultimaker B.V. // Toolbox is released under the terms of the LGPLv3 or higher. -import QtQuick 2.2 +import QtQuick 2.7 import QtQuick.Controls 1.4 import QtQuick.Controls.Styles 1.4 import UM 1.1 as UM Item { + id: base + property var packageData + property var technicalDataSheetUrl: { + var link = undefined + if ("Technical Data Sheet" in packageData.links) + { + link = packageData.links["Technical Data Sheet"] + } + return link + } + anchors.topMargin: UM.Theme.getSize("default_margin").height height: visible ? childrenRect.height : 0 visible: packageData.type == "material" && packageData.has_configs @@ -132,4 +143,25 @@ Item width: Math.floor(table.width * 0.1) } } + + Label + { + id: technical_data_sheet + anchors.top: table.bottom + anchors.topMargin: UM.Theme.getSize("default_margin").height / 2 + visible: base.technicalDataSheetUrl !== undefined + text: + { + if (base.technicalDataSheetUrl !== undefined) + { + return "%2".arg(base.technicalDataSheetUrl).arg("Technical Data Sheet") + } + return "" + } + font: UM.Theme.getFont("very_small") + color: UM.Theme.getColor("text") + linkColor: UM.Theme.getColor("text_link") + onLinkActivated: Qt.openUrlExternally(link) + } + } diff --git a/plugins/Toolbox/resources/qml/ToolboxDetailList.qml b/plugins/Toolbox/resources/qml/ToolboxDetailList.qml index 2b4cd838bf..2e5eae098c 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDetailList.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDetailList.qml @@ -1,7 +1,7 @@ // Copyright (c) 2018 Ultimaker B.V. // Toolbox is released under the terms of the LGPLv3 or higher. -import QtQuick 2.2 +import QtQuick 2.7 import QtQuick.Controls 1.4 import QtQuick.Controls.Styles 1.4 import UM 1.1 as UM diff --git a/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml b/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml index cf4bfcd545..270e8fc1fc 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml @@ -32,7 +32,7 @@ Item width: UM.Theme.getSize("toolbox_thumbnail_medium").width height: UM.Theme.getSize("toolbox_thumbnail_medium").height fillMode: Image.PreserveAspectFit - source: details.icon_url || "../images/logobot.svg" + source: details === null ? "" : (details.icon_url || "../images/logobot.svg") mipmap: true anchors { @@ -55,7 +55,7 @@ Item rightMargin: UM.Theme.getSize("wide_margin").width bottomMargin: UM.Theme.getSize("default_margin").height } - text: details.name || "" + text: details === null ? "" : (details.name || "") font: UM.Theme.getFont("large") color: UM.Theme.getColor("text") wrapMode: Text.WordWrap @@ -114,7 +114,7 @@ Item height: childrenRect.height Label { - text: details.version || catalog.i18nc("@label", "Unknown") + text: details === null ? "" : (details.version || catalog.i18nc("@label", "Unknown")) font: UM.Theme.getFont("very_small") color: UM.Theme.getColor("text") } @@ -122,6 +122,10 @@ Item { text: { + if (details === null) + { + return "" + } var date = new Date(details.last_updated) return date.toLocaleString(UM.Preferences.getValue("general/language")) } @@ -132,6 +136,10 @@ Item { text: { + if (details === null) + { + return "" + } if (details.author_email) { return "" + details.author_name + "" @@ -148,7 +156,7 @@ Item } Label { - text: details.download_count || catalog.i18nc("@label", "Unknown") + text: details === null ? "" : (details.download_count || catalog.i18nc("@label", "Unknown")) font: UM.Theme.getFont("very_small") color: UM.Theme.getColor("text") } diff --git a/plugins/Toolbox/resources/qml/ToolboxDetailTile.qml b/plugins/Toolbox/resources/qml/ToolboxDetailTile.qml index 355fa5dece..d544757d58 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDetailTile.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDetailTile.qml @@ -1,7 +1,7 @@ // Copyright (c) 2018 Ultimaker B.V. // Toolbox is released under the terms of the LGPLv3 or higher. -import QtQuick 2.2 +import QtQuick 2.7 import QtQuick.Controls 1.4 import QtQuick.Controls.Styles 1.4 import UM 1.1 as UM diff --git a/plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml b/plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml index ebd4c006f8..887140bbfa 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml @@ -9,7 +9,8 @@ import UM 1.1 as UM Item { - property int packageCount: (toolbox.viewCategory == "material" && model.type === undefined) ? toolbox.getTotalNumberOfPackagesByAuthor(model.id) : 1 + 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 diff --git a/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml b/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml index 1089fcc51e..3e0dda4f4a 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml @@ -12,7 +12,9 @@ ScrollView width: parent.width height: parent.height style: UM.Theme.styles.scrollview + flickableItem.flickableDirection: Flickable.VerticalFlick + Column { width: base.width @@ -30,7 +32,7 @@ ScrollView id: allPlugins width: parent.width heading: toolbox.viewCategory == "material" ? catalog.i18nc("@label", "Community Contributions") : catalog.i18nc("@label", "Community Plugins") - model: toolbox.viewCategory == "material" ? toolbox.authorsModel : toolbox.packagesModel + model: toolbox.viewCategory == "material" ? toolbox.materialsAvailableModel : toolbox.pluginsAvailableModel } ToolboxDownloadsGrid diff --git a/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcaseTile.qml b/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcaseTile.qml index 15d1ae302c..845bbe8f91 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcaseTile.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcaseTile.qml @@ -9,7 +9,7 @@ import UM 1.1 as UM Rectangle { - property int packageCount: toolbox.viewCategory == "material" ? toolbox.getTotalNumberOfPackagesByAuthor(model.id) : 1 + 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) diff --git a/plugins/Toolbox/resources/qml/ToolboxHeader.qml b/plugins/Toolbox/resources/qml/ToolboxHeader.qml index 9c9f967d54..ca6197d6c3 100644 --- a/plugins/Toolbox/resources/qml/ToolboxHeader.qml +++ b/plugins/Toolbox/resources/qml/ToolboxHeader.qml @@ -21,8 +21,10 @@ Item 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.viewPage != "loading" && toolbox.viewPage != "errored" @@ -36,6 +38,7 @@ Item ToolboxTabButton { + id: materialsTabButton text: catalog.i18nc("@title:tab", "Materials") active: toolbox.viewCategory == "material" && enabled enabled: toolbox.viewPage != "loading" && toolbox.viewPage != "errored" @@ -49,6 +52,7 @@ Item } ToolboxTabButton { + id: installedTabButton text: catalog.i18nc("@title:tab", "Installed") active: toolbox.viewCategory == "installed" anchors diff --git a/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml b/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml index 939cf0b505..e683f89823 100644 --- a/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml +++ b/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml @@ -6,6 +6,7 @@ import QtQuick.Dialogs 1.1 import QtQuick.Window 2.2 import QtQuick.Controls 1.4 import QtQuick.Controls.Styles 1.4 + import UM 1.1 as UM ScrollView @@ -16,6 +17,7 @@ ScrollView height: parent.height style: UM.Theme.styles.scrollview flickableItem.flickableDirection: Flickable.VerticalFlick + Column { spacing: UM.Theme.getSize("default_margin").height diff --git a/plugins/Toolbox/src/AuthorsModel.py b/plugins/Toolbox/src/AuthorsModel.py index 45424d7e42..bea3893504 100644 --- a/plugins/Toolbox/src/AuthorsModel.py +++ b/plugins/Toolbox/src/AuthorsModel.py @@ -33,6 +33,9 @@ class AuthorsModel(ListModel): def _update(self): items = [] + if not self._metadata: + self.setItems([]) + return for author in self._metadata: items.append({ diff --git a/plugins/Toolbox/src/PackagesModel.py b/plugins/Toolbox/src/PackagesModel.py index 8b9199b127..ae4cd7682d 100644 --- a/plugins/Toolbox/src/PackagesModel.py +++ b/plugins/Toolbox/src/PackagesModel.py @@ -5,9 +5,13 @@ 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 + ## Model that holds cura packages. By setting the filter property the instances held by this model can be changed. class PackagesModel(ListModel): def __init__(self, parent = None): @@ -34,6 +38,8 @@ class PackagesModel(ListModel): 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") # List of filters for queries. The result is the union of the each list of results. self._filter = {} # type: Dict[str, str] @@ -45,10 +51,16 @@ class PackagesModel(ListModel): def _update(self): items = [] - for package in self._metadata: + if self._metadata is None: + Logger.logException("w", "Failed to load packages for Toolbox") + self.setItems(items) + return + for package in self._metadata: has_configs = False configs_model = None + + links_dict = {} if "data" in package: if "supported_configs" in package["data"]: if len(package["data"]["supported_configs"]) > 0: @@ -56,41 +68,47 @@ class PackagesModel(ListModel): configs_model = ConfigsModel() configs_model.setConfigs(package["data"]["supported_configs"]) + # 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} + if "author_id" not in package["author"] or "display_name" not in package["author"]: package["author"]["author_id"] = "" package["author"]["display_name"] = "" - # raise Exception("Detected a package with malformed author data.") items.append({ - "id": package["package_id"], - "type": package["package_type"], - "name": package["display_name"], - "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 [] + "id": package["package_id"], + "type": package["package_type"], + "name": package["display_name"], + "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, }) # Filter on all the key-word arguments. for key, value in self._filter.items(): if key is "tags": - key_filter = lambda item, value = value: value in item["tags"] + key_filter = lambda item, v = value: v in item["tags"] elif "*" in value: - key_filter = lambda candidate, key = key, value = value: self._matchRegExp(candidate, key, value) + key_filter = lambda candidate, k = key, v = value: self._matchRegExp(candidate, k, v) else: - key_filter = lambda candidate, key = key, value = value: self._matchString(candidate, key, value) + key_filter = lambda candidate, k = key, v = value: self._matchString(candidate, k, v) items = filter(key_filter, items) # Execute all filters. diff --git a/plugins/Toolbox/src/Toolbox.py b/plugins/Toolbox/src/Toolbox.py index c4205b8ed5..be9fe65004 100644 --- a/plugins/Toolbox/src/Toolbox.py +++ b/plugins/Toolbox/src/Toolbox.py @@ -1,12 +1,11 @@ # Copyright (c) 2018 Ultimaker B.V. # Toolbox is released under the terms of the LGPLv3 or higher. -from typing import Dict, Optional, Union, Any, cast import json import os import tempfile import platform -from typing import cast, List +from typing import cast, Any, Dict, List, Set, TYPE_CHECKING, Tuple, Optional, Union from PyQt5.QtCore import QUrl, QObject, pyqtProperty, pyqtSignal, pyqtSlot from PyQt5.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkReply @@ -20,9 +19,13 @@ from UM.Version import Version import cura from cura.CuraApplication import CuraApplication + from .AuthorsModel import AuthorsModel from .PackagesModel import PackagesModel +if TYPE_CHECKING: + from cura.Settings.GlobalStack import GlobalStack + i18n_catalog = i18nCatalog("cura") @@ -34,19 +37,19 @@ class Toolbox(QObject, Extension): def __init__(self, application: CuraApplication) -> None: super().__init__() - self._application = application #type: CuraApplication + self._application = application # type: CuraApplication - self._sdk_version = None # type: Optional[int] - self._cloud_api_version = None # type: Optional[int] - self._cloud_api_root = None # type: Optional[str] - self._api_url = None # type: Optional[str] + self._sdk_version = None # type: Optional[Union[str, int]] + self._cloud_api_version = None # type: Optional[int] + self._cloud_api_root = None # type: Optional[str] + self._api_url = None # type: Optional[str] # Network: - self._download_request = None #type: Optional[QNetworkRequest] - self._download_reply = None #type: Optional[QNetworkReply] - self._download_progress = 0 #type: float - self._is_downloading = False #type: bool - self._network_manager = None #type: Optional[QNetworkAccessManager] + self._download_request = None # type: Optional[QNetworkRequest] + self._download_reply = None # type: Optional[QNetworkReply] + self._download_progress = 0 # type: float + self._is_downloading = False # type: bool + self._network_manager = None # type: Optional[QNetworkAccessManager] self._request_header = [ b"User-Agent", str.encode( @@ -58,9 +61,10 @@ class Toolbox(QObject, Extension): ) ) ] - self._request_urls = {} # type: Dict[str, QUrl] + self._request_urls = {} # type: Dict[str, QUrl] self._to_update = [] # type: List[str] # Package_ids that are waiting to be updated - self._old_plugin_ids = [] # type: List[str] + self._old_plugin_ids = set() # type: Set[str] + self._old_plugin_metadata = dict() # type: Dict[str, Dict[str, Any]] # Data: self._metadata = { @@ -73,7 +77,7 @@ class Toolbox(QObject, Extension): "materials_available": [], "materials_installed": [], "materials_generic": [] - } # type: Dict[str, List[Any]] + } # type: Dict[str, List[Any]] # Models: self._models = { @@ -83,42 +87,40 @@ class Toolbox(QObject, Extension): "plugins_available": PackagesModel(self), "plugins_installed": PackagesModel(self), "materials_showcase": AuthorsModel(self), - "materials_available": PackagesModel(self), + "materials_available": AuthorsModel(self), "materials_installed": PackagesModel(self), "materials_generic": PackagesModel(self) - } # type: Dict[str, ListModel] + } # type: Dict[str, ListModel] # 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 + 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 = "loading" #type: str + self._view_page = "loading" # 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._active_package = None # type: Optional[Dict[str, Any]] - self._dialog = None #type: Optional[QObject] - self._confirm_reset_dialog = None #type: Optional[QObject] + self._dialog = None # type: Optional[QObject] + self._confirm_reset_dialog = None # type: Optional[QObject] self._resetUninstallVariables() - self._restart_required = False #type: bool + self._restart_required = False # type: bool # variables for the license agreement dialog - self._license_dialog_plugin_name = "" #type: str - self._license_dialog_license_content = "" #type: str - self._license_dialog_plugin_file_location = "" #type: str - self._restart_dialog_message = "" #type: str + self._license_dialog_plugin_name = "" # type: str + self._license_dialog_license_content = "" # type: str + self._license_dialog_plugin_file_location = "" # type: str + self._restart_dialog_message = "" # type: str self._application.initializationFinished.connect(self._onAppInitialized) - - # Signals: # -------------------------------------------------------------------------- # Downloading changes @@ -137,11 +139,11 @@ class Toolbox(QObject, Extension): showLicenseDialog = pyqtSignal() uninstallVariablesChanged = pyqtSignal() - def _resetUninstallVariables(self): - self._package_id_to_uninstall = None + def _resetUninstallVariables(self) -> None: + self._package_id_to_uninstall = None # type: Optional[str] self._package_name_to_uninstall = "" - self._package_used_materials = [] - self._package_used_qualities = [] + self._package_used_materials = [] # type: List[Tuple[GlobalStack, str, str]] + self._package_used_qualities = [] # type: List[Tuple[GlobalStack, str, str]] @pyqtSlot(result = str) def getLicenseDialogPluginName(self) -> str: @@ -205,14 +207,14 @@ class Toolbox(QObject, Extension): return cura.CuraVersion.CuraCloudAPIVersion # type: ignore # Get the packages version depending on Cura version settings. - def _getSDKVersion(self) -> int: + def _getSDKVersion(self) -> Union[int, str]: if not hasattr(cura, "CuraVersion"): return self._plugin_registry.APIVersion - if not hasattr(cura.CuraVersion, "CuraSDKVersion"): # type: ignore + if not hasattr(cura.CuraVersion, "CuraSDKVersion"): # type: ignore return self._plugin_registry.APIVersion - if not cura.CuraVersion.CuraSDKVersion: # type: ignore + if not cura.CuraVersion.CuraSDKVersion: # type: ignore return self._plugin_registry.APIVersion - return cura.CuraVersion.CuraSDKVersion # type: ignore + return cura.CuraVersion.CuraSDKVersion # type: ignore @pyqtSlot() def browsePackages(self) -> None: @@ -229,10 +231,12 @@ class Toolbox(QObject, Extension): # Make remote requests: self._makeRequestByType("packages") self._makeRequestByType("authors") - self._makeRequestByType("plugins_showcase") - self._makeRequestByType("materials_showcase") - self._makeRequestByType("materials_available") - self._makeRequestByType("materials_generic") + # TODO: Uncomment in the future when the tag-filtered api calls work in the cloud server + # self._makeRequestByType("plugins_showcase") + # self._makeRequestByType("plugins_available") + # self._makeRequestByType("materials_showcase") + # self._makeRequestByType("materials_available") + # self._makeRequestByType("materials_generic") # Gather installed packages: self._updateInstalledModels() @@ -285,8 +289,8 @@ class Toolbox(QObject, Extension): installed_package_ids = self._package_manager.getAllInstalledPackageIDs() scheduled_to_remove_package_ids = self._package_manager.getToRemovePackageIDs() - self._old_plugin_ids = [] - self._old_plugin_metadata = [] # type: List[Dict[str, Any]] + 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 @@ -296,12 +300,20 @@ class Toolbox(QObject, Extension): old_metadata = self._plugin_registry.getMetaData(plugin_id) new_metadata = self._convertPluginMetadata(old_metadata) - self._old_plugin_ids.append(plugin_id) - self._old_plugin_metadata.append(new_metadata) + 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: - self._metadata["plugins_installed"] = all_packages["plugin"] + self._old_plugin_metadata + # 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._metadata["plugins_installed"] = all_packages["plugin"] + list(self._old_plugin_metadata.values()) self._models["plugins_installed"].setMetadata(self._metadata["plugins_installed"]) self.metadataChanged.emit() if "material" in all_packages: @@ -344,26 +356,26 @@ class Toolbox(QObject, Extension): self.uninstall(package_id) @pyqtProperty(str, notify = uninstallVariablesChanged) - def pluginToUninstall(self): + def pluginToUninstall(self) -> str: return self._package_name_to_uninstall @pyqtProperty(str, notify = uninstallVariablesChanged) - def uninstallUsedMaterials(self): + 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): + 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): + def closeConfirmResetDialog(self) -> None: if self._confirm_reset_dialog is not None: self._confirm_reset_dialog.close() ## Uses "uninstall variables" to reset qualities and materials, then uninstall # It's used as an action on Confirm reset on Uninstall @pyqtSlot() - def resetMaterialsQualitiesAndUninstall(self): + def resetMaterialsQualitiesAndUninstall(self) -> None: application = CuraApplication.getInstance() material_manager = application.getMaterialManager() quality_manager = application.getQualityManager() @@ -376,9 +388,9 @@ class Toolbox(QObject, Extension): default_quality_group = quality_manager.getDefaultQualityType(global_stack) machine_manager.setQualityGroup(default_quality_group, global_stack = global_stack) - self._markPackageMaterialsAsToBeUninstalled(self._package_id_to_uninstall) - - self.uninstall(self._package_id_to_uninstall) + 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() @@ -471,12 +483,14 @@ class Toolbox(QObject, Extension): # -------------------------------------------------------------------------- @pyqtSlot(str, result = bool) def canUpdate(self, package_id: str) -> bool: - if self.isOldPlugin(package_id): - return True - local_package = self._package_manager.getInstalledPackageInfo(package_id) if local_package is None: - return False + Logger.log("i", "Could not find package [%s] as installed in the package manager, fall back to check the old plugins", + package_id) + local_package = self.getOldPluginPackageMetadata(package_id) + if local_package is None: + Logger.log("i", "Could not find package [%s] in the old plugins", package_id) + return False remote_package = self.getRemotePackage(package_id) if remote_package is None: @@ -484,7 +498,16 @@ class Toolbox(QObject, Extension): local_version = Version(local_package["package_version"]) remote_version = Version(remote_package["package_version"]) - return remote_version > local_version + can_upgrade = False + if remote_version > local_version: + can_upgrade = True + # A package with the same version can be built to have different SDK versions. So, for a package with the same + # version, we also need to check if the current one has a lower SDK version. If so, this package should also + # be upgradable. + elif remote_version == local_version: + can_upgrade = local_package.get("sdk_version", 0) < remote_package.get("sdk_version", 0) + + return can_upgrade @pyqtSlot(str, result = bool) def canDowngrade(self, package_id: str) -> bool: @@ -504,7 +527,11 @@ class Toolbox(QObject, Extension): @pyqtSlot(str, result = bool) def isInstalled(self, package_id: str) -> bool: - return self._package_manager.isPackageInstalled(package_id) + 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: @@ -514,12 +541,14 @@ class Toolbox(QObject, Extension): 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 getTotalNumberOfPackagesByAuthor(self, author_id: str) -> int: + def getTotalNumberOfMaterialPackagesByAuthor(self, author_id: str) -> int: count = 0 - for package in self._metadata["materials_available"]: - if package["author"]["author_id"] == author_id: - count += 1 + for package in self._metadata["packages"]: + if package["package_type"] == "material": + if package["author"]["author_id"] == author_id: + count += 1 return count @pyqtSlot(str, result = bool) @@ -529,12 +558,14 @@ class Toolbox(QObject, Extension): return False # Check for plugins that were installed with the old plugin browser - @pyqtSlot(str, result = bool) def isOldPlugin(self, plugin_id: str) -> bool: if plugin_id in self._old_plugin_ids: return True return False + def getOldPluginPackageMetadata(self, plugin_id: str) -> Optional[Dict[str, Any]]: + return self._old_plugin_metadata.get(plugin_id) + def loadingComplete(self) -> bool: populated = 0 for list in self._metadata.items(): @@ -606,8 +637,22 @@ class Toolbox(QObject, Extension): self.resetDownload() return + # HACK: These request are not handled independently at this moment, but together from the "packages" call + do_not_handle = [ + "materials_available", + "materials_showcase", + "materials_generic", + "plugins_available", + "plugins_showcase", + ] + if reply.operation() == QNetworkAccessManager.GetOperation: for type, url in self._request_urls.items(): + + # HACK: Do nothing because we'll handle these from the "packages" call + if type in do_not_handle: + continue + if reply.url() == url: if reply.attribute(QNetworkRequest.HttpStatusCodeAttribute) == 200: try: @@ -623,25 +668,16 @@ class Toolbox(QObject, Extension): if not self._models[type]: Logger.log("e", "Could not find the %s model.", type) break - - # HACK: Eventually get rid of the code from here... - if type is "plugins_showcase" or type is "materials_showcase": - self._metadata["plugins_showcase"] = json_data["data"]["plugin"]["packages"] - self._models["plugins_showcase"].setMetadata(self._metadata["plugins_showcase"]) - self._metadata["materials_showcase"] = json_data["data"]["material"]["authors"] - self._models["materials_showcase"].setMetadata(self._metadata["materials_showcase"]) - else: - # ...until here. - # This hack arises for multiple reasons but the main - # one is because there are not separate API calls - # for different kinds of showcases. - self._metadata[type] = json_data["data"] - self._models[type].setMetadata(self._metadata[type]) + + self._metadata[type] = json_data["data"] + self._models[type].setMetadata(self._metadata[type]) # Do some auto filtering # TODO: Make multiple API calls in the future to handle this if type is "packages": self._models[type].setFilter({"type": "plugin"}) + self.buildMaterialsModels() + self.buildPluginsModels() if type is "authors": self._models[type].setFilter({"package_types": "material"}) if type is "materials_generic": @@ -680,7 +716,7 @@ class Toolbox(QObject, Extension): self._temp_plugin_file.close() self._onDownloadComplete(file_path) - def _onDownloadComplete(self, file_path: str): + def _onDownloadComplete(self, file_path: str) -> None: Logger.log("i", "Toolbox: Download complete.") package_info = self._package_manager.getPackageInfo(file_path) if not package_info: @@ -739,9 +775,7 @@ class Toolbox(QObject, Extension): def viewPage(self) -> str: return self._view_page - - - # Expose Models: + # Exposed Models: # -------------------------------------------------------------------------- @pyqtProperty(QObject, notify = metadataChanged) def authorsModel(self) -> AuthorsModel: @@ -755,6 +789,10 @@ class Toolbox(QObject, Extension): def pluginsShowcaseModel(self) -> PackagesModel: return cast(PackagesModel, self._models["plugins_showcase"]) + @pyqtProperty(QObject, notify = metadataChanged) + def pluginsAvailableModel(self) -> PackagesModel: + return cast(PackagesModel, self._models["plugins_available"]) + @pyqtProperty(QObject, notify = metadataChanged) def pluginsInstalledModel(self) -> PackagesModel: return cast(PackagesModel, self._models["plugins_installed"]) @@ -763,6 +801,10 @@ class Toolbox(QObject, Extension): def materialsShowcaseModel(self) -> AuthorsModel: return cast(AuthorsModel, self._models["materials_showcase"]) + @pyqtProperty(QObject, notify = metadataChanged) + def materialsAvailableModel(self) -> AuthorsModel: + return cast(AuthorsModel, self._models["materials_available"]) + @pyqtProperty(QObject, notify = metadataChanged) def materialsInstalledModel(self) -> PackagesModel: return cast(PackagesModel, self._models["materials_installed"]) @@ -771,8 +813,6 @@ class Toolbox(QObject, Extension): def materialsGenericModel(self) -> PackagesModel: return cast(PackagesModel, self._models["materials_generic"]) - - # Filter Models: # -------------------------------------------------------------------------- @pyqtSlot(str, str, str) @@ -798,3 +838,48 @@ class Toolbox(QObject, Extension): return self._models[model_type].setFilter({}) self.filterChanged.emit() + + # HACK(S): + # -------------------------------------------------------------------------- + def buildMaterialsModels(self) -> None: + self._metadata["materials_showcase"] = [] + self._metadata["materials_available"] = [] + + processed_authors = [] # type: List[str] + + for item in self._metadata["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"]: + self._metadata["materials_generic"].append(item) + else: + if "showcase" in item["tags"]: + self._metadata["materials_showcase"].append(author) + else: + self._metadata["materials_available"].append(author) + + processed_authors.append(author["author_id"]) + + self._models["materials_showcase"].setMetadata(self._metadata["materials_showcase"]) + self._models["materials_available"].setMetadata(self._metadata["materials_available"]) + self._models["materials_generic"].setMetadata(self._metadata["materials_generic"]) + + def buildPluginsModels(self) -> None: + self._metadata["plugins_showcase"] = [] + self._metadata["plugins_available"] = [] + + for item in self._metadata["packages"]: + if item["package_type"] == "plugin": + + if "showcase" in item["tags"]: + self._metadata["plugins_showcase"].append(item) + else: + self._metadata["plugins_available"].append(item) + + self._models["plugins_showcase"].setMetadata(self._metadata["plugins_showcase"]) + self._models["plugins_available"].setMetadata(self._metadata["plugins_available"]) diff --git a/plugins/UFPWriter/UFPWriter.py b/plugins/UFPWriter/UFPWriter.py index 9344bf54da..d318a0e77d 100644 --- a/plugins/UFPWriter/UFPWriter.py +++ b/plugins/UFPWriter/UFPWriter.py @@ -1,5 +1,6 @@ #Copyright (c) 2018 Ultimaker B.V. #Cura is released under the terms of the LGPLv3 or higher. + from typing import cast from Charon.VirtualFile import VirtualFile #To open UFP files. @@ -9,10 +10,12 @@ from io import StringIO #For converting g-code to bytes. from UM.Application import Application from UM.Logger import Logger from UM.Mesh.MeshWriter import MeshWriter #The writer we need to implement. +from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType from UM.PluginRegistry import PluginRegistry #To get the g-code writer. from PyQt5.QtCore import QBuffer from cura.Snapshot import Snapshot +from cura.Utils.Threading import call_on_qt_thread from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") @@ -20,7 +23,16 @@ catalog = i18nCatalog("cura") class UFPWriter(MeshWriter): def __init__(self): - super().__init__() + super().__init__(add_to_recent_files = False) + + MimeTypeDatabase.addMimeType( + MimeType( + name = "application/x-cura-stl-file", + comment = "Cura UFP File", + suffixes = ["ufp"] + ) + ) + self._snapshot = None Application.getInstance().getOutputDeviceManager().writeStarted.connect(self._createSnapshot) @@ -29,6 +41,11 @@ class UFPWriter(MeshWriter): Logger.log("d", "Creating thumbnail image...") self._snapshot = Snapshot.snapshot(width = 300, height = 300) + # This needs to be called on the main thread (Qt thread) because the serialization of material containers can + # trigger loading other containers. Because those loaded containers are QtObjects, they must be created on the + # Qt thread. The File read/write operations right now are executed on separated threads because they are scheduled + # by the Job class. + @call_on_qt_thread def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode): archive = VirtualFile() archive.openStream(stream, "application/x-ufp", OpenMode.WriteOnly) @@ -60,5 +77,50 @@ class UFPWriter(MeshWriter): else: Logger.log("d", "Thumbnail not created, cannot save it") + # Store the material. + application = Application.getInstance() + machine_manager = application.getMachineManager() + material_manager = application.getMaterialManager() + global_stack = machine_manager.activeMachine + + material_extension = "xml.fdm_material" + material_mime_type = "application/x-ultimaker-material-profile" + + try: + archive.addContentType(extension = material_extension, mime_type = material_mime_type) + except: + Logger.log("w", "The material extension: %s was already added", material_extension) + + added_materials = [] + for extruder_stack in global_stack.extruders.values(): + material = extruder_stack.material + material_file_name = material.getMetaData()["base_file"] + ".xml.fdm_material" + material_file_name = "/Materials/" + material_file_name + + #Same material cannot be added + if material_file_name in added_materials: + continue + + material_root_id = material.getMetaDataEntry("base_file") + material_group = material_manager.getMaterialGroup(material_root_id) + if material_group is None: + Logger.log("e", "Cannot find material container with root id [%s]", material_root_id) + return False + + material_container = material_group.root_material_node.getContainer() + try: + serialized_material = material_container.serialize() + except NotImplementedError: + Logger.log("e", "Unable serialize material container with root id: %s", material_root_id) + return False + + material_file = archive.getStream(material_file_name) + material_file.write(serialized_material.encode("UTF-8")) + archive.addRelation(virtual_path = material_file_name, + relation_type = "http://schemas.ultimaker.org/package/2018/relationships/material", + origin = "/3D/model.gcode") + + added_materials.append(material_file_name) + archive.close() return True diff --git a/plugins/UFPWriter/__init__.py b/plugins/UFPWriter/__init__.py index a2ec99044f..9db6b042f8 100644 --- a/plugins/UFPWriter/__init__.py +++ b/plugins/UFPWriter/__init__.py @@ -11,16 +11,6 @@ except ImportError: from UM.i18n import i18nCatalog #To translate the file format description. from UM.Mesh.MeshWriter import MeshWriter #For the binary mode flag. -from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType - - -MimeTypeDatabase.addMimeType( - MimeType( - name = "application/x-cura-stl-file", - comment = "Cura UFP File", - suffixes = ["ufp"] - ) -) i18n_catalog = i18nCatalog("cura") diff --git a/plugins/UFPWriter/plugin.json b/plugins/UFPWriter/plugin.json index 7d10b89ad4..ab590353e0 100644 --- a/plugins/UFPWriter/plugin.json +++ b/plugins/UFPWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for writing Ultimaker Format Packages.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/ClusterControlItem.qml b/plugins/UM3NetworkPrinting/ClusterControlItem.qml deleted file mode 100644 index 5cf550955c..0000000000 --- a/plugins/UM3NetworkPrinting/ClusterControlItem.qml +++ /dev/null @@ -1,241 +0,0 @@ -import QtQuick 2.2 -import QtQuick.Controls 1.4 - -import UM 1.3 as UM -import Cura 1.0 as Cura - -Component -{ - Rectangle - { - id: base - property var manager: Cura.MachineManager.printerOutputDevices[0] - property var lineColor: "#DCDCDC" // TODO: Should be linked to theme. - property var cornerRadius: 4 * screenScaleFactor // TODO: Should be linked to theme. - - visible: manager != null - anchors.fill: parent - color: UM.Theme.getColor("viewport_background") - - UM.I18nCatalog - { - id: catalog - name: "cura" - } - - Label - { - id: activePrintersLabel - font: UM.Theme.getFont("large") - anchors.horizontalCenter: parent.horizontalCenter - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.top: parent.top - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right:parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - text: Cura.MachineManager.printerOutputDevices[0].name - elide: Text.ElideRight - } - - Rectangle - { - id: printJobArea - border.width: UM.Theme.getSize("default_lining").width - border.color: lineColor - anchors.top: activePrintersLabel.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - anchors.rightMargin:UM.Theme.getSize("default_margin").width - radius: cornerRadius - height: childrenRect.height - - Item - { - id: printJobTitleBar - width: parent.width - height: printJobTitleLabel.height + 2 * UM.Theme.getSize("default_margin").height - - Label - { - id: printJobTitleLabel - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.top: parent.top - anchors.topMargin: UM.Theme.getSize("default_margin").height - text: catalog.i18nc("@title", "Print jobs") - font: UM.Theme.getFont("default") - opacity: 0.75 - } - Rectangle - { - anchors.bottom: parent.bottom - height: UM.Theme.getSize("default_lining").width - color: lineColor - width: parent.width - } - } - - Column - { - id: printJobColumn - anchors.top: printJobTitleBar.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - - Item - { - width: parent.width - height: childrenRect.height - opacity: 0.65 - Label - { - text: catalog.i18nc("@label", "Printing") - font: UM.Theme.getFont("very_small") - - } - Label - { - text: manager.activePrintJobs.length - font: UM.Theme.getFont("small") - anchors.right: parent.right - } - } - Item - { - width: parent.width - height: childrenRect.height - opacity: 0.65 - Label - { - text: catalog.i18nc("@label", "Queued") - font: UM.Theme.getFont("very_small") - } - Label - { - text: manager.queuedPrintJobs.length - font: UM.Theme.getFont("small") - anchors.right: parent.right - } - } - } - OpenPanelButton - { - anchors.top: printJobColumn.bottom - anchors.left: parent.left - anchors.right: parent.right - anchors.margins: UM.Theme.getSize("default_margin").height - id: configButton - onClicked: base.manager.openPrintJobControlPanel() - text: catalog.i18nc("@action:button", "View print jobs") - } - - Item - { - // spacer - anchors.top: configButton.bottom - width: UM.Theme.getSize("default_margin").width - height: UM.Theme.getSize("default_margin").height - } - } - - - Rectangle - { - id: printersArea - border.width: UM.Theme.getSize("default_lining").width - border.color: lineColor - anchors.top: printJobArea.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - anchors.rightMargin:UM.Theme.getSize("default_margin").width - radius: cornerRadius - height: childrenRect.height - - Item - { - id: printersTitleBar - width: parent.width - height: printJobTitleLabel.height + 2 * UM.Theme.getSize("default_margin").height - - Label - { - id: printersTitleLabel - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.top: parent.top - anchors.topMargin: UM.Theme.getSize("default_margin").height - text: catalog.i18nc("@label:title", "Printers") - font: UM.Theme.getFont("default") - opacity: 0.75 - } - Rectangle - { - anchors.bottom: parent.bottom - height: UM.Theme.getSize("default_lining").width - color: lineColor - width: parent.width - } - } - Column - { - id: printersColumn - anchors.top: printersTitleBar.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - - Repeater - { - model: manager.connectedPrintersTypeCount - Item - { - width: parent.width - height: childrenRect.height - opacity: 0.65 - Label - { - text: modelData.machine_type - font: UM.Theme.getFont("very_small") - } - - Label - { - text: modelData.count - font: UM.Theme.getFont("small") - anchors.right: parent.right - } - } - } - } - OpenPanelButton - { - anchors.top: printersColumn.bottom - anchors.left: parent.left - anchors.right: parent.right - anchors.margins: UM.Theme.getSize("default_margin").height - id: printerConfigButton - onClicked: base.manager.openPrinterControlPanel() - - text: catalog.i18nc("@action:button", "View printers") - } - - Item - { - // spacer - anchors.top: printerConfigButton.bottom - width: UM.Theme.getSize("default_margin").width - height: UM.Theme.getSize("default_margin").height - } - } - } -} diff --git a/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml b/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml deleted file mode 100644 index 0e86d55de8..0000000000 --- a/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml +++ /dev/null @@ -1,118 +0,0 @@ -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 - -Component -{ - Rectangle - { - id: monitorFrame - width: maximumWidth - height: maximumHeight - color: UM.Theme.getColor("viewport_background") - property var emphasisColor: UM.Theme.getColor("setting_control_border_highlight") - property var lineColor: "#DCDCDC" // TODO: Should be linked to theme. - property var cornerRadius: 4 * screenScaleFactor // TODO: Should be linked to theme. - - UM.I18nCatalog - { - id: catalog - name: "cura" - } - - Label - { - id: activePrintersLabel - font: UM.Theme.getFont("large") - - anchors { - top: parent.top - topMargin: UM.Theme.getSize("default_margin").height * 2 // a bit more spacing to give it some breathing room - horizontalCenter: parent.horizontalCenter - } - - text: OutputDevice.printers.length == 0 ? catalog.i18nc("@label: arg 1 is group name", "%1 is not set up to host a group of connected Ultimaker 3 printers").arg(Cura.MachineManager.printerOutputDevices[0].name) : "" - - visible: OutputDevice.printers.length == 0 - } - - Item - { - anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.top: parent.top - anchors.horizontalCenter: parent.horizontalCenter - - width: Math.min(800 * screenScaleFactor, maximumWidth) - height: children.height - visible: OutputDevice.printers.length != 0 - - Label - { - id: addRemovePrintersLabel - anchors.right: parent.right - text: catalog.i18nc("@label link to connect manager", "Add/Remove printers") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - linkColor: UM.Theme.getColor("text_link") - } - - MouseArea - { - anchors.fill: addRemovePrintersLabel - hoverEnabled: true - onClicked: Cura.MachineManager.printerOutputDevices[0].openPrinterControlPanel() - onEntered: addRemovePrintersLabel.font.underline = true - onExited: addRemovePrintersLabel.font.underline = false - } - } - - ScrollView - { - id: printerScrollView - anchors.margins: UM.Theme.getSize("default_margin").width - anchors.top: activePrintersLabel.bottom - anchors.bottom: parent.bottom - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_lining").width // To ensure border can be drawn. - anchors.rightMargin: UM.Theme.getSize("default_lining").width - anchors.right: parent.right - - ListView - { - anchors.fill: parent - spacing: -UM.Theme.getSize("default_lining").height - - model: OutputDevice.printers - - delegate: PrinterInfoBlock - { - printer: modelData - width: Math.min(800 * screenScaleFactor, maximumWidth) - height: 125 * screenScaleFactor - - // Add a 1 pix margin, as the border is sometimes cut off otherwise. - anchors.horizontalCenter: parent.horizontalCenter - } - } - } - - PrinterVideoStream - { - visible: OutputDevice.activePrinter != null - anchors.fill:parent - } - - onVisibleChanged: - { - if (!monitorFrame.visible) - { - // After switching the Tab ensure that active printer is Null, the video stream image - // might be active - OutputDevice.setActivePrinter(null) - } - } - } -} diff --git a/plugins/UM3NetworkPrinting/OpenPanelButton.qml b/plugins/UM3NetworkPrinting/OpenPanelButton.qml deleted file mode 100644 index 4bc1728f76..0000000000 --- a/plugins/UM3NetworkPrinting/OpenPanelButton.qml +++ /dev/null @@ -1,71 +0,0 @@ -import QtQuick 2.2 -import QtQuick.Controls 1.1 -import QtQuick.Controls.Styles 1.1 - -import UM 1.1 as UM - -Button { - objectName: "openPanelSaveAreaButton" - id: openPanelSaveAreaButton - - UM.I18nCatalog { id: catalog; name: "cura"; } - - height: UM.Theme.getSize("save_button_save_to_button").height - tooltip: catalog.i18nc("@info:tooltip", "Opens the print jobs page with your default web browser.") - text: catalog.i18nc("@action:button", "View print jobs") - - // FIXME: This button style is copied and duplicated from SaveButton.qml - style: 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("print_button_ready_pressed_border"); - else if(control.hovered) - return UM.Theme.getColor("print_button_ready_hovered_border"); - else - return UM.Theme.getColor("print_button_ready_border"); - } - color: - { - if(!control.enabled) - return UM.Theme.getColor("action_button_disabled"); - else if(control.pressed) - return UM.Theme.getColor("print_button_ready_pressed"); - else if(control.hovered) - return UM.Theme.getColor("print_button_ready_hovered"); - else - return UM.Theme.getColor("print_button_ready"); - } - - Behavior on color { ColorAnimation { duration: 50; } } - - implicitWidth: actualLabel.contentWidth + (UM.Theme.getSize("sidebar_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("print_button_ready_text"); - else if(control.hovered) - return UM.Theme.getColor("print_button_ready_text"); - else - return UM.Theme.getColor("print_button_ready_text"); - } - font: UM.Theme.getFont("action_button") - text: control.text; - } - } - label: Item { } - } - - -} diff --git a/plugins/UM3NetworkPrinting/PrintCoreConfiguration.qml b/plugins/UM3NetworkPrinting/PrintCoreConfiguration.qml deleted file mode 100644 index 267516091b..0000000000 --- a/plugins/UM3NetworkPrinting/PrintCoreConfiguration.qml +++ /dev/null @@ -1,33 +0,0 @@ -import QtQuick 2.2 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 - -import UM 1.2 as UM - - -Item -{ - id: extruderInfo - property var printCoreConfiguration - - width: Math.round(parent.width / 2) - height: childrenRect.height - Label - { - id: materialLabel - text: printCoreConfiguration.activeMaterial != null ? printCoreConfiguration.activeMaterial.name : "" - elide: Text.ElideRight - width: parent.width - font: UM.Theme.getFont("very_small") - } - Label - { - id: printCoreLabel - text: printCoreConfiguration.hotendID - anchors.top: materialLabel.bottom - elide: Text.ElideRight - width: parent.width - font: UM.Theme.getFont("very_small") - opacity: 0.5 - } -} diff --git a/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml b/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml deleted file mode 100644 index 0217767a40..0000000000 --- a/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml +++ /dev/null @@ -1,431 +0,0 @@ -import QtQuick 2.2 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 - -import UM 1.3 as UM - -Rectangle -{ - function strPadLeft(string, pad, length) - { - return (new Array(length + 1).join(pad) + string).slice(-length); - } - - function getPrettyTime(time) - { - return OutputDevice.formatDuration(time) - } - - function formatPrintJobPercent(printJob) - { - if (printJob == null) - { - return ""; - } - if (printJob.timeTotal === 0) - { - return ""; - } - return Math.min(100, Math.round(printJob.timeElapsed / printJob.timeTotal * 100)) + "%"; - } - - function printerStatusText(printer) - { - switch (printer.state) - { - case "pre_print": - return catalog.i18nc("@label:status", "Preparing to print") - case "printing": - return catalog.i18nc("@label:status", "Printing"); - case "idle": - return catalog.i18nc("@label:status", "Available"); - case "unreachable": - return catalog.i18nc("@label:status", "Lost connection with the printer"); - case "maintenance": - return catalog.i18nc("@label:status", "Unavailable"); - default: - return catalog.i18nc("@label:status", "Unknown"); - } - } - - id: printerDelegate - - property var printer: null - property var printJob: printer != null ? printer.activePrintJob: null - - border.width: UM.Theme.getSize("default_lining").width - border.color: mouse.containsMouse ? emphasisColor : lineColor - z: mouse.containsMouse ? 1 : 0 // Push this item up a bit on mouse over to ensure that the highlighted bottom border is visible. - - MouseArea - { - id: mouse - anchors.fill:parent - onClicked: OutputDevice.setActivePrinter(printer) - hoverEnabled: true; - - // Only clickable if no printer is selected - enabled: OutputDevice.activePrinter == null && printer.state !== "unreachable" - } - - Row - { - anchors.left: parent.left - anchors.right: parent.right - anchors.top: parent.top - anchors.bottom: parent.bottom - anchors.margins: UM.Theme.getSize("default_margin").width - - Rectangle - { - width: Math.round(parent.width / 3) - height: parent.height - - Label // Print job name - { - id: jobNameLabel - anchors.top: parent.top - anchors.left: parent.left - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - - text: printJob != null ? printJob.name : "" - font: UM.Theme.getFont("default_bold") - elide: Text.ElideRight - - } - - Label - { - id: jobOwnerLabel - anchors.top: jobNameLabel.bottom - anchors.left: parent.left - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - text: printJob != null ? printJob.owner : "" - opacity: 0.50 - elide: Text.ElideRight - } - - Label - { - id: totalTimeLabel - anchors.bottom: parent.bottom - anchors.left: parent.left - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - text: printJob != null ? getPrettyTime(printJob.timeTotal) : "" - opacity: 0.65 - font: UM.Theme.getFont("default") - elide: Text.ElideRight - } - } - - Rectangle - { - width: Math.round(parent.width / 3 * 2) - height: parent.height - - Label // Friendly machine name - { - id: printerNameLabel - anchors.top: parent.top - anchors.left: parent.left - width: Math.round(parent.width / 2 - UM.Theme.getSize("default_margin").width - showCameraIcon.width) - text: printer.name - font: UM.Theme.getFont("default_bold") - elide: Text.ElideRight - } - - Label // Machine variant - { - id: printerTypeLabel - anchors.top: printerNameLabel.bottom - width: Math.round(parent.width / 2 - UM.Theme.getSize("default_margin").width) - text: printer.type - anchors.left: parent.left - elide: Text.ElideRight - font: UM.Theme.getFont("very_small") - opacity: 0.50 - } - - Rectangle // Camera icon - { - id: showCameraIcon - width: 40 * screenScaleFactor - height: width - radius: width - anchors.right: printProgressArea.left - anchors.rightMargin: UM.Theme.getSize("default_margin").width - color: emphasisColor - opacity: printer != null && printer.state === "unreachable" ? 0.3 : 1 - - Image - { - width: parent.width - height: width - anchors.right: parent.right - anchors.rightMargin: parent.rightMargin - source: "camera-icon.svg" - } - } - - Row // PrintCore config - { - id: extruderInfo - anchors.bottom: parent.bottom - - width: Math.round(parent.width / 2 - UM.Theme.getSize("default_margin").width) - height: childrenRect.height - - spacing: UM.Theme.getSize("default_margin").width - - PrintCoreConfiguration - { - id: leftExtruderInfo - width: Math.round((parent.width - extruderSeperator.width) / 2) - printCoreConfiguration: printer.extruders[0] - } - - Rectangle - { - id: extruderSeperator - width: UM.Theme.getSize("default_lining").width - height: parent.height - color: lineColor - } - - PrintCoreConfiguration - { - id: rightExtruderInfo - width: Math.round((parent.width - extruderSeperator.width) / 2) - printCoreConfiguration: printer.extruders[1] - } - } - - Rectangle // Print progress - { - id: printProgressArea - anchors.right: parent.right - anchors.top: parent.top - height: showExtended ? parent.height: printProgressTitleBar.height - width: Math.round(parent.width / 2 - UM.Theme.getSize("default_margin").width) - border.width: UM.Theme.getSize("default_lining").width - border.color: lineColor - radius: cornerRadius - property var showExtended: { - if(printJob != null) - { - var extendStates = ["sent_to_printer", "wait_for_configuration", "printing", "pre_print", "post_print", "wait_cleanup", "queued"]; - return extendStates.indexOf(printJob.state) !== -1; - } - return printer.state == "disabled" - } - - Item // Status and Percent - { - id: printProgressTitleBar - - property var showPercent: { - return printJob != null && (["printing", "post_print", "pre_print", "sent_to_printer"].indexOf(printJob.state) !== -1); - } - - width: parent.width - //TODO: hardcoded value - height: 40 * screenScaleFactor - anchors.left: parent.left - - Label - { - id: statusText - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: progressText.left - anchors.rightMargin: UM.Theme.getSize("default_margin").width - anchors.verticalCenter: parent.verticalCenter - text: { - if (printer.state == "disabled") - { - return catalog.i18nc("@label:status", "Disabled"); - } - - if (printer.state === "unreachable") - { - return printerStatusText(printer); - } - - if (printJob != null) - { - switch (printJob.state) - { - case "printing": - case "post_print": - return catalog.i18nc("@label:status", "Printing") - case "wait_for_configuration": - return catalog.i18nc("@label:status", "Reserved") - case "wait_cleanup": - case "wait_user_action": - return catalog.i18nc("@label:status", "Finished") - case "pre_print": - case "sent_to_printer": - return catalog.i18nc("@label", "Preparing to print") - case "queued": - return catalog.i18nc("@label:status", "Action required"); - case "pausing": - case "paused": - return catalog.i18nc("@label:status", "Paused"); - case "resuming": - return catalog.i18nc("@label:status", "Resuming"); - case "aborted": - return catalog.i18nc("@label:status", "Print aborted"); - default: - // If print job has unknown status show printer.status - return printerStatusText(printer); - } - } - return printerStatusText(printer); - } - - elide: Text.ElideRight - font: UM.Theme.getFont("small") - } - - Label - { - id: progressText - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - anchors.top: statusText.top - - text: formatPrintJobPercent(printJob) - visible: printProgressTitleBar.showPercent - //TODO: Hardcoded value - opacity: 0.65 - font: UM.Theme.getFont("very_small") - } - - Image - { - width: statusText.height - height: width - anchors.right: parent.right - anchors.rightMargin: UM.Theme.getSize("default_margin").width - anchors.top: statusText.top - - visible: !printProgressTitleBar.showPercent - - source: { - if (printer.state == "disabled") - { - return "blocked-icon.svg"; - } - - if (printer.state === "unreachable") - { - return ""; - } - - if (printJob != null) - { - if(printJob.state === "queued") - { - return "action-required-icon.svg"; - } - else if (printJob.state === "wait_cleanup") - { - return "checkmark-icon.svg"; - } - } - return ""; // We're not going to show it, so it will not be resolved as a url. - } - } - - Rectangle - { - //TODO: This will become a progress bar in the future - width: parent.width - height: UM.Theme.getSize("default_lining").height - anchors.bottom: parent.bottom - anchors.left: parent.left - visible: printProgressArea.showExtended - color: lineColor - } - } - - Column - { - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - - anchors.top: printProgressTitleBar.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - - width: parent.width - 2 * UM.Theme.getSize("default_margin").width - - visible: printProgressArea.showExtended - - Label // Status detail - { - text: - { - if (printer.state == "disabled") - { - return catalog.i18nc("@label", "Not accepting print jobs"); - } - - if (printer.state === "unreachable") - { - return ""; - } - - if(printJob != null) - { - switch (printJob.state) - { - case "printing": - case "post_print": - return catalog.i18nc("@label", "Finishes at: ") + OutputDevice.getTimeCompleted(printJob.timeTotal - printJob.timeElapsed) - case "wait_cleanup": - return catalog.i18nc("@label", "Clear build plate") - case "sent_to_printer": - case "pre_print": - return catalog.i18nc("@label", "Preparing to print") - case "wait_for_configuration": - return catalog.i18nc("@label", "Not accepting print jobs") - case "queued": - return catalog.i18nc("@label", "Waiting for configuration change"); - default: - return ""; - } - } - return ""; - } - anchors.left: parent.left - anchors.right: parent.right - elide: Text.ElideRight - wrapMode: Text.Wrap - - font: UM.Theme.getFont("default") - } - - Label // Status 2nd row - { - text: { - if(printJob != null) - { - if(printJob.state == "printing" || printJob.state == "post_print") - { - return OutputDevice.getDateCompleted(printJob.timeTotal - printJob.timeElapsed) - } - } - return ""; - } - - elide: Text.ElideRight - font: UM.Theme.getFont("default") - } - } - } - } - } -} diff --git a/plugins/UM3NetworkPrinting/PrinterTile.qml b/plugins/UM3NetworkPrinting/PrinterTile.qml deleted file mode 100644 index 3d03e93688..0000000000 --- a/plugins/UM3NetworkPrinting/PrinterTile.qml +++ /dev/null @@ -1,54 +0,0 @@ -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 - -Rectangle -{ - id: base - width: 250 * screenScaleFactor - height: 250 * screenScaleFactor - signal clicked() - MouseArea - { - anchors.fill:parent - onClicked: base.clicked() - } - Rectangle - { - // TODO: Actually add UM icon / picture - width: 100 * screenScaleFactor - height: 100 * screenScaleFactor - border.width: UM.Theme.getSize("default_lining").width - anchors.horizontalCenter: parent.horizontalCenter - anchors.top: parent.top - anchors.topMargin: UM.Theme.getSize("default_margin").height - } - Label - { - id: nameLabel - anchors.bottom: ipLabel.top - anchors.bottomMargin: UM.Theme.getSize("default_margin").height - anchors.left: parent.left - anchors.right: parent.right - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.rightMargin: UM.Theme.getSize("default_margin").width - text: modelData.friendly_name.toString() - font: UM.Theme.getFont("large") - elide: Text.ElideMiddle; - height: UM.Theme.getSize("section").height; - } - Label - { - id: ipLabel - text: modelData.ip_address.toString() - anchors.bottom: parent.bottom - anchors.bottomMargin: UM.Theme.getSize("default_margin").height - font: UM.Theme.getFont("default") - height:10 * screenScaleFactor - anchors.horizontalCenter: parent.horizontalCenter - } -} - diff --git a/plugins/UM3NetworkPrinting/__init__.py b/plugins/UM3NetworkPrinting/__init__.py index b68086cb75..7f2b34223c 100644 --- a/plugins/UM3NetworkPrinting/__init__.py +++ b/plugins/UM3NetworkPrinting/__init__.py @@ -1,11 +1,11 @@ # Copyright (c) 2017 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from . import DiscoverUM3Action +from .src import DiscoverUM3Action from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") -from . import UM3OutputDevicePlugin +from .src import UM3OutputDevicePlugin def getMetaData(): return {} diff --git a/plugins/UM3NetworkPrinting/plugin.json b/plugins/UM3NetworkPrinting/plugin.json index e7b59fadd6..d415338374 100644 --- a/plugins/UM3NetworkPrinting/plugin.json +++ b/plugins/UM3NetworkPrinting/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "description": "Manages network connections to Ultimaker 3 printers.", "version": "1.0.0", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml b/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml new file mode 100644 index 0000000000..a7061b76e5 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml @@ -0,0 +1,729 @@ +import QtQuick 2.3 +import QtQuick.Dialogs 1.1 +import QtQuick.Controls 1.4 +import QtQuick.Controls.Styles 1.3 +import QtGraphicalEffects 1.0 + +import QtQuick.Controls 2.0 as Controls2 + +import UM 1.3 as UM +import Cura 1.0 as Cura + + +Component +{ + Rectangle + { + id: base + property var lineColor: "#DCDCDC" // TODO: Should be linked to theme. + + property var cornerRadius: 4 * screenScaleFactor // TODO: Should be linked to theme. + visible: OutputDevice != null + anchors.fill: parent + color: "white" + + UM.I18nCatalog + { + id: catalog + name: "cura" + } + + Label + { + id: printingLabel + font: UM.Theme.getFont("large") + anchors + { + margins: 2 * UM.Theme.getSize("default_margin").width + leftMargin: 4 * UM.Theme.getSize("default_margin").width + top: parent.top + left: parent.left + right: parent.right + } + + text: catalog.i18nc("@label", "Printing") + elide: Text.ElideRight + } + + Label + { + id: managePrintersLabel + anchors.rightMargin: 4 * UM.Theme.getSize("default_margin").width + anchors.right: printerScrollView.right + anchors.bottom: printingLabel.bottom + text: catalog.i18nc("@label link to connect manager", "Manage printers") + font: UM.Theme.getFont("default") + color: UM.Theme.getColor("primary") + linkColor: UM.Theme.getColor("primary") + } + + MouseArea + { + anchors.fill: managePrintersLabel + hoverEnabled: true + onClicked: Cura.MachineManager.printerOutputDevices[0].openPrinterControlPanel() + onEntered: managePrintersLabel.font.underline = true + onExited: managePrintersLabel.font.underline = false + } + + ScrollView + { + id: printerScrollView + anchors + { + top: printingLabel.bottom + left: parent.left + right: parent.right + topMargin: UM.Theme.getSize("default_margin").height + bottom: parent.bottom + bottomMargin: UM.Theme.getSize("default_margin").height + } + + style: UM.Theme.styles.scrollview + + ListView + { + anchors + { + top: parent.top + bottom: parent.bottom + left: parent.left + right: parent.right + leftMargin: 2 * UM.Theme.getSize("default_margin").width + rightMargin: 2 * UM.Theme.getSize("default_margin").width + } + spacing: UM.Theme.getSize("default_margin").height -10 + model: OutputDevice.printers + + delegate: Item + { + width: parent.width + height: base.height + 2 * base.shadowRadius // To ensure that the shadow doesn't get cut off. + Rectangle + { + width: parent.width - 2 * shadowRadius + height: childrenRect.height + UM.Theme.getSize("default_margin").height + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + id: base + property var shadowRadius: 5 + property var collapsed: true + + layer.enabled: true + layer.effect: DropShadow + { + radius: base.shadowRadius + verticalOffset: 2 + color: "#3F000000" // 25% shadow + } + + Item + { + id: printerInfo + height: machineIcon.height + anchors + { + top: parent.top + left: parent.left + right: parent.right + margins: UM.Theme.getSize("default_margin").width + } + + MouseArea + { + anchors.fill: parent + onClicked: base.collapsed = !base.collapsed + } + + Item + { + id: machineIcon + // Yeah, this is hardcoded now, but I can't think of a good way to fix this. + // The UI is going to get another update soon, so it's probably not worth the effort... + width: 58 + height: 58 + anchors.top: parent.top + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.left: parent.left + + UM.RecolorImage + { + anchors.centerIn: parent + source: + { + switch(modelData.type) + { + case "Ultimaker 3": + return "../svg/UM3-icon.svg" + case "Ultimaker 3 Extended": + return "../svg/UM3x-icon.svg" + case "Ultimaker S5": + return "../svg/UMs5-icon.svg" + } + } + width: sourceSize.width + height: sourceSize.height + + color: + { + if(modelData.state == "disabled") + { + return UM.Theme.getColor("setting_control_disabled") + } + + if(modelData.activePrintJob != undefined) + { + return UM.Theme.getColor("primary") + } + + return UM.Theme.getColor("setting_control_disabled") + } + } + } + Item + { + height: childrenRect.height + anchors + { + right: collapseIcon.left + rightMargin: UM.Theme.getSize("default_margin").width + left: machineIcon.right + leftMargin: UM.Theme.getSize("default_margin").width + + verticalCenter: machineIcon.verticalCenter + } + + Label + { + id: machineNameLabel + text: modelData.name + width: parent.width + elide: Text.ElideRight + font: UM.Theme.getFont("default_bold") + } + + Label + { + id: activeJobLabel + text: + { + if (modelData.state == "disabled") + { + return catalog.i18nc("@label", "Not available") + } else if (modelData.state == "unreachable") + { + return catalog.i18nc("@label", "Unreachable") + } + if (modelData.activePrintJob != null) + { + return modelData.activePrintJob.name + } + return catalog.i18nc("@label", "Available") + } + anchors.top: machineNameLabel.bottom + width: parent.width + elide: Text.ElideRight + font: UM.Theme.getFont("default") + opacity: 0.6 + } + } + + UM.RecolorImage + { + id: collapseIcon + width: 15 + height: 15 + sourceSize.width: width + sourceSize.height: height + source: base.collapsed ? UM.Theme.getIcon("arrow_left") : UM.Theme.getIcon("arrow_bottom") + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + anchors.rightMargin: UM.Theme.getSize("default_margin").width + color: "black" + } + } + + Item + { + id: detailedInfo + property var printJob: modelData.activePrintJob + visible: height == childrenRect.height + anchors.top: printerInfo.bottom + width: parent.width + height: !base.collapsed ? childrenRect.height : 0 + opacity: visible ? 1 : 0 + Behavior on height { NumberAnimation { duration: 100 } } + Behavior on opacity { NumberAnimation { duration: 100 } } + Rectangle + { + id: topSpacer + color: UM.Theme.getColor("viewport_background") + height: 2 + anchors + { + left: parent.left + right: parent.right + margins: UM.Theme.getSize("default_margin").width + top: parent.top + topMargin: UM.Theme.getSize("default_margin").width + } + } + PrinterFamilyPill + { + id: printerFamilyPill + color: UM.Theme.getColor("viewport_background") + anchors.top: topSpacer.bottom + anchors.topMargin: 2 * UM.Theme.getSize("default_margin").height + text: modelData.type + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + padding: 3 + } + Row + { + id: extrudersInfo + anchors.top: printerFamilyPill.bottom + anchors.topMargin: 2 * UM.Theme.getSize("default_margin").height + anchors.left: parent.left + anchors.leftMargin: 2 * UM.Theme.getSize("default_margin").width + anchors.right: parent.right + anchors.rightMargin: 2 * UM.Theme.getSize("default_margin").width + height: childrenRect.height + spacing: UM.Theme.getSize("default_margin").width + + PrintCoreConfiguration + { + id: leftExtruderInfo + width: Math.round(parent.width / 2) + printCoreConfiguration: modelData.printerConfiguration.extruderConfigurations[0] + } + + PrintCoreConfiguration + { + id: rightExtruderInfo + width: Math.round(parent.width / 2) + printCoreConfiguration: modelData.printerConfiguration.extruderConfigurations[1] + } + } + + Rectangle + { + id: jobSpacer + color: UM.Theme.getColor("viewport_background") + height: 2 + anchors + { + left: parent.left + right: parent.right + margins: UM.Theme.getSize("default_margin").width + top: extrudersInfo.bottom + topMargin: 2 * UM.Theme.getSize("default_margin").height + } + } + + Item + { + id: jobInfo + property var showJobInfo: modelData.activePrintJob != null && modelData.activePrintJob.state != "queued" + + anchors.top: jobSpacer.bottom + anchors.topMargin: 2 * UM.Theme.getSize("default_margin").height + anchors.left: parent.left + anchors.right: parent.right + anchors.margins: UM.Theme.getSize("default_margin").width + anchors.leftMargin: 2 * UM.Theme.getSize("default_margin").width + height: showJobInfo ? childrenRect.height + 2 * UM.Theme.getSize("default_margin").height: 0 + visible: showJobInfo + Label + { + id: printJobName + text: modelData.activePrintJob != null ? modelData.activePrintJob.name : "" + font: UM.Theme.getFont("default_bold") + anchors.left: parent.left + anchors.right: contextButton.left + anchors.rightMargin: UM.Theme.getSize("default_margin").width + elide: Text.ElideRight + } + Label + { + id: ownerName + anchors.top: printJobName.bottom + text: modelData.activePrintJob != null ? modelData.activePrintJob.owner : "" + font: UM.Theme.getFont("default") + opacity: 0.6 + width: parent.width + elide: Text.ElideRight + } + + function switchPopupState() + { + if (popup.visible) + { + popup.close() + } + else + { + popup.open() + } + } + + Controls2.Button + { + id: contextButton + text: "\u22EE" //Unicode; Three stacked points. + font.pixelSize: 25 + width: 35 + height: width + anchors + { + right: parent.right + top: parent.top + } + hoverEnabled: true + + background: Rectangle + { + opacity: contextButton.down || contextButton.hovered ? 1 : 0 + width: contextButton.width + height: contextButton.height + radius: 0.5 * width + color: UM.Theme.getColor("viewport_background") + } + + onClicked: parent.switchPopupState() + } + + Controls2.Popup + { + // TODO Change once updating to Qt5.10 - The 'opened' property is in 5.10 but the behavior is now implemented with the visible property + id: popup + clip: true + closePolicy: Controls2.Popup.CloseOnPressOutsideParent + x: parent.width - width + y: contextButton.height + width: 160 + height: contentItem.height + 2 * padding + visible: false + + transformOrigin: Controls2.Popup.Top + contentItem: Item + { + width: popup.width - 2 * popup.padding + height: childrenRect.height + 15 + Controls2.Button + { + id: pauseButton + text: modelData.activePrintJob != null && modelData.activePrintJob.state == "paused" ? catalog.i18nc("@label", "Resume") : catalog.i18nc("@label", "Pause") + onClicked: + { + if(modelData.activePrintJob.state == "paused") + { + modelData.activePrintJob.setState("print") + } + else if(modelData.activePrintJob.state == "printing") + { + modelData.activePrintJob.setState("pause") + } + popup.close() + } + width: parent.width + enabled: modelData.activePrintJob != null && ["paused", "printing"].indexOf(modelData.activePrintJob.state) >= 0 + anchors.top: parent.top + anchors.topMargin: 10 + hoverEnabled: true + background: Rectangle + { + opacity: pauseButton.down || pauseButton.hovered ? 1 : 0 + color: UM.Theme.getColor("viewport_background") + } + } + + Controls2.Button + { + id: abortButton + text: catalog.i18nc("@label", "Abort") + onClicked: + { + abortConfirmationDialog.visible = true; + popup.close(); + } + width: parent.width + anchors.top: pauseButton.bottom + hoverEnabled: true + enabled: modelData.activePrintJob != null && ["paused", "printing", "pre_print"].indexOf(modelData.activePrintJob.state) >= 0 + background: Rectangle + { + opacity: abortButton.down || abortButton.hovered ? 1 : 0 + color: UM.Theme.getColor("viewport_background") + } + } + + MessageDialog + { + id: abortConfirmationDialog + title: catalog.i18nc("@window:title", "Abort print") + icon: StandardIcon.Warning + text: catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to abort %1?").arg(modelData.activePrintJob.name) + standardButtons: StandardButton.Yes | StandardButton.No + Component.onCompleted: visible = false + onYes: modelData.activePrintJob.setState("abort") + } + } + + background: Item + { + width: popup.width + height: popup.height + + DropShadow + { + anchors.fill: pointedRectangle + radius: 5 + color: "#3F000000" // 25% shadow + source: pointedRectangle + transparentBorder: true + verticalOffset: 2 + } + + Item + { + id: pointedRectangle + width: parent.width -10 + height: parent.height -10 + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + + Rectangle + { + id: point + height: 13 + width: 13 + color: UM.Theme.getColor("setting_control") + transform: Rotation { angle: 45} + anchors.right: bloop.right + y: 1 + } + + Rectangle + { + id: bloop + color: UM.Theme.getColor("setting_control") + width: parent.width + anchors.top: parent.top + anchors.topMargin: 10 + anchors.bottom: parent.bottom + anchors.bottomMargin: 5 + } + } + } + + exit: Transition + { + // This applies a default NumberAnimation to any changes a state change makes to x or y properties + NumberAnimation { property: "visible"; duration: 75; } + } + enter: Transition + { + // This applies a default NumberAnimation to any changes a state change makes to x or y properties + NumberAnimation { property: "visible"; duration: 75; } + } + + onClosed: visible = false + onOpened: visible = true + } + + Image + { + id: printJobPreview + source: modelData.activePrintJob != null ? modelData.activePrintJob.previewImageUrl : "" + anchors.top: ownerName.bottom + anchors.horizontalCenter: parent.horizontalCenter + width: parent.width / 2 + height: width + opacity: + { + if(modelData.activePrintJob == null) + { + return 1.0 + } + + switch(modelData.activePrintJob.state) + { + case "wait_cleanup": + case "wait_user_action": + case "paused": + return 0.5 + default: + return 1.0 + } + } + + + } + + UM.RecolorImage + { + id: statusImage + anchors.centerIn: printJobPreview + source: + { + if(modelData.activePrintJob == null) + { + return "" + } + switch(modelData.activePrintJob.state) + { + case "paused": + return "../svg/paused-icon.svg" + case "wait_cleanup": + if(modelData.activePrintJob.timeElapsed < modelData.activePrintJob.timeTotal) + { + return "../svg/aborted-icon.svg" + } + return "../svg/approved-icon.svg" + case "wait_user_action": + return "../svg/aborted-icon.svg" + default: + return "" + } + } + visible: source != "" + width: 0.5 * printJobPreview.width + height: 0.5 * printJobPreview.height + sourceSize.width: width + sourceSize.height: height + color: "black" + } + + Rectangle + { + id: showCameraIcon + width: 35 * screenScaleFactor + height: width + radius: 0.5 * width + anchors.left: parent.left + anchors.bottom: printJobPreview.bottom + color: UM.Theme.getColor("setting_control_border_highlight") + Image + { + width: parent.width + height: width + anchors.right: parent.right + anchors.rightMargin: parent.rightMargin + source: "../svg/camera-icon.svg" + } + MouseArea + { + anchors.fill:parent + onClicked: + { + OutputDevice.setActiveCamera(modelData.camera) + } + } + } + } + } + + ProgressBar + { + property var progress: + { + if(modelData.activePrintJob == null) + { + return 0 + } + var result = modelData.activePrintJob.timeElapsed / modelData.activePrintJob.timeTotal + if(result > 1.0) + { + result = 1.0 + } + return result + } + + id: jobProgressBar + width: parent.width + value: progress + anchors.top: detailedInfo.bottom + anchors.topMargin: UM.Theme.getSize("default_margin").height + + visible: modelData.activePrintJob != null && modelData.activePrintJob != undefined + + style: ProgressBarStyle + { + property var progressText: + { + if(modelData.activePrintJob == null) + { + return "" + } + + switch(modelData.activePrintJob.state) + { + case "wait_cleanup": + if(modelData.activePrintJob.timeTotal > modelData.activePrintJob.timeElapsed) + { + return catalog.i18nc("@label:status", "Aborted") + } + return catalog.i18nc("@label:status", "Finished") + case "pre_print": + case "sent_to_printer": + return catalog.i18nc("@label:status", "Preparing") + case "aborted": + case "wait_user_action": + return catalog.i18nc("@label:status", "Aborted") + case "pausing": + return catalog.i18nc("@label:status", "Pausing") + case "paused": + return catalog.i18nc("@label:status", "Paused") + case "resuming": + return catalog.i18nc("@label:status", "Resuming") + case "queued": + return catalog.i18nc("@label:status", "Action required") + default: + OutputDevice.formatDuration(modelData.activePrintJob.timeTotal - modelData.activePrintJob.timeElapsed) + } + } + + background: Rectangle + { + implicitWidth: 100 + implicitHeight: visible ? 24 : 0 + color: UM.Theme.getColor("viewport_background") + } + + progress: Rectangle + { + color: UM.Theme.getColor("primary") + id: progressItem + function getTextOffset() + { + if(progressItem.width + progressLabel.width < control.width) + { + return progressItem.width + UM.Theme.getSize("default_margin").width + } + else + { + return progressItem.width - progressLabel.width - UM.Theme.getSize("default_margin").width + } + } + + Label + { + id: progressLabel + anchors.left: parent.left + anchors.leftMargin: getTextOffset() + text: progressText + anchors.verticalCenter: parent.verticalCenter + color: progressItem.width + progressLabel.width < control.width ? "black" : "white" + width: contentWidth + font: UM.Theme.getFont("default") + } + } + } + } + } + } + } + } + } +} diff --git a/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml b/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml new file mode 100644 index 0000000000..71b598d05c --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml @@ -0,0 +1,108 @@ +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 + +Component +{ + Rectangle + { + id: monitorFrame + width: maximumWidth + height: maximumHeight + color: UM.Theme.getColor("viewport_background") + property var emphasisColor: UM.Theme.getColor("setting_control_border_highlight") + property var lineColor: "#DCDCDC" // TODO: Should be linked to theme. + property var cornerRadius: 4 * screenScaleFactor // TODO: Should be linked to theme. + + UM.I18nCatalog + { + id: catalog + name: "cura" + } + + Label + { + id: manageQueueLabel + anchors.rightMargin: 4 * UM.Theme.getSize("default_margin").width + anchors.right: queuedPrintJobs.right + anchors.bottom: queuedLabel.bottom + text: catalog.i18nc("@label link to connect manager", "Manage queue") + font: UM.Theme.getFont("default") + color: UM.Theme.getColor("primary") + linkColor: UM.Theme.getColor("primary") + } + + MouseArea + { + anchors.fill: manageQueueLabel + hoverEnabled: true + onClicked: Cura.MachineManager.printerOutputDevices[0].openPrintJobControlPanel() + onEntered: manageQueueLabel.font.underline = true + onExited: manageQueueLabel.font.underline = false + } + + Label + { + id: queuedLabel + anchors.left: queuedPrintJobs.left + anchors.top: parent.top + anchors.topMargin: 2 * UM.Theme.getSize("default_margin").height + anchors.leftMargin: 3 * UM.Theme.getSize("default_margin").width + text: catalog.i18nc("@label", "Queued") + font: UM.Theme.getFont("large") + color: UM.Theme.getColor("text") + } + + ScrollView + { + id: queuedPrintJobs + + anchors + { + top: queuedLabel.bottom + topMargin: UM.Theme.getSize("default_margin").height + horizontalCenter: parent.horizontalCenter + bottomMargin: 0 + bottom: parent.bottom + } + style: UM.Theme.styles.scrollview + width: Math.min(800 * screenScaleFactor, maximumWidth) + ListView + { + anchors.fill: parent + //anchors.margins: UM.Theme.getSize("default_margin").height + spacing: UM.Theme.getSize("default_margin").height - 10 // 2x the shadow radius + + model: OutputDevice.queuedPrintJobs + + delegate: PrintJobInfoBlock + { + printJob: modelData + anchors.left: parent.left + anchors.right: parent.right + anchors.rightMargin: UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").height + height: 175 * screenScaleFactor + } + } + } + + PrinterVideoStream + { + visible: OutputDevice.activeCamera != null + anchors.fill: parent + camera: OutputDevice.activeCamera + } + + onVisibleChanged: + { + if (monitorFrame != null && !monitorFrame.visible) + { + OutputDevice.setActiveCamera(null) + } + } + } +} diff --git a/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml b/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml similarity index 99% rename from plugins/UM3NetworkPrinting/DiscoverUM3Action.qml rename to plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml index 127b3c35bd..b5b80a3010 100644 --- a/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml @@ -364,7 +364,6 @@ Cura.MachineAction { id: addressField width: parent.width - maximumLength: 40 validator: RegExpValidator { regExp: /[a-zA-Z0-9\.\-\_]*/ diff --git a/plugins/UM3NetworkPrinting/MonitorItem.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorItem.qml similarity index 100% rename from plugins/UM3NetworkPrinting/MonitorItem.qml rename to plugins/UM3NetworkPrinting/resources/qml/MonitorItem.qml diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrintCoreConfiguration.qml b/plugins/UM3NetworkPrinting/resources/qml/PrintCoreConfiguration.qml new file mode 100644 index 0000000000..0ae1fec920 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/qml/PrintCoreConfiguration.qml @@ -0,0 +1,93 @@ +import QtQuick 2.2 +import QtQuick.Controls 1.4 +import QtQuick.Controls.Styles 1.4 + +import UM 1.2 as UM + + +Item +{ + id: extruderInfo + property var printCoreConfiguration + + width: Math.round(parent.width / 2) + height: childrenRect.height + + Item + { + id: extruderCircle + width: 30 + height: 30 + + anchors.verticalCenter: printAndMaterialLabel.verticalCenter + opacity: + { + if(printCoreConfiguration == null || printCoreConfiguration.activeMaterial == null || printCoreConfiguration.hotendID == null) + { + return 0.5 + } + return 1 + } + + Rectangle + { + anchors.fill: parent + radius: Math.round(width / 2) + border.width: 2 + border.color: "black" + } + + Label + { + anchors.centerIn: parent + font: UM.Theme.getFont("default_bold") + text: printCoreConfiguration.position + 1 + } + } + + Item + { + id: printAndMaterialLabel + anchors + { + right: parent.right + left: extruderCircle.right + margins: UM.Theme.getSize("default_margin").width + } + height: childrenRect.height + + Label + { + id: materialLabel + text: + { + if(printCoreConfiguration != undefined && printCoreConfiguration.activeMaterial != undefined) + { + return printCoreConfiguration.activeMaterial.name + } + return "" + } + font: UM.Theme.getFont("default_bold") + elide: Text.ElideRight + width: parent.width + } + + Label + { + id: printCoreLabel + text: + { + if(printCoreConfiguration != undefined && printCoreConfiguration.hotendID != undefined) + { + return printCoreConfiguration.hotendID + } + return "" + } + anchors.top: materialLabel.bottom + elide: Text.ElideRight + width: parent.width + opacity: 0.6 + font: UM.Theme.getFont("default") + } + } +} diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml b/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml new file mode 100644 index 0000000000..dd8eb27fca --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml @@ -0,0 +1,401 @@ +import QtQuick 2.2 +import QtQuick.Dialogs 1.1 +import QtQuick.Controls 2.0 +import QtQuick.Controls.Styles 1.4 +import QtGraphicalEffects 1.0 + +import UM 1.3 as UM + + +Item +{ + id: base + property var printJob: null + property var shadowRadius: 5 + function getPrettyTime(time) + { + return OutputDevice.formatDuration(time) + } + + UM.I18nCatalog + { + id: catalog + name: "cura" + } + + Rectangle + { + id: background + anchors + { + top: parent.top + topMargin: 3 + left: parent.left + leftMargin: base.shadowRadius + rightMargin: base.shadowRadius + right: parent.right + bottom: parent.bottom + bottomMargin: base.shadowRadius + } + + layer.enabled: true + layer.effect: DropShadow + { + radius: base.shadowRadius + verticalOffset: 2 + color: "#3F000000" // 25% shadow + } + + Item + { + // Content on the left of the infobox + anchors + { + top: parent.top + bottom: parent.bottom + left: parent.left + right: parent.horizontalCenter + margins: 2 * UM.Theme.getSize("default_margin").width + rightMargin: UM.Theme.getSize("default_margin").width + } + + Label + { + id: printJobName + text: printJob.name + font: UM.Theme.getFont("default_bold") + width: parent.width + elide: Text.ElideRight + } + + Label + { + id: ownerName + anchors.top: printJobName.bottom + text: printJob.owner + font: UM.Theme.getFont("default") + opacity: 0.6 + width: parent.width + elide: Text.ElideRight + } + + Image + { + id: printJobPreview + source: printJob.previewImageUrl + anchors.top: ownerName.bottom + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: totalTimeLabel.bottom + width: height + opacity: printJob.state == "error" ? 0.5 : 1.0 + } + + UM.RecolorImage + { + id: statusImage + anchors.centerIn: printJobPreview + source: printJob.state == "error" ? "../svg/aborted-icon.svg" : "" + visible: source != "" + width: 0.5 * printJobPreview.width + height: 0.5 * printJobPreview.height + sourceSize.width: width + sourceSize.height: height + color: "black" + } + + Label + { + id: totalTimeLabel + opacity: 0.6 + anchors.bottom: parent.bottom + anchors.right: parent.right + font: UM.Theme.getFont("default") + text: printJob != null ? getPrettyTime(printJob.timeTotal) : "" + elide: Text.ElideRight + } + } + + Item + { + // Content on the right side of the infobox. + anchors + { + top: parent.top + bottom: parent.bottom + left: parent.horizontalCenter + right: parent.right + margins: 2 * UM.Theme.getSize("default_margin").width + leftMargin: UM.Theme.getSize("default_margin").width + } + + Label + { + id: targetPrinterLabel + elide: Text.ElideRight + font: UM.Theme.getFont("default_bold") + text: + { + if(printJob.assignedPrinter == null) + { + if(printJob.state == "error") + { + return catalog.i18nc("@label", "Waiting for: Unavailable printer") + } + return catalog.i18nc("@label", "Waiting for: First available") + } + else + { + return catalog.i18nc("@label", "Waiting for: ") + printJob.assignedPrinter.name + } + + } + + anchors + { + left: parent.left + right: contextButton.left + rightMargin: UM.Theme.getSize("default_margin").width + } + } + + + function switchPopupState() + { + popup.visible ? popup.close() : popup.open() + } + + Button + { + id: contextButton + text: "\u22EE" //Unicode; Three stacked points. + font.pixelSize: 25 + width: 35 + height: width + anchors + { + right: parent.right + top: parent.top + } + hoverEnabled: true + + background: Rectangle + { + opacity: contextButton.down || contextButton.hovered ? 1 : 0 + width: contextButton.width + height: contextButton.height + radius: 0.5 * width + color: UM.Theme.getColor("viewport_background") + } + + onClicked: parent.switchPopupState() + } + + Popup + { + // TODO Change once updating to Qt5.10 - The 'opened' property is in 5.10 but the behavior is now implemented with the visible property + id: popup + clip: true + closePolicy: Popup.CloseOnPressOutsideParent + x: parent.width - width + y: contextButton.height + width: 160 + height: contentItem.height + 2 * padding + visible: false + + transformOrigin: Popup.Top + contentItem: Item + { + width: popup.width - 2 * popup.padding + height: childrenRect.height + 15 + Button + { + id: sendToTopButton + text: catalog.i18nc("@label", "Move to top") + onClicked: + { + sendToTopConfirmationDialog.visible = true; + popup.close(); + } + width: parent.width + enabled: OutputDevice.queuedPrintJobs[0].key != printJob.key + anchors.top: parent.top + anchors.topMargin: 10 + hoverEnabled: true + background: Rectangle + { + opacity: sendToTopButton.down || sendToTopButton.hovered ? 1 : 0 + color: UM.Theme.getColor("viewport_background") + } + } + + MessageDialog + { + id: sendToTopConfirmationDialog + title: catalog.i18nc("@window:title", "Move print job to top") + icon: StandardIcon.Warning + text: 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) + standardButtons: StandardButton.Yes | StandardButton.No + Component.onCompleted: visible = false + onYes: OutputDevice.sendJobToTop(printJob.key) + } + + Button + { + id: deleteButton + text: catalog.i18nc("@label", "Delete") + onClicked: + { + deleteConfirmationDialog.visible = true; + popup.close(); + } + width: parent.width + anchors.top: sendToTopButton.bottom + hoverEnabled: true + background: Rectangle + { + opacity: deleteButton.down || deleteButton.hovered ? 1 : 0 + color: UM.Theme.getColor("viewport_background") + } + } + + MessageDialog + { + id: deleteConfirmationDialog + title: catalog.i18nc("@window:title", "Delete print job") + icon: StandardIcon.Warning + text: catalog.i18nc("@label %1 is the name of a print job.", "Are you sure you want to delete %1?").arg(printJob.name) + standardButtons: StandardButton.Yes | StandardButton.No + Component.onCompleted: visible = false + onYes: OutputDevice.deleteJobFromQueue(printJob.key) + } + } + + background: Item + { + width: popup.width + height: popup.height + + DropShadow + { + anchors.fill: pointedRectangle + radius: 5 + color: "#3F000000" // 25% shadow + source: pointedRectangle + transparentBorder: true + verticalOffset: 2 + } + + Item + { + id: pointedRectangle + width: parent.width -10 + height: parent.height -10 + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + + Rectangle + { + id: point + height: 13 + width: 13 + color: UM.Theme.getColor("setting_control") + transform: Rotation { angle: 45} + anchors.right: bloop.right + y: 1 + } + + Rectangle + { + id: bloop + color: UM.Theme.getColor("setting_control") + width: parent.width + anchors.top: parent.top + anchors.topMargin: 10 + anchors.bottom: parent.bottom + anchors.bottomMargin: 5 + } + } + } + + exit: Transition + { + // This applies a default NumberAnimation to any changes a state change makes to x or y properties + NumberAnimation { property: "visible"; duration: 75; } + } + enter: Transition + { + // This applies a default NumberAnimation to any changes a state change makes to x or y properties + NumberAnimation { property: "visible"; duration: 75; } + } + + onClosed: visible = false + onOpened: visible = true + } + + Row + { + id: printerFamilyPills + spacing: 0.5 * UM.Theme.getSize("default_margin").width + anchors + { + left: parent.left + right: parent.right + bottom: extrudersInfo.top + bottomMargin: UM.Theme.getSize("default_margin").height + } + height: childrenRect.height + Repeater + { + model: printJob.compatibleMachineFamilies + + delegate: PrinterFamilyPill + { + text: modelData + color: UM.Theme.getColor("viewport_background") + padding: 3 + } + } + } + // PrintCore && Material config + Row + { + id: extrudersInfo + anchors.bottom: parent.bottom + + anchors + { + left: parent.left + right: parent.right + } + height: childrenRect.height + + spacing: UM.Theme.getSize("default_margin").width + + PrintCoreConfiguration + { + id: leftExtruderInfo + width: Math.round(parent.width / 2) + printCoreConfiguration: printJob.configuration.extruderConfigurations[0] + } + + PrintCoreConfiguration + { + id: rightExtruderInfo + width: Math.round(parent.width / 2) + printCoreConfiguration: printJob.configuration.extruderConfigurations[1] + } + } + + } + + Rectangle + { + color: UM.Theme.getColor("viewport_background") + width: 2 + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.margins: UM.Theme.getSize("default_margin").height + anchors.horizontalCenter: parent.horizontalCenter + } + } +} \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/PrintWindow.qml b/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml similarity index 100% rename from plugins/UM3NetworkPrinting/PrintWindow.qml rename to plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrinterFamilyPill.qml b/plugins/UM3NetworkPrinting/resources/qml/PrinterFamilyPill.qml new file mode 100644 index 0000000000..b785cd02b7 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/qml/PrinterFamilyPill.qml @@ -0,0 +1,28 @@ +import QtQuick 2.2 +import QtQuick.Controls 1.4 +import UM 1.2 as UM + +Item +{ + property alias color: background.color + property alias text: familyNameLabel.text + property var padding: 0 + implicitHeight: familyNameLabel.contentHeight + 2 * padding // Apply the padding to top and bottom. + implicitWidth: familyNameLabel.contentWidth + implicitHeight // The extra height is added to ensure the radius doesn't cut something off. + Rectangle + { + id: background + height: parent.height + width: parent.width + color: parent.color + anchors.right: parent.right + anchors.horizontalCenter: parent.horizontalCenter + radius: 0.5 * height + } + Label + { + id: familyNameLabel + anchors.centerIn: parent + text: "" + } +} \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/PrinterVideoStream.qml b/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml similarity index 74% rename from plugins/UM3NetworkPrinting/PrinterVideoStream.qml rename to plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml index 68758e095e..74c8ec8483 100644 --- a/plugins/UM3NetworkPrinting/PrinterVideoStream.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml @@ -7,6 +7,8 @@ import UM 1.3 as UM Item { + property var camera: null + Rectangle { anchors.fill:parent @@ -17,7 +19,7 @@ Item MouseArea { anchors.fill: parent - onClicked: OutputDevice.setActivePrinter(null) + onClicked: OutputDevice.setActiveCamera(null) z: 0 } @@ -32,7 +34,7 @@ Item width: 20 * screenScaleFactor height: 20 * screenScaleFactor - onClicked: OutputDevice.setActivePrinter(null) + onClicked: OutputDevice.setActiveCamera(null) style: ButtonStyle { @@ -65,23 +67,24 @@ Item { if(visible) { - if(OutputDevice.activePrinter != null && OutputDevice.activePrinter.camera != null) + if(camera != null) { - OutputDevice.activePrinter.camera.start() + camera.start() } } else { - if(OutputDevice.activePrinter != null && OutputDevice.activePrinter.camera != null) + if(camera != null) { - OutputDevice.activePrinter.camera.stop() + camera.stop() } } } + source: { - if(OutputDevice.activePrinter != null && OutputDevice.activePrinter.camera != null && OutputDevice.activePrinter.camera.latestImage) + if(camera != null && camera.latestImage != null) { - return OutputDevice.activePrinter.camera.latestImage; + return camera.latestImage; } return ""; } @@ -92,7 +95,7 @@ Item anchors.fill: cameraImage onClicked: { - OutputDevice.setActivePrinter(null) + OutputDevice.setActiveCamera(null) } z: 1 } diff --git a/plugins/UM3NetworkPrinting/UM3InfoComponents.qml b/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml similarity index 100% rename from plugins/UM3NetworkPrinting/UM3InfoComponents.qml rename to plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml diff --git a/plugins/UM3NetworkPrinting/resources/svg/UM3-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/UM3-icon.svg new file mode 100644 index 0000000000..6b5d4e4895 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/svg/UM3-icon.svg @@ -0,0 +1 @@ +UM3-icon \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/resources/svg/UM3x-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/UM3x-icon.svg new file mode 100644 index 0000000000..3708173dc5 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/svg/UM3x-icon.svg @@ -0,0 +1 @@ +UM3x-icon \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/resources/svg/UMs5-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/UMs5-icon.svg new file mode 100644 index 0000000000..78437465b3 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/svg/UMs5-icon.svg @@ -0,0 +1 @@ +UMs5-icon \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/resources/svg/aborted-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/aborted-icon.svg new file mode 100644 index 0000000000..7ef82c8911 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/svg/aborted-icon.svg @@ -0,0 +1 @@ +aborted-icon \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/action-required-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/action-required-icon.svg similarity index 100% rename from plugins/UM3NetworkPrinting/action-required-icon.svg rename to plugins/UM3NetworkPrinting/resources/svg/action-required-icon.svg diff --git a/plugins/UM3NetworkPrinting/resources/svg/approved-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/approved-icon.svg new file mode 100644 index 0000000000..671957d709 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/svg/approved-icon.svg @@ -0,0 +1 @@ +approved-icon \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/blocked-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/blocked-icon.svg similarity index 100% rename from plugins/UM3NetworkPrinting/blocked-icon.svg rename to plugins/UM3NetworkPrinting/resources/svg/blocked-icon.svg diff --git a/plugins/UM3NetworkPrinting/camera-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/camera-icon.svg similarity index 100% rename from plugins/UM3NetworkPrinting/camera-icon.svg rename to plugins/UM3NetworkPrinting/resources/svg/camera-icon.svg diff --git a/plugins/UM3NetworkPrinting/checkmark-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/checkmark-icon.svg similarity index 100% rename from plugins/UM3NetworkPrinting/checkmark-icon.svg rename to plugins/UM3NetworkPrinting/resources/svg/checkmark-icon.svg diff --git a/plugins/UM3NetworkPrinting/resources/svg/paused-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/paused-icon.svg new file mode 100644 index 0000000000..a66217d662 --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/svg/paused-icon.svg @@ -0,0 +1 @@ +paused-icon \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/resources/svg/warning-icon.svg b/plugins/UM3NetworkPrinting/resources/svg/warning-icon.svg new file mode 100644 index 0000000000..1e5359a5eb --- /dev/null +++ b/plugins/UM3NetworkPrinting/resources/svg/warning-icon.svg @@ -0,0 +1 @@ +warning-icon \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py b/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py similarity index 75% rename from plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py rename to plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py index e85961f619..409ca7a84a 100644 --- a/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py @@ -4,19 +4,21 @@ from typing import Any, cast, Optional, Set, Tuple, Union from UM.FileHandler.FileHandler import FileHandler -from UM.FileHandler.FileWriter import FileWriter #To choose based on the output file mode (text vs. binary). -from UM.FileHandler.WriteFileJob import WriteFileJob #To call the file writer asynchronously. +from UM.FileHandler.FileWriter import FileWriter # To choose based on the output file mode (text vs. binary). +from UM.FileHandler.WriteFileJob import WriteFileJob # To call the file writer asynchronously. from UM.Logger import Logger from UM.Settings.ContainerRegistry import ContainerRegistry from UM.i18n import i18nCatalog -from UM.Mesh.MeshWriter import MeshWriter # For typing + from UM.Message import Message from UM.Qt.Duration import Duration, DurationFormat -from UM.OutputDevice import OutputDeviceError #To show that something went wrong when writing. -from UM.Scene.SceneNode import SceneNode #For typing. -from UM.Version import Version #To check against firmware versions for support. +from UM.OutputDevice import OutputDeviceError # To show that something went wrong when writing. +from UM.Scene.SceneNode import SceneNode # For typing. +from UM.Version import Version # To check against firmware versions for support. from cura.CuraApplication import CuraApplication +from cura.PrinterOutput.ConfigurationModel import ConfigurationModel +from cura.PrinterOutput.ExtruderConfigurationModel import ExtruderConfigurationModel from cura.PrinterOutput.NetworkedPrinterOutputDevice import NetworkedPrinterOutputDevice, AuthState from cura.PrinterOutput.PrinterOutputModel import PrinterOutputModel from cura.PrinterOutput.PrintJobOutputModel import PrintJobOutputModel @@ -27,14 +29,14 @@ from .ClusterUM3PrinterOutputController import ClusterUM3PrinterOutputController from .SendMaterialJob import SendMaterialJob from PyQt5.QtNetwork import QNetworkRequest, QNetworkReply -from PyQt5.QtGui import QDesktopServices +from PyQt5.QtGui import QDesktopServices, QImage from PyQt5.QtCore import pyqtSlot, QUrl, pyqtSignal, pyqtProperty, QObject from time import time from datetime import datetime -from typing import Optional, Dict, List, Set +from typing import Optional, Dict, List -import io #To create the correct buffers for sending data to the printer. +import io # To create the correct buffers for sending data to the printer. import json import os @@ -44,6 +46,7 @@ i18n_catalog = i18nCatalog("cura") class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): printJobsChanged = pyqtSignal() activePrinterChanged = pyqtSignal() + activeCameraChanged = pyqtSignal() # This is a bit of a hack, as the notify can only use signals that are defined by the class that they are in. # Inheritance doesn't seem to work. Tying them together does work, but i'm open for better suggestions. @@ -59,24 +62,24 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): self._print_jobs = [] # type: List[PrintJobOutputModel] - self._monitor_view_qml_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "ClusterMonitorItem.qml") - self._control_view_qml_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "ClusterControlItem.qml") + self._monitor_view_qml_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../resources/qml/ClusterMonitorItem.qml") + self._control_view_qml_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../resources/qml/ClusterControlItem.qml") # See comments about this hack with the clusterPrintersChanged signal self.printersChanged.connect(self.clusterPrintersChanged) - self._accepts_commands = True #type: bool + self._accepts_commands = True # type: bool # Cluster does not have authentication, so default to authenticated self._authentication_state = AuthState.Authenticated - self._error_message = None #type: Optional[Message] - self._write_job_progress_message = None #type: Optional[Message] - self._progress_message = None #type: Optional[Message] + self._error_message = None # type: Optional[Message] + self._write_job_progress_message = None # type: Optional[Message] + self._progress_message = None # type: Optional[Message] self._active_printer = None # type: Optional[PrinterOutputModel] - self._printer_selection_dialog = None #type: QObject + self._printer_selection_dialog = None # type: QObject self.setPriority(3) # Make sure the output device gets selected above local file output self.setName(self._id) @@ -87,32 +90,35 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): self._printer_uuid_to_unique_name_mapping = {} # type: Dict[str, str] - self._finished_jobs = [] # type: List[PrintJobOutputModel] + self._finished_jobs = [] # type: List[PrintJobOutputModel] - self._cluster_size = int(properties.get(b"cluster_size", 0)) + self._cluster_size = int(properties.get(b"cluster_size", 0)) # type: int - self._latest_reply_handler = None #type: Optional[QNetworkReply] + self._latest_reply_handler = None # type: Optional[QNetworkReply] + self._sending_job = None + + self._active_camera = None # type: Optional[NetworkCamera] def requestWrite(self, nodes: List[SceneNode], file_name: Optional[str] = None, limit_mimetypes: bool = False, file_handler: Optional[FileHandler] = None, **kwargs: str) -> None: self.writeStarted.emit(self) self.sendMaterialProfiles() - #Formats supported by this application (file types that we can actually write). + # Formats supported by this application (file types that we can actually write). if file_handler: file_formats = file_handler.getSupportedFileTypesWrite() else: file_formats = CuraApplication.getInstance().getMeshFileHandler().getSupportedFileTypesWrite() global_stack = CuraApplication.getInstance().getGlobalContainerStack() - #Create a list from the supported file formats string. + # Create a list from the supported file formats string. if not global_stack: Logger.log("e", "Missing global stack!") return machine_file_formats = global_stack.getMetaDataEntry("file_formats").split(";") machine_file_formats = [file_type.strip() for file_type in machine_file_formats] - #Exception for UM3 firmware version >=4.4: UFP is now supported and should be the preferred file format. + # Exception for UM3 firmware version >=4.4: UFP is now supported and should be the preferred file format. if "application/x-ufp" not in machine_file_formats and Version(self.firmwareVersion) >= Version("4.4"): machine_file_formats = ["application/x-ufp"] + machine_file_formats @@ -125,7 +131,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): raise OutputDeviceError.WriteRequestFailedError(i18n_catalog.i18nc("@info:status", "There are no file formats available to write with!")) preferred_format = file_formats[0] - #Just take the first file format available. + # Just take the first file format available. if file_handler is not None: writer = file_handler.getWriterByMimeType(cast(str, preferred_format["mime_type"])) else: @@ -135,29 +141,30 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): Logger.log("e", "Unexpected error when trying to get the FileWriter") return - #This function pauses with the yield, waiting on instructions on which printer it needs to print with. + # This function pauses with the yield, waiting on instructions on which printer it needs to print with. if not writer: Logger.log("e", "Missing file or mesh writer!") return self._sending_job = self._sendPrintJob(writer, preferred_format, nodes) - self._sending_job.send(None) #Start the generator. + if self._sending_job is not None: + self._sending_job.send(None) # Start the generator. - if len(self._printers) > 1: #We need to ask the user. - self._spawnPrinterSelectionDialog() - is_job_sent = True - else: #Just immediately continue. - self._sending_job.send("") #No specifically selected printer. - is_job_sent = self._sending_job.send(None) + if len(self._printers) > 1: # We need to ask the user. + self._spawnPrinterSelectionDialog() + is_job_sent = True + else: # Just immediately continue. + self._sending_job.send("") # No specifically selected printer. + is_job_sent = self._sending_job.send(None) def _spawnPrinterSelectionDialog(self): if self._printer_selection_dialog is None: - path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "PrintWindow.qml") + path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../resources/qml/PrintWindow.qml") self._printer_selection_dialog = CuraApplication.getInstance().createQmlComponent(path, {"OutputDevice": self}) if self._printer_selection_dialog is not None: self._printer_selection_dialog.show() @pyqtProperty(int, constant=True) - def clusterSize(self): + def clusterSize(self) -> int: return self._cluster_size ## Allows the user to choose a printer to print with from the printer @@ -165,7 +172,8 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): # \param target_printer The name of the printer to target. @pyqtSlot(str) def selectPrinter(self, target_printer: str = "") -> None: - self._sending_job.send(target_printer) + if self._sending_job is not None: + self._sending_job.send(target_printer) @pyqtSlot() def cancelPrintSelection(self) -> None: @@ -214,8 +222,8 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): job.start() - yield True #Return that we had success! - yield #To prevent having to catch the StopIteration exception. + yield True # Return that we had success! + yield # To prevent having to catch the StopIteration exception. def _sendPrintJobWaitOnWriteJobFinished(self, job: WriteFileJob) -> None: if self._write_job_progress_message: @@ -240,7 +248,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): file_name = CuraApplication.getInstance().getPrintInformation().jobName + "." + preferred_format["extension"] - output = stream.getvalue() #Either str or bytes depending on the output mode. + output = stream.getvalue() # Either str or bytes depending on the output mode. if isinstance(stream, io.StringIO): output = cast(str, output).encode("utf-8") output = cast(bytes, output) @@ -253,6 +261,10 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): def activePrinter(self) -> Optional[PrinterOutputModel]: return self._active_printer + @pyqtProperty(QObject, notify=activeCameraChanged) + def activeCamera(self) -> Optional[NetworkCamera]: + return self._active_camera + @pyqtSlot(QObject) def setActivePrinter(self, printer: Optional[PrinterOutputModel]) -> None: if self._active_printer != printer: @@ -261,6 +273,19 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): self._active_printer = printer self.activePrinterChanged.emit() + @pyqtSlot(QObject) + def setActiveCamera(self, camera: Optional[NetworkCamera]) -> None: + if self._active_camera != camera: + if self._active_camera: + self._active_camera.stop() + + self._active_camera = camera + + if self._active_camera: + self._active_camera.start() + + self.activeCameraChanged.emit() + def _onPostPrintJobFinished(self, reply: QNetworkReply) -> None: if self._progress_message: self._progress_message.hide() @@ -279,8 +304,8 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): # If successfully sent: if bytes_sent == bytes_total: - # Show a confirmation to the user so they know the job was sucessful and provide the option to switch to the - # monitor tab. + # Show a confirmation to the user so they know the job was sucessful and provide the option to switch to + # the monitor tab. self._success_message = Message( i18n_catalog.i18nc("@info:status", "Print job was successfully sent to the printer."), lifetime=5, dismissable=True, @@ -329,7 +354,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): @pyqtProperty("QVariantList", notify = printJobsChanged) def queuedPrintJobs(self) -> List[PrintJobOutputModel]: - return [print_job for print_job in self._print_jobs if print_job.state == "queued"] + return [print_job for print_job in self._print_jobs if print_job.state == "queued" or print_job.state == "error"] @pyqtProperty("QVariantList", notify = printJobsChanged) def activePrintJobs(self) -> List[PrintJobOutputModel]: @@ -348,6 +373,10 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): result.append({"machine_type": machine_type, "count": str(printer_count[machine_type])}) return result + @pyqtProperty("QVariantList", notify=clusterPrintersChanged) + def printers(self): + return self._printers + @pyqtSlot(int, result = str) def formatDuration(self, seconds: int) -> str: return Duration(seconds).getDisplayString(DurationFormat.Format.Short) @@ -364,6 +393,19 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): datetime_completed = datetime.fromtimestamp(current_time + time_remaining) return (datetime_completed.strftime("%a %b ") + "{day}".format(day=datetime_completed.day)).upper() + @pyqtSlot(str) + def sendJobToTop(self, print_job_uuid: str) -> None: + # This function is part of the output device (and not of the printjob output model) as this type of operation + # is a modification of the cluster queue and not of the actual job. + data = "{\"to_position\": 0}" + self.put("print_jobs/{uuid}/move_to_position".format(uuid = print_job_uuid), data, on_finished=None) + + @pyqtSlot(str) + def deleteJobFromQueue(self, print_job_uuid: str) -> None: + # This function is part of the output device (and not of the printjob output model) as this type of operation + # is a modification of the cluster queue and not of the actual job. + self.delete("print_jobs/{uuid}".format(uuid = print_job_uuid), on_finished=None) + def _printJobStateChanged(self) -> None: username = self._getUserName() @@ -392,11 +434,26 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): super().connect() self.sendMaterialProfiles() + def _onGetPreviewImageFinished(self, reply: QNetworkReply) -> None: + reply_url = reply.url().toString() + + uuid = reply_url[reply_url.find("print_jobs/")+len("print_jobs/"):reply_url.rfind("/preview_image")] + + print_job = findByKey(self._print_jobs, uuid) + if print_job: + image = QImage() + image.loadFromData(reply.readAll()) + print_job.updatePreviewImage(image) + def _update(self) -> None: super()._update() self.get("printers/", on_finished = self._onGetPrintersDataFinished) self.get("print_jobs/", on_finished = self._onGetPrintJobsFinished) + for print_job in self._print_jobs: + if print_job.getPreviewImage() is None: + self.get("print_jobs/{uuid}/preview_image".format(uuid=print_job.key), on_finished=self._onGetPreviewImageFinished) + def _onGetPrintJobsFinished(self, reply: QNetworkReply) -> None: if not checkValidGetReply(reply): return @@ -407,16 +464,19 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): print_jobs_seen = [] job_list_changed = False - for print_job_data in result: + for idx, print_job_data in enumerate(result): print_job = findByKey(self._print_jobs, print_job_data["uuid"]) - if print_job is None: print_job = self._createPrintJobModel(print_job_data) job_list_changed = True + elif not job_list_changed: + # Check if the order of the jobs has changed since the last check + if self._print_jobs.index(print_job) != idx: + job_list_changed = True self._updatePrintJob(print_job, print_job_data) - if print_job.state != "queued": # Print job should be assigned to a printer. + if print_job.state != "queued" and print_job.state != "error": # Print job should be assigned to a printer. if print_job.state in ["failed", "finished", "aborted", "none"]: # Print job was already completed, so don't attach it to a printer. printer = None @@ -437,6 +497,8 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): job_list_changed = job_list_changed or self._removeJob(removed_job) if job_list_changed: + # Override the old list with the new list (either because jobs were removed / added or order changed) + self._print_jobs = print_jobs_seen self.printJobsChanged.emit() # Do a single emit for all print job changes. def _onGetPrintersDataFinished(self, reply: QNetworkReply) -> None: @@ -478,16 +540,59 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): def _createPrintJobModel(self, data: Dict[str, Any]) -> PrintJobOutputModel: print_job = PrintJobOutputModel(output_controller=ClusterUM3PrinterOutputController(self), key=data["uuid"], name= data["name"]) + + configuration = ConfigurationModel() + extruders = [ExtruderConfigurationModel(position = idx) for idx in range(0, self._number_of_extruders)] + for index in range(0, self._number_of_extruders): + try: + extruder_data = data["configuration"][index] + except IndexError: + continue + extruder = extruders[int(data["configuration"][index]["extruder_index"])] + extruder.setHotendID(extruder_data.get("print_core_id", "")) + extruder.setMaterial(self._createMaterialOutputModel(extruder_data.get("material", {}))) + + configuration.setExtruderConfigurations(extruders) + print_job.updateConfiguration(configuration) + print_job.setCompatibleMachineFamilies(data.get("compatible_machine_families", [])) print_job.stateChanged.connect(self._printJobStateChanged) - self._print_jobs.append(print_job) return print_job def _updatePrintJob(self, print_job: PrintJobOutputModel, data: Dict[str, Any]) -> None: print_job.updateTimeTotal(data["time_total"]) print_job.updateTimeElapsed(data["time_elapsed"]) - print_job.updateState(data["status"]) + impediments_to_printing = data.get("impediments_to_printing", []) print_job.updateOwner(data["owner"]) + status_set_by_impediment = False + for impediment in impediments_to_printing: + if impediment["severity"] == "UNFIXABLE": + status_set_by_impediment = True + print_job.updateState("error") + break + + if not status_set_by_impediment: + print_job.updateState(data["status"]) + + + def _createMaterialOutputModel(self, material_data) -> MaterialOutputModel: + containers = ContainerRegistry.getInstance().findInstanceContainers(type="material", GUID=material_data["guid"]) + if containers: + color = containers[0].getMetaDataEntry("color_code") + brand = containers[0].getMetaDataEntry("brand") + material_type = containers[0].getMetaDataEntry("material") + name = containers[0].getName() + else: + Logger.log("w", + "Unable to find material with guid {guid}. Using data as provided by cluster".format( + guid=material_data["guid"])) + color = material_data["color"] + brand = material_data["brand"] + material_type = material_data["material"] + name = "Empty" if material_data["material"] == "empty" else "Unknown" + return MaterialOutputModel(guid=material_data["guid"], type=material_type, + brand=brand, color=color, name=name) + def _updatePrinter(self, printer: PrinterOutputModel, data: Dict[str, Any]) -> None: # For some unknown reason the cluster wants UUID for everything, except for sending a job directly to a printer. # Then we suddenly need the unique name. So in order to not have to mess up all the other code, we save a mapping. @@ -523,24 +628,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): material_data = extruder_data["material"] if extruder.activeMaterial is None or extruder.activeMaterial.guid != material_data["guid"]: - containers = ContainerRegistry.getInstance().findInstanceContainers(type="material", - GUID=material_data["guid"]) - if containers: - color = containers[0].getMetaDataEntry("color_code") - brand = containers[0].getMetaDataEntry("brand") - material_type = containers[0].getMetaDataEntry("material") - name = containers[0].getName() - else: - Logger.log("w", - "Unable to find material with guid {guid}. Using data as provided by cluster".format( - guid=material_data["guid"])) - color = material_data["color"] - brand = material_data["brand"] - material_type = material_data["material"] - name = "Empty" if material_data["material"] == "empty" else "Unknown" - - material = MaterialOutputModel(guid=material_data["guid"], type=material_type, - brand=brand, color=color, name=name) + material = self._createMaterialOutputModel(material_data) extruder.updateActiveMaterial(material) def _removeJob(self, job: PrintJobOutputModel) -> bool: @@ -568,6 +656,7 @@ class ClusterUM3OutputDevice(NetworkedPrinterOutputDevice): job = SendMaterialJob(device = self) job.run() + def loadJsonFromReply(reply: QNetworkReply) -> Optional[List[Dict[str, Any]]]: try: result = json.loads(bytes(reply.readAll()).decode("utf-8")) @@ -586,8 +675,8 @@ def checkValidGetReply(reply: QNetworkReply) -> bool: return True -def findByKey(list: List[Union[PrintJobOutputModel, PrinterOutputModel]], key: str) -> Optional[PrintJobOutputModel]: - for item in list: +def findByKey(lst: List[Union[PrintJobOutputModel, PrinterOutputModel]], key: str) -> Optional[PrintJobOutputModel]: + for item in lst: if item.key == key: return item return None diff --git a/plugins/UM3NetworkPrinting/ClusterUM3PrinterOutputController.py b/plugins/UM3NetworkPrinting/src/ClusterUM3PrinterOutputController.py similarity index 91% rename from plugins/UM3NetworkPrinting/ClusterUM3PrinterOutputController.py rename to plugins/UM3NetworkPrinting/src/ClusterUM3PrinterOutputController.py index 4a0319cafc..fcced0b883 100644 --- a/plugins/UM3NetworkPrinting/ClusterUM3PrinterOutputController.py +++ b/plugins/UM3NetworkPrinting/src/ClusterUM3PrinterOutputController.py @@ -6,8 +6,6 @@ from cura.PrinterOutput.PrinterOutputController import PrinterOutputController MYPY = False if MYPY: from cura.PrinterOutput.PrintJobOutputModel import PrintJobOutputModel - from cura.PrinterOutput.PrinterOutputModel import PrinterOutputModel - class ClusterUM3PrinterOutputController(PrinterOutputController): def __init__(self, output_device): diff --git a/plugins/UM3NetworkPrinting/DiscoverUM3Action.py b/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py similarity index 98% rename from plugins/UM3NetworkPrinting/DiscoverUM3Action.py rename to plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py index c0a828ece9..be83e04585 100644 --- a/plugins/UM3NetworkPrinting/DiscoverUM3Action.py +++ b/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py @@ -24,7 +24,7 @@ class DiscoverUM3Action(MachineAction): def __init__(self) -> None: super().__init__("DiscoverUM3Action", catalog.i18nc("@action","Connect via Network")) - self._qml_url = "DiscoverUM3Action.qml" + self._qml_url = "resources/qml/DiscoverUM3Action.qml" self._network_plugin = None #type: Optional[UM3OutputDevicePlugin] @@ -174,7 +174,7 @@ class DiscoverUM3Action(MachineAction): plugin_path = PluginRegistry.getInstance().getPluginPath("UM3NetworkPrinting") if not plugin_path: return - path = os.path.join(plugin_path, "UM3InfoComponents.qml") + path = os.path.join(plugin_path, "resources/qml/UM3InfoComponents.qml") self.__additional_components_view = CuraApplication.getInstance().createQmlComponent(path, {"manager": self}) if not self.__additional_components_view: Logger.log("w", "Could not create ui components for UM3.") diff --git a/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py b/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py similarity index 99% rename from plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py rename to plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py index 8617b5b2ff..fe94500aa1 100644 --- a/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py @@ -76,7 +76,7 @@ class LegacyUM3OutputDevice(NetworkedPrinterOutputDevice): self.setIconName("print") - self._monitor_view_qml_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "MonitorItem.qml") + self._monitor_view_qml_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../resources/qml/MonitorItem.qml") self._output_controller = LegacyUM3PrinterOutputController(self) diff --git a/plugins/UM3NetworkPrinting/LegacyUM3PrinterOutputController.py b/plugins/UM3NetworkPrinting/src/LegacyUM3PrinterOutputController.py similarity index 100% rename from plugins/UM3NetworkPrinting/LegacyUM3PrinterOutputController.py rename to plugins/UM3NetworkPrinting/src/LegacyUM3PrinterOutputController.py diff --git a/plugins/UM3NetworkPrinting/SendMaterialJob.py b/plugins/UM3NetworkPrinting/src/SendMaterialJob.py similarity index 100% rename from plugins/UM3NetworkPrinting/SendMaterialJob.py rename to plugins/UM3NetworkPrinting/src/SendMaterialJob.py diff --git a/plugins/UM3NetworkPrinting/UM3OutputDevicePlugin.py b/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py similarity index 96% rename from plugins/UM3NetworkPrinting/UM3OutputDevicePlugin.py rename to plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py index f4749a6747..9c070f2de2 100644 --- a/plugins/UM3NetworkPrinting/UM3OutputDevicePlugin.py +++ b/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py @@ -260,6 +260,19 @@ class UM3OutputDevicePlugin(OutputDevicePlugin): # or "Legacy" UM3 device. cluster_size = int(properties.get(b"cluster_size", -1)) + printer_type = properties.get(b"machine", b"").decode("utf-8") + printer_type_identifiers = { + "9066": "ultimaker3", + "9511": "ultimaker3_extended", + "9051": "ultimaker_s5" + } + + for key, value in printer_type_identifiers.items(): + if printer_type.startswith(key): + properties[b"printer_type"] = bytes(value, encoding="utf8") + break + else: + properties[b"printer_type"] = b"Unknown" if cluster_size >= 0: device = ClusterUM3OutputDevice.ClusterUM3OutputDevice(name, address, properties) else: diff --git a/plugins/USBPrinting/AutoDetectBaudJob.py b/plugins/USBPrinting/AutoDetectBaudJob.py index f8af61c567..8b37c4b29d 100644 --- a/plugins/USBPrinting/AutoDetectBaudJob.py +++ b/plugins/USBPrinting/AutoDetectBaudJob.py @@ -77,6 +77,7 @@ class AutoDetectBaudJob(Job): self.setResult(baud_rate) Logger.log("d", "Detected baud rate {baud_rate} on serial {serial} on retry {retry} with after {time_elapsed:0.2f} seconds.".format( serial = self._serial_port, baud_rate = baud_rate, retry = retry, time_elapsed = time() - start_timeout_time)) + serial.close() # close serial port so it can be opened by the USBPrinterOutputDevice return serial.write(b"M105\n") diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index b04b51314c..4813696ffe 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/plugins/USBPrinting/USBPrinterOutputDevice.py @@ -237,7 +237,7 @@ class USBPrinterOutputDevice(PrinterOutputDevice): if self._firmware_name is None: self.sendCommand("M115") - if (b"ok " in line and b"T:" in line) or b"ok T:" in line or line.startswith(b"T:") or b"ok B:" in line or line.startswith(b"B:"): # Temperature message. 'T:' for extruder and 'B:' for bed + if (b"ok " in line and b"T:" in line) or line.startswith(b"T:") or b"ok B:" in line or line.startswith(b"B:"): # Temperature message. 'T:' for extruder and 'B:' for bed extruder_temperature_matches = re.findall(b"T(\d*): ?([\d\.]+) ?\/?([\d\.]+)?", line) # Update all temperature values matched_extruder_nrs = [] diff --git a/plugins/USBPrinting/plugin.json b/plugins/USBPrinting/plugin.json index 27e07c45b2..3484c8a48a 100644 --- a/plugins/USBPrinting/plugin.json +++ b/plugins/USBPrinting/plugin.json @@ -2,7 +2,7 @@ "name": "USB printing", "author": "Ultimaker B.V.", "version": "1.0.0", - "api": 4, + "api": 5, "description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.", "i18n-catalog": "cura" } diff --git a/plugins/UltimakerMachineActions/plugin.json b/plugins/UltimakerMachineActions/plugin.json index 57b3e6bc8f..b60c7df88e 100644 --- a/plugins/UltimakerMachineActions/plugin.json +++ b/plugins/UltimakerMachineActions/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/UserAgreement/plugin.json b/plugins/UserAgreement/plugin.json index b10abc5640..50a2aa0441 100644 --- a/plugins/UserAgreement/plugin.json +++ b/plugins/UserAgreement/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Ask the user once if he/she agrees with our license.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json b/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json index 79115f931e..463fcdc941 100644 --- a/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 2.1 to Cura 2.2.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json b/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json index d213042ad2..e7a0b1c559 100644 --- a/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 2.2 to Cura 2.4.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade25to26/VersionUpgrade25to26.py b/plugins/VersionUpgrade/VersionUpgrade25to26/VersionUpgrade25to26.py index 54b561c847..2430b35ea0 100644 --- a/plugins/VersionUpgrade/VersionUpgrade25to26/VersionUpgrade25to26.py +++ b/plugins/VersionUpgrade/VersionUpgrade25to26/VersionUpgrade25to26.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017 Ultimaker B.V. +# Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import configparser #To parse the files we need to upgrade and write the new files. @@ -9,8 +9,6 @@ from urllib.parse import quote_plus from UM.Resources import Resources from UM.VersionUpgrade import VersionUpgrade -from cura.CuraApplication import CuraApplication - _removed_settings = { #Settings that were removed in 2.5. "start_layers_at_same_position", "sub_div_rad_mult" @@ -152,7 +150,7 @@ class VersionUpgrade25to26(VersionUpgrade): ## Acquires the next unique extruder stack index number for the Custom FDM Printer. def _acquireNextUniqueCustomFdmPrinterExtruderStackIdIndex(self): - extruder_stack_dir = Resources.getPath(CuraApplication.ResourceTypes.ExtruderStack) + extruder_stack_dir = os.path.join(Resources.getDataStoragePath(), "extruders") file_name_list = os.listdir(extruder_stack_dir) file_name_list = [os.path.basename(file_name) for file_name in file_name_list] while True: @@ -173,7 +171,7 @@ class VersionUpgrade25to26(VersionUpgrade): def _checkCustomFdmPrinterHasExtruderStack(self, machine_id): # go through all extruders and make sure that this custom FDM printer has extruder stacks. - extruder_stack_dir = Resources.getPath(CuraApplication.ResourceTypes.ExtruderStack) + extruder_stack_dir = os.path.join(Resources.getDataStoragePath(), "extruders") has_extruders = False for item in os.listdir(extruder_stack_dir): file_path = os.path.join(extruder_stack_dir, item) @@ -245,9 +243,9 @@ class VersionUpgrade25to26(VersionUpgrade): parser.write(extruder_output) extruder_filename = quote_plus(stack_id) + ".extruder.cfg" - extruder_stack_dir = Resources.getPath(CuraApplication.ResourceTypes.ExtruderStack) - definition_changes_dir = Resources.getPath(CuraApplication.ResourceTypes.DefinitionChangesContainer) - user_settings_dir = Resources.getPath(CuraApplication.ResourceTypes.UserInstanceContainer) + extruder_stack_dir = os.path.join(Resources.getDataStoragePath(), "extruders") + definition_changes_dir = os.path.join(Resources.getDataStoragePath(), "definition_changes") + user_settings_dir = os.path.join(Resources.getDataStoragePath(), "user") with open(os.path.join(definition_changes_dir, definition_changes_filename), "w", encoding = "utf-8") as f: f.write(definition_changes_output.getvalue()) diff --git a/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json b/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json index 759b6368fd..3029539887 100644 --- a/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 2.5 to Cura 2.6.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py b/plugins/VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py index 2037a0211d..dfa436e5bd 100644 --- a/plugins/VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py +++ b/plugins/VersionUpgrade/VersionUpgrade26to27/VersionUpgrade26to27.py @@ -1,11 +1,10 @@ -# Copyright (c) 2017 Ultimaker B.V. +# Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. import configparser #To parse the files we need to upgrade and write the new files. import io #To serialise configparser output to a string. from UM.VersionUpgrade import VersionUpgrade -from cura.CuraApplication import CuraApplication # a dict of renamed quality profiles: : _renamed_quality_profiles = { diff --git a/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json b/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json index 3c3d7fff8c..225da67235 100644 --- a/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 2.6 to Cura 2.7.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json b/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json index 3df84ff7e6..9a139851ec 100644 --- a/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 2.7 to Cura 3.0.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json b/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json index d80b820976..cf42b3f6cd 100644 --- a/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 3.0 to Cura 3.1.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json b/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json index fbce09c807..f9cc968dae 100644 --- a/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 3.2 to Cura 3.3.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json b/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json index 164b79d504..f5ba7235d1 100644 --- a/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 3.3 to Cura 3.4.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade34to40/VersionUpgrade34to40.py b/plugins/VersionUpgrade/VersionUpgrade34to35/VersionUpgrade34to35.py similarity index 99% rename from plugins/VersionUpgrade/VersionUpgrade34to40/VersionUpgrade34to40.py rename to plugins/VersionUpgrade/VersionUpgrade34to35/VersionUpgrade34to35.py index a61aae06bb..9e3ea03c55 100644 --- a/plugins/VersionUpgrade/VersionUpgrade34to40/VersionUpgrade34to40.py +++ b/plugins/VersionUpgrade/VersionUpgrade34to35/VersionUpgrade34to35.py @@ -60,8 +60,8 @@ _RENAMED_MATERIAL_PROFILES = { } ## Upgrades configurations from the state they were in at version 3.4 to the -# state they should be in at version 4.0. -class VersionUpgrade34to40(VersionUpgrade): +# state they should be in at version 3.5. +class VersionUpgrade34to35(VersionUpgrade): ## Gets the version number from a CFG file in Uranium's 3.3 format. # diff --git a/plugins/VersionUpgrade/VersionUpgrade34to40/__init__.py b/plugins/VersionUpgrade/VersionUpgrade34to35/__init__.py similarity index 95% rename from plugins/VersionUpgrade/VersionUpgrade34to40/__init__.py rename to plugins/VersionUpgrade/VersionUpgrade34to35/__init__.py index ad7a33b61a..9d3410e40d 100644 --- a/plugins/VersionUpgrade/VersionUpgrade34to40/__init__.py +++ b/plugins/VersionUpgrade/VersionUpgrade34to35/__init__.py @@ -1,9 +1,9 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from . import VersionUpgrade34to40 +from . import VersionUpgrade34to35 -upgrade = VersionUpgrade34to40.VersionUpgrade34to40() +upgrade = VersionUpgrade34to35.VersionUpgrade34to35() def getMetaData(): diff --git a/plugins/VersionUpgrade/VersionUpgrade34to40/plugin.json b/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json similarity index 70% rename from plugins/VersionUpgrade/VersionUpgrade34to40/plugin.json rename to plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json index 1059ca3e57..b73001b683 100644 --- a/plugins/VersionUpgrade/VersionUpgrade34to40/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json @@ -1,8 +1,8 @@ { - "name": "Version Upgrade 3.4 to 4.0", + "name": "Version Upgrade 3.4 to 3.5", "author": "Ultimaker B.V.", "version": "1.0.0", - "description": "Upgrades configurations from Cura 3.4 to Cura 4.0.", - "api": 4, + "description": "Upgrades configurations from Cura 3.4 to Cura 3.5.", + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade34to40/tests/TestVersionUpgrade34to40.py b/plugins/VersionUpgrade/VersionUpgrade34to35/tests/TestVersionUpgrade34to35.py similarity index 85% rename from plugins/VersionUpgrade/VersionUpgrade34to40/tests/TestVersionUpgrade34to40.py rename to plugins/VersionUpgrade/VersionUpgrade34to35/tests/TestVersionUpgrade34to35.py index 22df0d6487..90b2cb5dea 100644 --- a/plugins/VersionUpgrade/VersionUpgrade34to40/tests/TestVersionUpgrade34to40.py +++ b/plugins/VersionUpgrade/VersionUpgrade34to35/tests/TestVersionUpgrade34to35.py @@ -4,12 +4,12 @@ import configparser #To parse the resulting config files. import pytest #To register tests with. -import VersionUpgrade34to40 #The module we're testing. +import VersionUpgrade34to35 #The module we're testing. ## Creates an instance of the upgrader to test with. @pytest.fixture def upgrader(): - return VersionUpgrade34to40.VersionUpgrade34to40() + return VersionUpgrade34to35.VersionUpgrade34to35() test_upgrade_version_nr_data = [ ("Empty config file", diff --git a/plugins/X3DReader/plugin.json b/plugins/X3DReader/plugin.json index f18c7f033d..9ee09e43df 100644 --- a/plugins/X3DReader/plugin.json +++ b/plugins/X3DReader/plugin.json @@ -3,6 +3,6 @@ "author": "Seva Alekseyev", "version": "0.5.0", "description": "Provides support for reading X3D files.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/XRayView/plugin.json b/plugins/XRayView/plugin.json index 4e89690c13..576dec4656 100644 --- a/plugins/XRayView/plugin.json +++ b/plugins/XRayView/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides the X-Ray view.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 7d9b2aacc3..011941eec7 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -269,7 +269,7 @@ class XmlMaterialProfile(InstanceContainer): # Find all hotend sub-profiles corresponding to this material and machine and add them to this profile. buildplate_dict = {} # type: Dict[str, Any] for variant_name, variant_dict in machine_variant_map[definition_id].items(): - variant_type = variant_dict["variant_node"].metadata["hardware_type"] + variant_type = variant_dict["variant_node"].getMetaDataEntry("hardware_type", str(VariantType.NOZZLE)) variant_type = VariantType(variant_type) if variant_type == VariantType.NOZZLE: # The hotend identifier is not the containers name, but its "name". diff --git a/plugins/XmlMaterialProfile/plugin.json b/plugins/XmlMaterialProfile/plugin.json index 17056dcb3e..4b2901c375 100644 --- a/plugins/XmlMaterialProfile/plugin.json +++ b/plugins/XmlMaterialProfile/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides capabilities to read and write XML-based material profiles.", - "api": 4, + "api": 5, "i18n-catalog": "cura" } diff --git a/resources/bundled_packages.json b/resources/bundled_packages/cura.json similarity index 96% rename from resources/bundled_packages.json rename to resources/bundled_packages/cura.json index d216415921..7107bbe4f0 100644 --- a/resources/bundled_packages.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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -23,7 +23,7 @@ "display_name": "3MF Writer", "description": "Provides support for writing 3MF files.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -40,7 +40,7 @@ "display_name": "Change Log", "description": "Shows changes since latest checked version.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -57,7 +57,7 @@ "display_name": "CuraEngine Backend", "description": "Provides the link to the CuraEngine slicing backend.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -74,7 +74,7 @@ "display_name": "Cura Profile Reader", "description": "Provides support for importing Cura profiles.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -91,7 +91,7 @@ "display_name": "Cura Profile Writer", "description": "Provides support for exporting Cura profiles.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -108,7 +108,7 @@ "display_name": "Firmware Update Checker", "description": "Checks for firmware updates.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -125,7 +125,7 @@ "display_name": "Compressed G-code Reader", "description": "Reads g-code from a compressed archive.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -142,7 +142,7 @@ "display_name": "Compressed G-code Writer", "description": "Writes g-code to a compressed archive.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -159,7 +159,7 @@ "display_name": "G-Code Profile Reader", "description": "Provides support for importing profiles from g-code files.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -176,7 +176,7 @@ "display_name": "G-Code Reader", "description": "Allows loading and displaying G-code files.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "VictorLarchenko", @@ -193,7 +193,7 @@ "display_name": "G-Code Writer", "description": "Writes g-code to a file.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -210,7 +210,7 @@ "display_name": "Image Reader", "description": "Enables ability to generate printable geometry from 2D image files.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -227,7 +227,7 @@ "display_name": "Legacy Cura Profile Reader", "description": "Provides support for importing profiles from legacy Cura versions.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -244,7 +244,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -261,7 +261,7 @@ "display_name": "Model Checker", "description": "Checks models and print configuration for possible printing issues and give suggestions.", "package_version": "0.1.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -278,7 +278,7 @@ "display_name": "Monitor Stage", "description": "Provides a monitor stage in Cura.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -295,7 +295,7 @@ "display_name": "Per-Object Settings Tool", "description": "Provides the per-model settings.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -312,7 +312,7 @@ "display_name": "Post Processing", "description": "Extension that allows for user created scripts for post processing.", "package_version": "2.2.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -329,7 +329,7 @@ "display_name": "Prepare Stage", "description": "Provides a prepare stage in Cura.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -346,7 +346,7 @@ "display_name": "Removable Drive Output Device", "description": "Provides removable drive hotplugging and writing support.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -363,7 +363,7 @@ "display_name": "Simulation View", "description": "Provides the Simulation view.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -380,7 +380,7 @@ "display_name": "Slice Info", "description": "Submits anonymous slice info. Can be disabled through preferences.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -397,7 +397,7 @@ "display_name": "Solid View", "description": "Provides a normal solid mesh view.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -414,7 +414,7 @@ "display_name": "Support Eraser Tool", "description": "Creates an eraser mesh to block the printing of support in certain places.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -431,7 +431,7 @@ "display_name": "Toolbox", "description": "Find, manage and install new Cura packages.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -448,7 +448,7 @@ "display_name": "UFP Writer", "description": "Provides support for writing Ultimaker Format Packages.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -465,7 +465,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -482,7 +482,7 @@ "display_name": "UM3 Network Printing", "description": "Manages network connections to Ultimaker 3 printers.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -499,7 +499,7 @@ "display_name": "USB Printing", "description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -516,7 +516,7 @@ "display_name": "User Agreement", "description": "Ask the user once if he/she agrees with our license.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -533,7 +533,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -550,7 +550,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -567,7 +567,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -584,7 +584,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -601,7 +601,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -618,7 +618,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -635,7 +635,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -652,7 +652,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -662,14 +662,14 @@ } } }, - "VersionUpgrade34to40": { + "VersionUpgrade34to35": { "package_info": { - "package_id": "VersionUpgrade34to40", + "package_id": "VersionUpgrade34to35", "package_type": "plugin", - "display_name": "Version Upgrade 3.4 to 4.0", - "description": "Upgrades configurations from Cura 3.4 to Cura 4.0.", + "display_name": "Version Upgrade 3.4 to 3.5", + "description": "Upgrades configurations from Cura 3.4 to Cura 3.5.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -686,7 +686,7 @@ "display_name": "X3D Reader", "description": "Provides support for reading X3D files.", "package_version": "0.5.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "SevaAlekseyev", @@ -703,7 +703,7 @@ "display_name": "XML Material Profiles", "description": "Provides capabilities to read and write XML-based material profiles.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -720,7 +720,7 @@ "display_name": "X-Ray View", "description": "Provides the X-Ray view.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com", "author": { "author_id": "Ultimaker", @@ -971,7 +971,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://dagoma.fr/boutique/filaments.html", "author": { "author_id": "Dagoma", @@ -988,7 +988,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.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40", "author": { "author_id": "FABtotum", @@ -1005,7 +1005,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.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53", "author": { "author_id": "FABtotum", @@ -1022,7 +1022,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.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39", "author": { "author_id": "FABtotum", @@ -1039,7 +1039,7 @@ "display_name": "FABtotum TPU Shore 98A", "description": "", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66", "author": { "author_id": "FABtotum", @@ -1056,7 +1056,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/", "author": { "author_id": "Fiberlogy", @@ -1073,7 +1073,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://dagoma.fr", "author": { "author_id": "Dagoma", @@ -1090,7 +1090,7 @@ "display_name": "IMADE3D JellyBOX PETG", "description": "", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1107,7 +1107,7 @@ "display_name": "IMADE3D JellyBOX PLA", "description": "", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1124,7 +1124,7 @@ "display_name": "Octofiber PLA", "description": "PLA material from Octofiber.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://nl.octofiber.com/3d-printing-filament/pla.html", "author": { "author_id": "Octofiber", @@ -1141,7 +1141,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "http://www.polymaker.com/shop/polyflex/", "author": { "author_id": "Polymaker", @@ -1158,7 +1158,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "http://www.polymaker.com/shop/polymax/", "author": { "author_id": "Polymaker", @@ -1175,7 +1175,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "http://www.polymaker.com/shop/polyplus-true-colour/", "author": { "author_id": "Polymaker", @@ -1192,7 +1192,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.0", - "sdk_version": 4, + "sdk_version": 5, "website": "http://www.polymaker.com/shop/polywood/", "author": { "author_id": "Polymaker", @@ -1209,7 +1209,7 @@ "display_name": "Ultimaker ABS", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "Ultimaker", @@ -1228,7 +1228,7 @@ "display_name": "Ultimaker CPE", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "Ultimaker", @@ -1247,7 +1247,7 @@ "display_name": "Ultimaker Nylon", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "Ultimaker", @@ -1266,7 +1266,7 @@ "display_name": "Ultimaker PC", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com/products/materials/pc", "author": { "author_id": "Ultimaker", @@ -1285,7 +1285,7 @@ "display_name": "Ultimaker PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "Ultimaker", @@ -1304,7 +1304,7 @@ "display_name": "Ultimaker PVA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "Ultimaker", @@ -1323,7 +1323,7 @@ "display_name": "Vertex Delta ABS", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1340,7 +1340,7 @@ "display_name": "Vertex Delta PET", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1357,7 +1357,7 @@ "display_name": "Vertex Delta PLA", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1374,7 +1374,7 @@ "display_name": "Vertex Delta TPU", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.0.0", - "sdk_version": 4, + "sdk_version": 5, "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", diff --git a/resources/definitions/bq_hephestos_2.def.json b/resources/definitions/bq_hephestos_2.def.json index ca0e66ada2..90a86433fb 100644 --- a/resources/definitions/bq_hephestos_2.def.json +++ b/resources/definitions/bq_hephestos_2.def.json @@ -17,8 +17,8 @@ "overrides": { "machine_name": { "default_value": "BQ Hephestos 2" }, - "machine_start_gcode": { "default_value": "; -- START GCODE --\nM104 S{material_print_temperature} ; Heat up extruder while leveling\nM800 ; Custom GCODE to fire start print procedure\nM109 S{material_print_temperature} ; Makes sure the temperature is correct before printing\n; -- end of START GCODE --" }, - "machine_end_gcode": { "default_value": "; -- END GCODE --\nM801 ; Custom GCODE to fire end print procedure\n; -- end of END GCODE --" }, + "machine_start_gcode": { "default_value": "; -- START GCODE --\nM104 S{material_print_temperature}\nG28 ; Zero-ing position\nG29 ; Auto bed-leveling\nG0 X4 Y297 Z15 F4000 ; Fast move to BQ's start position\nG90 ; Set to Absolute Positioning\nG92 E0 ; Reset extruder 0\nG1 F1800 ; Set default feedrate\nM109 S{material_print_temperature} ; Makes sure the temperature is correct before printing\n; -- end of START GCODE --" }, + "machine_end_gcode": { "default_value": "; -- END GCODE --\nM801 ; Marlin G-CODE to fire end print procedure\n; -- end of END GCODE --" }, "machine_width": { "default_value": 210 }, "machine_depth": { "default_value": 297 }, "machine_height": { "default_value": 220 }, diff --git a/resources/definitions/cartesio.def.json b/resources/definitions/cartesio.def.json index 57c16241a0..9c7a95cceb 100644 --- a/resources/definitions/cartesio.def.json +++ b/resources/definitions/cartesio.def.json @@ -11,7 +11,6 @@ "has_machine_quality": true, "has_materials": true, "has_machine_materials": true, - "has_variant_materials": true, "has_variants": true, "variants_name": "Tool", diff --git a/resources/definitions/creality_cr10.def.json b/resources/definitions/creality_cr10.def.json index b727834db3..fb63867163 100644 --- a/resources/definitions/creality_cr10.def.json +++ b/resources/definitions/creality_cr10.def.json @@ -37,7 +37,7 @@ "top_bottom_thickness": { "default_value": 0.6 }, - "top_bottom_pattern": { + "top_bottom_pattern_0": { "default_value": "concentric" }, "infill_pattern": { diff --git a/resources/definitions/creality_ender3.def.json b/resources/definitions/creality_ender3.def.json new file mode 100755 index 0000000000..2c9bfa04d0 --- /dev/null +++ b/resources/definitions/creality_ender3.def.json @@ -0,0 +1,89 @@ +{ + "name": "Creality Ender-3", + "version": 2, + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Sacha Telgenhof", + "manufacturer": "Creality3D", + "file_formats": "text/x-gcode", + "platform": "creality_ender3_platform.stl", + "preferred_quality_type": "draft", + "machine_extruder_trains": { + "0": "creality_ender3_extruder_0" + } + }, + "overrides": { + "machine_name": { + "default_value": "Creality Ender-3" + }, + "machine_width": { + "default_value": 220 + }, + "machine_height": { + "default_value": 250 + }, + "machine_depth": { + "default_value": 220 + }, + "machine_heated_bed": { + "default_value": true + }, + "gantry_height": { + "default_value": 30 + }, + "machine_head_polygon": { + "default_value": [ + [-30, 34], + [-30, -32], + [30, -32], + [30, 34] + ] + }, + "acceleration_enabled": { + "default_value": true + }, + "acceleration_print": { + "default_value": 500 + }, + "acceleration_travel": { + "default_value": 500 + }, + "jerk_enabled": { + "default_value": true + }, + "jerk_travel": { + "default_value": 20 + }, + "layer_height_0": { + "default_value": 0.2 + }, + "adhesion_type": { + "default_value": "skirt" + }, + "top_bottom_thickness": { + "default_value": 0.6 + }, + "retraction_amount": { + "default_value": 5 + }, + "retraction_speed": { + "default_value": 40 + }, + "cool_min_layer_time": { + "default_value": 10 + }, + "skirt_line_count": { + "default_value": 4 + }, + "skirt_gap": { + "default_value": 5 + }, + "machine_start_gcode": { + "default_value": "; Ender 3 Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nG1 Z5.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 Z5.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed" + }, + "machine_end_gcode": { + "default_value": "; Ender 3 Custom End G-code\nG4 ; Wait\nM220 S100 ; Reset Speed factor override percentage to default (100%)\nM221 S100 ; Reset Extrude factor override percentage to default (100%)\nG91 ; Set coordinates to relative\nG1 F1800 E-3 ; Retract filament 3 mm to prevent oozing\nG1 F3000 Z10 ; Move Z Axis up 10 mm to allow filament ooze freely\nG90 ; Set coordinates to absolute\nG1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal\nM104 S0 ; Turn off Extruder temperature\nM140 S0 ; Turn off Heat Bed\nM106 S0 ; Turn off Cooling Fan\nM107 ; Turn off Fan\nM84 ; Disable stepper motors" + } + } +} \ No newline at end of file diff --git a/resources/definitions/dagoma_neva_magis.def.json b/resources/definitions/dagoma_magis.def.json similarity index 92% rename from resources/definitions/dagoma_neva_magis.def.json rename to resources/definitions/dagoma_magis.def.json index 0b7b50cb5f..75e6e449cd 100644 --- a/resources/definitions/dagoma_neva_magis.def.json +++ b/resources/definitions/dagoma_magis.def.json @@ -1,5 +1,5 @@ { - "name": "Dagoma NEVA Magis", + "name": "Dagoma Magis", "version": 2, "inherits": "fdmprinter", "metadata": { @@ -13,7 +13,7 @@ "has_materials": true, "machine_extruder_trains": { - "0": "dagoma_neva_magis_extruder_0" + "0": "dagoma_magis_extruder_0" } }, "overrides": { @@ -43,9 +43,6 @@ "machine_shape": { "default_value": "elliptic" }, - "machine_gcode_flavor": { - "default_value": "RepRap" - }, "machine_start_gcode": { "default_value": ";Gcode by Cura\nG90\nG28\nM107\nM109 R100\nG29\nM109 S{material_print_temperature_layer_0} U-55 X55 V-85 Y-85 W0.26 Z0.26\nM82\nG92 E0\nG1 F200 E6\nG92 E0\nG1 F200 E-3.5\nG0 Z0.15\nG0 X10\nG0 Z3\nG1 F6000\n" }, diff --git a/resources/definitions/dagoma_neva.def.json b/resources/definitions/dagoma_neva.def.json index cdd5725765..67c8795678 100644 --- a/resources/definitions/dagoma_neva.def.json +++ b/resources/definitions/dagoma_neva.def.json @@ -43,9 +43,6 @@ "machine_shape": { "default_value": "elliptic" }, - "machine_gcode_flavor": { - "default_value": "RepRap" - }, "machine_start_gcode": { "default_value": ";Gcode by Cura\nG90\nG28\nM107\nM109 R100\nG29\nM109 S{material_print_temperature_layer_0} U-55 X55 V-85 Y-85 W0.26 Z0.26\nM82\nG92 E0\nG1 F200 E6\nG92 E0\nG1 F200 E-3.5\nG0 Z0.15\nG0 X10\nG0 Z3\nG1 F6000\n" }, diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 3eb7cb1c32..823635a62a 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -77,6 +77,20 @@ "type": "str", "enabled": false }, + "material_diameter": + { + "label": "Diameter", + "description": "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament.", + "unit": "mm", + "type": "float", + "default_value": 2.85, + "minimum_value": "0.0001", + "minimum_value_warning": "0.4", + "maximum_value_warning": "3.5", + "enabled": "machine_gcode_flavor != \"UltiGCode\"", + "settable_per_mesh": false, + "settable_per_extruder": true + }, "material_bed_temp_wait": { "label": "Wait for Build Plate Heatup", @@ -216,6 +230,7 @@ "label": "Number of Extruders that are enabled", "description": "Number of extruder trains that are enabled; automatically set in software", "value": "machine_extruder_count", + "default_value": 1, "minimum_value": "1", "maximum_value": "16", "type": "int", @@ -1297,8 +1312,8 @@ "default_value": 0, "type": "float", "enabled": "travel_compensate_overlapping_walls_0_enabled or travel_compensate_overlapping_walls_x_enabled", - "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_mesh": true, + "settable_per_extruder": false }, "wall_min_flow_retract": { @@ -1307,8 +1322,8 @@ "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": false, - "settable_per_extruder": true + "settable_per_mesh": true, + "settable_per_extruder": false }, "fill_perimeter_gaps": { @@ -1438,7 +1453,7 @@ "label": "Ignore Small Z Gaps", "description": "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting.", "type": "bool", - "default_value": true, + "default_value": false, "limit_to_extruder": "top_bottom_extruder_nr", "settable_per_mesh": true }, @@ -1716,7 +1731,7 @@ "infill_wall_line_count": { "label": "Extra Infill Wall Count", - "description": "Add extra wals around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right.", + "description": "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right.", "default_value": 0, "type": "int", "minimum_value": "0", @@ -1819,9 +1834,9 @@ "unit": "mm", "type": "float", "default_value": 0.1, - "minimum_value": "resolveOrValue('layer_height')", + "minimum_value": "resolveOrValue('layer_height') if infill_line_distance > 0 else -999999", "maximum_value_warning": "0.75 * machine_nozzle_size", - "maximum_value": "resolveOrValue('layer_height') * (1.45 if spaghetti_infill_enabled else 8)", + "maximum_value": "resolveOrValue('layer_height') * (1.45 if spaghetti_infill_enabled else 8) if infill_line_distance > 0 else 999999", "value": "resolveOrValue('layer_height')", "enabled": "infill_sparse_density > 0 and not spaghetti_infill_enabled", "limit_to_extruder": "infill_extruder_nr", @@ -3802,7 +3817,8 @@ "value": "1 if (support_pattern == 'grid' or support_pattern == 'triangles' or support_pattern == 'concentric') else 0", "enabled": "support_enable", "limit_to_extruder": "support_infill_extruder_nr", - "settable_per_mesh": true + "settable_per_mesh": false, + "settable_per_extruder": true }, "zig_zaggify_support": { @@ -3875,6 +3891,19 @@ } } }, + "support_infill_angle": + { + "label": "Support Infill Line Direction", + "description": "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane.", + "unit": "°", + "type": "float", + "minimum_value": "-180", + "maximum_value": "180", + "default_value": 0, + "enabled": "support_enable and support_pattern != 'concentric' and support_infill_rate > 0", + "settable_per_mesh": false, + "settable_per_extruder": true + }, "support_z_distance": { "label": "Support Z Distance", @@ -6483,6 +6512,30 @@ "settable_per_extruder": false, "settable_per_meshgroup": false }, + "wall_overhang_angle": + { + "label": "Overhanging Wall Angle", + "description": "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging.", + "unit": "°", + "type": "float", + "minimum_value": "0", + "minimum_value_warning": "2", + "maximum_value": "90", + "default_value": 90, + "settable_per_mesh": true + }, + "wall_overhang_speed_factor": + { + "label": "Overhanging Wall Speed", + "description": "Overhanging walls will be printed at this percentage of their normal print speed.", + "unit": "%", + "type": "float", + "default_value": 100, + "minimum_value": "10", + "minimum_value_warning": "25", + "maximum_value": "100", + "settable_per_mesh": true + }, "bridge_settings_enabled": { "label": "Enable Bridge Settings", @@ -6502,8 +6555,8 @@ "minimum_value": "0", "default_value": 5, "enabled": "bridge_settings_enabled", - "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_mesh": true, + "settable_per_extruder": false }, "bridge_skin_support_threshold": { @@ -6517,18 +6570,6 @@ "enabled": "bridge_settings_enabled", "settable_per_mesh": true }, - "bridge_wall_max_overhang": - { - "label": "Bridge Wall Max Overhang", - "description": "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings.", - "unit": "%", - "default_value": 100, - "type": "float", - "minimum_value": "0", - "maximum_value": "100", - "enabled": "bridge_settings_enabled", - "settable_per_mesh": true - }, "bridge_wall_coast": { "label": "Bridge Wall Coasting", @@ -6539,7 +6580,7 @@ "minimum_value": "0", "maximum_value": "500", "enabled": "bridge_settings_enabled", - "settable_per_mesh": false + "settable_per_mesh": true }, "bridge_wall_speed": { diff --git a/resources/definitions/peopoly_moai.def.json b/resources/definitions/peopoly_moai.def.json index 5c03444d49..a578cc4240 100644 --- a/resources/definitions/peopoly_moai.def.json +++ b/resources/definitions/peopoly_moai.def.json @@ -4,13 +4,14 @@ "inherits": "fdmprinter", "metadata": { "visible": true, - "author": "fieldOfView", + "author": "Peopoly", "manufacturer": "Peopoly", "file_formats": "text/x-gcode", "has_machine_quality": true, "has_materials": false, - "machine_extruder_trains": - { + "platform": "moai.obj", + "platform_texture": "moai.jpg", + "machine_extruder_trains": { "0": "peopoly_moai_extruder_0" } }, @@ -46,7 +47,6 @@ "machine_end_gcode": { "default_value": "M104 S0\nM140 S0\nG28 X0 Y0\nM84" }, - "line_width": { "minimum_value_warning": "machine_nozzle_size" }, @@ -75,7 +75,14 @@ "value": "0.1" }, "top_bottom_thickness": { - "minimum_value_warning": "0.1" + "minimum_value_warning": "0.1", + "value": "0.1" + }, + "top_thickness": { + "minimum_value_warning": "resolveOrValue('layer_height')" + }, + "bottom_thickness": { + "minimum_value_warning": "resolveOrValue('layer_height')" }, "infill_sparse_thickness": { "maximum_value_warning": "0.5" @@ -102,24 +109,23 @@ "value": "speed_print" }, "speed_travel": { - "value": "300" + "value": 150 }, "speed_travel_layer_0": { - "value": "300" + "value": 150 }, "speed_layer_0": { - "value": "5" + "value": 5 }, "speed_slowdown_layers": { - "value": "2" + "value": 3 }, "infill_overlap": { - "value": "15" + "value": 15 }, "adhesion_type": { - "value": "\"none\"" + "value": "'none'" }, - "acceleration_enabled": { "value": "False" }, @@ -139,6 +145,10 @@ "enabled": false, "value": "False" }, + "cool_fan_speed_min": { + "enabled": false, + "value": 0 + }, "retraction_enable": { "enabled": false, "value": "False" @@ -148,7 +158,8 @@ "value": "'off'" }, "retract_at_layer_change": { - "enabled": false + "enabled": false, + "value": false }, "cool_min_layer_time_fan_speed_max": { "enabled": false @@ -158,6 +169,117 @@ }, "cool_fan_full_layer": { "enabled": false + }, + "minimum_polygon_circumference": { + "value": "0.1" + }, + "meshfix_maximum_resolution": { + "value": "0.005" + }, + "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" + }, + "wall_thickness": { + "value": 0.5 + }, + "infill_sparse_density": { + "value": 70 + }, + "infill_pattern": { + "value": "'lines'" + }, + "infill_angles": { + "value": "[0,90]" + }, + "cool_min_layer_time": { + "enabled": false, + "value": 0 + }, + "cool_min_speed": { + "enabled": false, + "value": 0 + }, + "cool_lift_head": { + "enabled": false, + "value": "False" + }, + "material_flow": { + "enabled": false + }, + "material_flow_layer_0": { + "enabled": false + }, + "speed_equalize_flow_enabled": { + "enabled": false, + "value": "False" + }, + "draft_shield_enabled": { + "enabled": false, + "value": "False" + }, + "z_seam_corner": { + "value": "'z_seam_corner_none'" + }, + "z_seam_type": { + "value": "'shortest'" + }, + "skin_no_small_gaps_heuristic": { + "value": "False" + }, + "ironing_enabled": { + "enabled": false, + "value": "False" + }, + "skin_overlap": { + "value": 5 + }, + "infill_wipe_dist": { + "value": 0 + }, + "expand_skins_expand_distance": { + "value": "( wall_line_width_0 + (wall_line_count - 1) * wall_line_width_x ) / 2" + }, + "max_feedrate_z_override": { + "value": 0, + "enabled": false + }, + "flow_rate_max_extrusion_offset": { + "enabled": false + }, + "flow_rate_extrusion_offset_factor": { + "enabled": false + }, + "adaptive_layer_height_enabled": { + "value": "False", + "enabled": false + }, + "bridge_settings_enabled": { + "value": "False", + "enabled": false + }, + "acceleration_enabled": { + "value": "False", + "enabled": false + }, + "relative_extrusion": { + "value": "False", + "enabled": false + }, + "coasting_enable": { + "value": "False", + "enabled": false } } } diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 08fe01a76b..b1daa6b780 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -13,7 +13,6 @@ "has_machine_quality": true, "has_materials": true, "has_machine_materials": true, - "has_variant_materials": true, "has_variants": true, "preferred_variant_name": "AA 0.4", "preferred_quality_type": "normal", @@ -90,7 +89,7 @@ "infill_overlap": { "value": "0" }, "infill_pattern": { "value": "'triangles'" }, "infill_wipe_dist": { "value": "0" }, - "initial_layer_line_width_factor": { "value": "120" }, + "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)" }, diff --git a/resources/definitions/ultimaker3_extended.def.json b/resources/definitions/ultimaker3_extended.def.json index 1e6c322c73..eb3cda9320 100644 --- a/resources/definitions/ultimaker3_extended.def.json +++ b/resources/definitions/ultimaker3_extended.def.json @@ -13,7 +13,6 @@ "platform_offset": [0, 0, 0], "has_machine_quality": true, "has_machine_materials": true, - "has_variant_materials": true, "has_materials": true, "has_variants": true, "preferred_variant_name": "AA 0.4", diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index f6971d0da3..115c84c0db 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -15,7 +15,6 @@ "has_machine_quality": true, "has_materials": true, "has_machine_materials": true, - "has_variant_materials": true, "has_variant_buildplates": true, "has_variants": true, "preferred_variant_name": "AA 0.4", diff --git a/resources/extruders/builder_premium_large_front.def.json b/resources/extruders/builder_premium_large_front.def.json index 059f7ef8a7..4834bc8fd9 100644 --- a/resources/extruders/builder_premium_large_front.def.json +++ b/resources/extruders/builder_premium_large_front.def.json @@ -16,13 +16,13 @@ "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, "material_diameter": { "default_value": 1.75 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, + + "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": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "extruder_prime_pos_abs": { "default_value": true } + "extruder_prime_pos_abs": { "default_value": true } } } diff --git a/resources/extruders/builder_premium_large_rear.def.json b/resources/extruders/builder_premium_large_rear.def.json index 769178a8b4..f257749ea4 100644 --- a/resources/extruders/builder_premium_large_rear.def.json +++ b/resources/extruders/builder_premium_large_rear.def.json @@ -20,9 +20,9 @@ "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_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "extruder_prime_pos_abs": { "default_value": true } + "extruder_prime_pos_abs": { "default_value": true } } } diff --git a/resources/extruders/builder_premium_medium_front.def.json b/resources/extruders/builder_premium_medium_front.def.json index bd735fbe25..05dcb3d49f 100644 --- a/resources/extruders/builder_premium_medium_front.def.json +++ b/resources/extruders/builder_premium_medium_front.def.json @@ -16,13 +16,13 @@ "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, "material_diameter": { "default_value": 1.75 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, + + "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": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "extruder_prime_pos_abs": { "default_value": true } + "extruder_prime_pos_abs": { "default_value": true } } } diff --git a/resources/extruders/builder_premium_medium_rear.def.json b/resources/extruders/builder_premium_medium_rear.def.json index 59e688ff71..3461e07f09 100644 --- a/resources/extruders/builder_premium_medium_rear.def.json +++ b/resources/extruders/builder_premium_medium_rear.def.json @@ -20,9 +20,9 @@ "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_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "extruder_prime_pos_abs": { "default_value": true } + "extruder_prime_pos_abs": { "default_value": true } } } diff --git a/resources/extruders/builder_premium_small_front.def.json b/resources/extruders/builder_premium_small_front.def.json index 17fb914a42..7a1c352c73 100644 --- a/resources/extruders/builder_premium_small_front.def.json +++ b/resources/extruders/builder_premium_small_front.def.json @@ -16,13 +16,13 @@ "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, "material_diameter": { "default_value": 1.75 }, - - "machine_extruder_start_pos_abs": { "default_value": true }, + + "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": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "extruder_prime_pos_abs": { "default_value": true } + "extruder_prime_pos_abs": { "default_value": true } } } diff --git a/resources/extruders/builder_premium_small_rear.def.json b/resources/extruders/builder_premium_small_rear.def.json index 70a2dbf1aa..7085236a5c 100644 --- a/resources/extruders/builder_premium_small_rear.def.json +++ b/resources/extruders/builder_premium_small_rear.def.json @@ -20,9 +20,9 @@ "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_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, - "extruder_prime_pos_abs": { "default_value": true } + "extruder_prime_pos_abs": { "default_value": true } } } diff --git a/resources/extruders/creality_ender3_extruder_0.def.json b/resources/extruders/creality_ender3_extruder_0.def.json new file mode 100644 index 0000000000..d5ec01a713 --- /dev/null +++ b/resources/extruders/creality_ender3_extruder_0.def.json @@ -0,0 +1,22 @@ +{ + "id": "creality_ender3_extruder_0", + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "creality_ender3", + "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/dagoma_neva_magis_extruder_0.def.json b/resources/extruders/dagoma_magis_extruder_0.def.json similarity index 90% rename from resources/extruders/dagoma_neva_magis_extruder_0.def.json rename to resources/extruders/dagoma_magis_extruder_0.def.json index 0d5fd3c9b4..0a5850f2ed 100644 --- a/resources/extruders/dagoma_neva_magis_extruder_0.def.json +++ b/resources/extruders/dagoma_magis_extruder_0.def.json @@ -3,7 +3,7 @@ "name": "Extruder 1", "inherits": "fdmextruder", "metadata": { - "machine": "dagoma_neva_magis", + "machine": "dagoma_magis", "position": "0" }, diff --git a/resources/extruders/peopoly_moai_extruder_0.def.json b/resources/extruders/peopoly_moai_extruder_0.def.json index 7940002926..bbffd4ac4d 100644 --- a/resources/extruders/peopoly_moai_extruder_0.def.json +++ b/resources/extruders/peopoly_moai_extruder_0.def.json @@ -11,6 +11,9 @@ "overrides": { "extruder_nr": { "default_value": 0 }, "machine_nozzle_size": { "default_value": 0.067 }, - "material_diameter": { "default_value": 1.75 } + "material_diameter": { + "enabled": false, + "default_value": 1.75 + } } } diff --git a/resources/extruders/ultimaker_s5_extruder_left.def.json b/resources/extruders/ultimaker_s5_extruder_left.def.json index c92873b987..275f60bb31 100644 --- a/resources/extruders/ultimaker_s5_extruder_left.def.json +++ b/resources/extruders/ultimaker_s5_extruder_left.def.json @@ -17,10 +17,10 @@ "machine_nozzle_offset_y": { "default_value": 0 }, "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 310 }, + "machine_extruder_start_pos_x": { "default_value": 330 }, "machine_extruder_start_pos_y": { "default_value": 237 }, "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "default_value": 310 }, + "machine_extruder_end_pos_x": { "default_value": 330 }, "machine_extruder_end_pos_y": { "default_value": 237 }, "machine_nozzle_head_distance": { "default_value": 2.7 }, "extruder_prime_pos_x": { "default_value": -3 }, diff --git a/resources/extruders/ultimaker_s5_extruder_right.def.json b/resources/extruders/ultimaker_s5_extruder_right.def.json index 89d62b89a4..92e08f5cc5 100644 --- a/resources/extruders/ultimaker_s5_extruder_right.def.json +++ b/resources/extruders/ultimaker_s5_extruder_right.def.json @@ -17,10 +17,10 @@ "machine_nozzle_offset_y": { "default_value": 0 }, "machine_extruder_start_pos_abs": { "default_value": true }, - "machine_extruder_start_pos_x": { "default_value": 310 }, + "machine_extruder_start_pos_x": { "default_value": 330 }, "machine_extruder_start_pos_y": { "default_value": 219 }, "machine_extruder_end_pos_abs": { "default_value": true }, - "machine_extruder_end_pos_x": { "default_value": 310 }, + "machine_extruder_end_pos_x": { "default_value": 330 }, "machine_extruder_end_pos_y": { "default_value": 219 }, "machine_nozzle_head_distance": { "default_value": 4.2 }, "extruder_prime_pos_x": { "default_value": 333 }, diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 45a85a5849..2fe966fe99 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -1,20 +1,20 @@ -# Cura -# Copyright (C) 2018 Ultimaker -# This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2018. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" -"Language-Team: TEAM\n" -"Language: xx_XX\n" +"Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -58,78 +69,17 @@ msgid "" "guide

" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "" @@ -154,6 +104,12 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "" +"A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -176,6 +132,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -198,7 +159,7 @@ msgid "Save to Removable Drive {0}" msgstr "" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "" @@ -237,7 +198,7 @@ msgstr "" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "" @@ -266,8 +227,8 @@ msgstr "" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "" @@ -294,115 +255,115 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "" "Connected over the network. Please approve the access request on the printer." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "" "Access to the printer requested. Please approve the request on the printer" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "" "There is an issue with the configuration of your Ultimaker, which makes it " "impossible to start the print. Please resolve this issues before continuing." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "" "There is a mismatch between the configuration or calibration of the printer " @@ -410,40 +371,55 @@ msgid "" "that are inserted in your printer." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "" "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "" @@ -451,23 +427,23 @@ msgid "" "{remote_printcore_name}) selected for extruder {extruder_id}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "" "The PrintCores and/or materials on your printer differ from those within " @@ -475,44 +451,44 @@ msgid "" "and materials that are inserted in your printer." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "" @@ -522,7 +498,7 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "" "@info Don't translate {machine_name}, since it gets replaced by a printer " @@ -532,18 +508,18 @@ msgid "" "update the firmware on your printer." msgstr "" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "" @@ -553,17 +529,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "" @@ -577,32 +553,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "" "Allow Cura to send anonymized usage statistics to help prioritize future " @@ -615,18 +591,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "" - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -652,23 +616,24 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 msgctxt "@info:status" msgid "" "Unable to slice with the current material as it is incompatible with the " "selected machine or configuration." msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, python-brace-format msgctxt "@info:status" msgid "" @@ -676,7 +641,7 @@ msgid "" "errors: {0}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, python-brace-format msgctxt "@info:status" msgid "" @@ -684,26 +649,34 @@ msgid "" "errors on one or more models: {error_labels}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 msgctxt "@info:status" msgid "" "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "" +"Unable to slice because there are objects associated with disabled Extruder " +"%s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "" "Nothing to slice because none of the models fit the build volume. Please " "scale or rotate models to fit." msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "" @@ -730,18 +703,32 @@ msgctxt "@title:tab" msgid "Custom" msgstr "" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -752,18 +739,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 msgctxt "@info:generic" msgid "" "Make sure the g-code is suitable for your printer and printer configuration " @@ -776,16 +763,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -867,19 +869,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -893,19 +895,19 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "" "The selected material is incompatible with the selected machine or " "configuration." msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "" @@ -913,7 +915,7 @@ msgid "" "[%s]" msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "" @@ -1005,13 +1007,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "" -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -1038,44 +1040,44 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "" "Tried to restore a Cura backup that does not match your current version." @@ -1087,32 +1089,32 @@ msgid "Multiplying and placing objects" msgstr "" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "" @@ -1250,22 +1252,22 @@ msgctxt "@action:button" msgid "Send report" msgstr "" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, python-format msgctxt "" "@info 'width', 'depth' and 'height' are variable names that must NOT be " @@ -1273,97 +1275,97 @@ msgctxt "" msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "" "Distance from the left of the printhead to the center of the nozzle. Used to " @@ -1371,12 +1373,12 @@ msgid "" "\"One at a Time\"." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "" "Distance from the front of the printhead to the center of the nozzle. Used " @@ -1384,12 +1386,12 @@ msgid "" "printing \"One at a Time\"." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "" "Distance from the right of the printhead to the center of the nozzle. Used " @@ -1397,12 +1399,12 @@ msgid "" "printing \"One at a Time\"." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "" "Distance from the rear of the printhead to the center of the nozzle. Used to " @@ -1410,12 +1412,12 @@ msgid "" "\"One at a Time\"." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "" "The height difference between the tip of the nozzle and the gantry system (X " @@ -1423,69 +1425,69 @@ msgid "" "gantry when printing \"One at a Time\"." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "" "The nominal diameter of filament supported by the printer. The exact " "diameter will be overridden by the material and/or the profile." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "" @@ -1506,29 +1508,42 @@ msgid "" "Could not connect to the Cura Package database. Please check your connection." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "" @@ -1561,16 +1576,58 @@ msgctxt "@action:button" msgid "Back" msgstr "" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 msgctxt "@info" msgid "You will need to restart Cura before changes in packages have effect." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1614,12 +1671,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "" @@ -1629,9 +1686,14 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 @@ -1648,9 +1710,9 @@ msgstr "" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1698,24 +1760,24 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "" "This printer/group is already added to Cura. Please select another printer/" "group." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 msgctxt "@label" msgid "" "To print directly to your printer over the network, please make sure your " @@ -1727,335 +1789,341 @@ msgid "" "Select your printer from the list below:" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 msgctxt "@label" msgid "" "If your printer is not listed, read the network printing " "troubleshooting guide" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." +msgid "This printer is not set up to host a group of printers." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +msgid "This printer is the host for a group of %1 printers." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" +msgid "Manage queue" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "" @@ -2181,53 +2249,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "" @@ -2249,13 +2317,13 @@ msgid "Create new" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "" @@ -2272,7 +2340,7 @@ msgid "Update" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "" @@ -2283,7 +2351,7 @@ msgid "Printer Group" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "" @@ -2295,19 +2363,19 @@ msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2337,7 +2405,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "" @@ -2348,13 +2416,13 @@ msgid "Mode" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "" @@ -2369,6 +2437,84 @@ msgctxt "@action:button" msgid "Open" msgstr "" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "" +"@label Print estimates: m for meters, g for grams, %4 is currency and %3 is " +"print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2600,27 +2746,11 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" msgid "Are you sure you want to abort the print?" @@ -2654,19 +2784,17 @@ msgid "Customized" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "" @@ -2686,103 +2814,177 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "" +"Could not import material %1: %2" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "" +"Failed to export material to %1: %2" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2819,7 +3021,7 @@ msgid "Unit" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "" @@ -3021,7 +3223,7 @@ msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" +msgid "Always ask me this" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 @@ -3044,25 +3246,42 @@ msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" +msgid "Profiles" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "" +"Default behavior for changed setting values when switching to a different " +"profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 msgctxt "@info:tooltip" msgid "" "Should anonymous data about your print be sent to Ultimaker? Note, no " @@ -3070,56 +3289,37 @@ msgid "" "stored." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "" -"Should newly loaded models be arranged on the build plate? Used in " -"conjunction with multi build plate (EXPERIMENTAL)" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3163,7 +3363,7 @@ msgid "Aborting print..." msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "" @@ -3178,18 +3378,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3200,18 +3388,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3232,100 +3408,45 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "" -"Could not import material %1: %2" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "" -"Failed to export material to %1: %2" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "" @@ -3340,6 +3461,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3491,33 +3617,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "" @@ -3608,7 +3734,7 @@ msgid "" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "" @@ -3666,7 +3792,7 @@ msgid "The nozzle inserted in this extruder." msgstr "" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "" @@ -3696,6 +3822,21 @@ msgid "" "when you're ready to print." msgstr "" +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3792,38 +3933,11 @@ msgid "" "G-code files cannot be modified" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "" @@ -3838,29 +3952,29 @@ msgid "" "last bit of the slicing process." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" +msgid "Toggle Full Screen" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 @@ -3880,27 +3994,27 @@ msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" +msgid "3D View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" +msgid "Front View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" +msgid "Top View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" +msgid "Left Side View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" +msgid "Right Side View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 @@ -3955,188 +4069,187 @@ msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." +msgid "About..." msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" msgstr[0] "" msgstr[1] "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "" msgstr[1] "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "" msgstr[1] "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "" +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" +msgid "Clear Build Plate" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" +msgid "Reload All Models" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" +msgid "Reset All Model Transformations" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "" @@ -4159,131 +4272,147 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" +msgid "Export Selection..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 msgctxt "@text:window" msgid "" "We have found one or more G-Code files within the files you have selected. " @@ -4296,106 +4425,106 @@ msgctxt "@title:window" msgid "Save Project" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "" "This quality profile is not available for you current material and nozzle " "configuration. Please change these to enable this quality profile" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "" "A custom profile is currently active. To enable the quality slider, choose a " "default quality profile in Custom tab" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 msgctxt "@tooltip" msgid "" "You have modified some profile settings. If you want to change these go to " "custom mode." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 msgctxt "@label" msgid "" "Gradual infill will gradually increase the amount of infill towards the top." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "" "Select which extruder to use for support. This will build up supporting " @@ -4403,19 +4532,19 @@ msgid "" "mid air." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "" "Need help improving your prints?
Read the Ultimaker " @@ -4466,22 +4595,22 @@ msgctxt "@label" msgid "Printer type" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" +msgid "Use glue with this material combination" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "" @@ -4570,16 +4699,6 @@ msgctxt "name" msgid "God Mode" msgstr "" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "" - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4660,16 +4779,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "" - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4780,16 +4889,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "" - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4840,6 +4939,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4950,6 +5059,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "" + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 31ce980615..dac39b8de1 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: German\n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-Code-Datei" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -53,80 +64,23 @@ msgid "" "

{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

" +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/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Mit Doodle3D WLAN-Box drucken" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Mit Doodle3D WLAN-Box drucken" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Zu Doodle3D Connect verbinden" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Abbrechen" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Daten werden zu Doodle3D Connect gesendet" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Daten können nicht zu Doodle3D Connect gesendet werden. Ist noch ein weiterer Auftrag in Bearbeitung?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Daten werden auf Doodle3D Connect gespeichert" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Datei wurde zu Doodle3D Connect gesendet" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Connect wird geöffnet ..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Doodle3D Connect Web-Schnittstelle öffnen" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Änderungsprotokoll anzeigen" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Einstellungen Glätten aktiv" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "Das Profil wurde geglättet und aktiviert." @@ -151,6 +105,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Über USB verbunden" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -173,6 +132,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Komprimierte G-Code-Datei" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -195,7 +159,7 @@ msgid "Save to Removable Drive {0}" msgstr "Auf Wechseldatenträger speichern {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Es sind keine Dateiformate zum Schreiben vorhanden!" @@ -234,7 +198,7 @@ msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Fehler" @@ -263,8 +227,8 @@ msgstr "Wechseldatenträger auswerfen {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Warnhinweis" @@ -291,212 +255,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Wechseldatenträger" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Drucken über Netzwerk" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Drücken über Netzwerk" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Über Netzwerk verbunden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Über Netzwerk verbunden. Geben Sie die Zugriffsanforderung für den Drucker frei." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Über Netzwerk verbunden. Kein Zugriff auf die Druckerverwaltung." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Zugriff auf Drucker erforderlich. Bestätigen Sie den Zugriff auf den Drucker" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Authentifizierungsstatus" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Authentifizierungsstatus" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Erneut versuchen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Zugriffanforderung erneut senden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Zugriff auf den Drucker genehmigt" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Kein Zugriff auf das Drucken mit diesem Drucker. Druckauftrag kann nicht gesendet werden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Zugriff anfordern" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Zugriffsanforderung für den Drucker senden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Es kann kein neuer Druckauftrag gestartet werden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Es liegt ein Problem mit der Konfiguration Ihres Ultimaker vor, das den Druckstart verhindert. Lösen Sie dieses Problem bitte, bevor Sie fortfahren." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Konfiguration nicht übereinstimmend" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Möchten Sie wirklich mit der gewählten Konfiguration drucken?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Anforderungen zwischen der Druckerkonfiguration oder -kalibrierung und Cura stimmen nicht überein. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Das Senden neuer Aufträge ist (vorübergehend) blockiert; der vorherige Druckauftrag wird noch gesendet." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Daten werden zum Drucker gesendet" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Daten werden gesendet" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Abbrechen" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Kein PrintCore geladen in Steckplatz {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Kein Material geladen in Steckplatz {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "Abweichender PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) für Extruder gewählt {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Abweichendes Material (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Synchronisieren Ihres Druckers" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Möchten Sie Ihre aktuelle Druckerkonfiguration in Cura verwenden?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Die PrintCores und/oder Materialien auf Ihrem Drucker unterscheiden sich von denen Ihres aktuellen Projekts. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Über Netzwerk verbunden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Der Druckauftrag wurde erfolgreich an den Drucker gesendet." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Daten gesendet" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "In Monitor überwachen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "Drucker '{printer_name}' hat '{job_name}' vollständig gedrückt." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "Der Druckauftrag '{job_name}' wurde ausgeführt." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Druck vollendet" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Anschluss über Netzwerk" @@ -506,24 +485,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Überwachen" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "Für Ihren {machine_name} sind neue Funktionen verfügbar! Es wird empfohlen, ein Firmware-Update für Ihren Drucker auszuführen." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, 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/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Anleitung für die Aktualisierung" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Zugriff auf Update-Informationen nicht möglich." @@ -533,17 +512,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Schichtenansicht" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "Cura zeigt die Schichten nicht akkurat an, wenn Wire Printing aktiviert ist." -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Simulationsansicht" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "G-Code ändern" @@ -557,32 +536,32 @@ 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/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura erfasst anonymisierte Nutzungsstatistiken." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Daten werden erfasst" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Mehr Infos" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Siehe mehr Informationen dazu, was Cura sendet." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Zulassen" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Damit lassen Sie zu, dass Cura anonymisierte Nutzungsstatistiken sendet, um zukünftige Verbesserungen für Cura zu definieren. Einige Ihrer Präferenzen und Einstellungen, die Cura-Version und ein Hash der Modelle, die Sie slicen, werden gesendet." @@ -592,18 +571,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Cura 15.04-Profile" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Blender-Datei" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "Exportieren in \"{}\" Qualität nicht möglich!\nZurückgeschaltet auf \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -629,49 +596,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF-Bilddatei" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Slicing nicht möglich" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Es ist kein Objekt zum Schneiden vorhanden, da keines der Modelle der Druckabmessung entspricht. Bitte die Modelle passend skalieren oder drehen." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Schichten werden verarbeitet" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Informationen" @@ -698,18 +672,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Benutzerdefiniert" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-Datei" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Düse" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -720,18 +705,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "G-Datei" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "G-Code parsen" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "G-Code-Details" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -742,16 +727,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-Profil" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Profilassistent" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Profilassistent" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MF-Datei" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-Projekt 3MF-Datei" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -833,19 +833,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Unbekannt" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Vorgeschnittene Datei {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "Datei bereits vorhanden" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -857,23 +857,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Nicht überschrieben" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "Das gewählte Material ist mit der gewählten Maschine oder Konfiguration nicht kompatibel." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Material nicht kompatibel" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "Die Einstellungen wurden passend für die aktuelle Verfügbarkeit der Extruder geändert: [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Einstellungen aktualisiert" @@ -956,13 +956,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Für das Profil fehlt eine Qualitätsangabe." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Es konnte keine Qualitätsangabe {0} für die vorliegende Konfiguration gefunden werden." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -989,42 +989,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Dateien (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Benutzerdefiniertes Material" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Benutzerdefiniert" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Produktabmessungen" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Backup" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 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/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "Versucht, ein Cura-Backup zu erstellen, das nicht Ihrer aktuellen Version entspricht." @@ -1035,32 +1035,32 @@ msgid "Multiplying and placing objects" msgstr "Objekte vervielfältigen und platzieren" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Objekt-Platzierung" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Neue Position für Objekte finden" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Position finden" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Kann Position nicht finden" @@ -1078,7 +1078,12 @@ msgid "" "

Backups can be found in the configuration folder.

\n" "

Please send us this Crash Report to fix the problem.

\n" " " -msgstr "

Hoppla, bei Ultimaker Cura ist ein Problem aufgetreten.

\n

Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

\n

Backups sind im Konfigurationsordner abgelegt.

\n

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

\n " +msgstr "" +"

Hoppla, bei Ultimaker Cura ist ein Problem aufgetreten.

\n" +"

Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

\n" +"

Backups sind im Konfigurationsordner abgelegt.

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102 msgctxt "@action:button" @@ -1111,7 +1116,10 @@ msgid "" "

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

\n" "

Please use the \"Send report\" button to post a bug report automatically to our servers

\n" " " -msgstr "

Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

\n

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

\n " +msgstr "" +"

Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177 msgctxt "@title:groupbox" @@ -1191,223 +1199,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Bericht senden" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Geräte werden geladen..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Die Szene wird eingerichtet..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Die Benutzeroberfläche wird geladen..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "Das gewählte Modell war zu klein zum Laden." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Geräteeinstellungen" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Drucker" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Druckereinstellungen" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (Breite)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Tiefe)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Höhe)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Druckbettform" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Ausgang in Mitte" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Heizbares Bett" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "G-Code-Variante" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Druckkopfeinstellungen" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X min." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Abstand von der linken Seite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y min." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Abstand von der Vorderseite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X max." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Abstand von der rechten Seite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y max." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Abstand von der Rückseite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Brückenhöhe" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen). Wird verwendet, um Kollisionen zwischen vorherigen Drucken und der Brücke zu verhindern, wenn im Modus „Nacheinander“ gedruckt wird." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Anzahl Extruder" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "Start G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "G-Code-Befehle, die zum Start ausgeführt werden sollen." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "Ende G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Düseneinstellungen" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Düsengröße" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Kompatibler Materialdurchmesser" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "Der Nenndurchmesser des durch den Drucker unterstützten Filaments. Der exakte Durchmesser wird durch das Material und/oder das Profil überschrieben." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "X-Versatz Düse" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Y-Versatz Düse" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "G-Code Extruder-Start" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "G-Code Extruder-Ende" @@ -1427,29 +1435,42 @@ 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Plugins" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materialien" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Version" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Zuletzt aktualisiert" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Autor" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Unbekannt" @@ -1482,16 +1503,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Zurück" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Quit Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1523,7 +1584,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "Dieses Plugin enthält eine Lizenz.\nSie müssen diese Lizenz akzeptieren, um das Plugin zu installieren.\nStimmen Sie den nachfolgenden Bedingungen zu?" +msgstr "" +"Dieses Plugin enthält eine Lizenz.\n" +"Sie müssen diese Lizenz akzeptieren, um das Plugin zu installieren.\n" +"Stimmen Sie den nachfolgenden Bedingungen zu?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1535,12 +1599,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Ablehnen" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "Unterstützter" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Kompatibilität" @@ -1550,10 +1614,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "Pakete werden abgeholt..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "Kontakt" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1567,9 +1636,9 @@ msgstr "Änderungsprotokoll" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1617,356 +1686,365 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Benutzervereinbarung" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Vorhandene Verbindung" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Diese/r Drucker/Gruppe wurde bereits zu Cura hinzugefügt. Wählen Sie bitte eine/n andere/n Drucker/Gruppe" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Anschluss an vernetzten Drucker" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" "\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\nWählen Sie Ihren Drucker aus der folgenden Liste:" +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" +"\n" +"Wählen Sie Ihren Drucker aus der folgenden Liste:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Hinzufügen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Bearbeiten" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Entfernen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Aktualisieren" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Typ" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Firmware-Version" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Adresse" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Ultimaker 3 Druckern anzusteuern." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Dieser Drucker steuert eine Gruppe von %1 Ultimaker 3 Druckern an." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "Der Drucker unter dieser Adresse hat nicht reagiert." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Verbinden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Druckeradresse" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Geben Sie die IP-Adresse oder den Hostnamen Ihres Druckers auf dem Netzwerk ein." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Drucken über Netzwerk" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Druckerauswahl" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Drucken" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 ist nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Drucker hinzufügen/entfernen" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Öffnet die Seite für Druckaufträge mit Ihrem Standard-Webbrowser." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Druckaufträge anzeigen" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Vorb. für den Druck" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Drucken" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Verfügbar" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Verbindung zum Drucker wurde unterbrochen" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Nicht verfügbar" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Unbekannt" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Deaktiviert" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Reserviert" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Beendet" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Vorbereitung für den Druck" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Handlung erforderlich" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausiert" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Wird fortgesetzt ..." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Drucken wurde abgebrochen" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Akzeptiert keine Druckaufträge" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Endet um: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Druckplatte räumen" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "Warten auf eine Konfigurationsänderung" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Druckaufträge" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Drucken" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "In Warteschlange" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Drucker" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Drucken" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Drucker anzeigen" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Drucken abbrechen" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Beendet" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Vorbereitung" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausiert" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Wird fortgesetzt ..." + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Handlung erforderlich" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Mit einem Drucker verbinden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Die Druckerkonfiguration in Cura laden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Konfiguration aktivieren" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Farbschema" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Materialfarbe" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Linientyp" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Vorschub" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Schichtdicke" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Kompatibilitätsmodus" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Bewegungen anzeigen" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Helfer anzeigen" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Gehäuse anzeigen" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Füllung anzeigen" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Nur obere Schichten anzeigen" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "5 detaillierte Schichten oben anzeigen" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Oben/Unten" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Innenwand" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "min." -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "max." @@ -2086,53 +2164,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Glättung" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Mesh-Typ" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Normales Modell" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Als Stützstruktur drucken" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Keine Überlappung mit anderen Modellen unterstützen" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Einstellungen für Überlappung mit anderen Modellen bearbeiten" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Einstellungen für Füllung von anderen Modellen bearbeiten" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Einstellungen wählen" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtern..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Alle anzeigen" @@ -2154,13 +2232,13 @@ msgid "Create new" msgstr "Neu erstellen" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Zusammenfassung – Cura-Projekt" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Druckereinstellungen" @@ -2177,7 +2255,7 @@ msgid "Update" msgstr "Aktualisierung" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Typ" @@ -2188,7 +2266,7 @@ msgid "Printer Group" msgstr "Druckergruppe" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Profileinstellungen" @@ -2200,19 +2278,19 @@ msgstr "Wie soll der Konflikt im Profil gelöst werden?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Name" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Nicht im Profil" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2242,7 +2320,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Wie soll der Konflikt im Material gelöst werden?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Sichtbarkeit einstellen" @@ -2253,13 +2331,13 @@ msgid "Mode" msgstr "Modus" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Sichtbare Einstellungen:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 von %2" @@ -2274,6 +2352,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Öffnen" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Export" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00 Stunden 00 Minuten" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Kostenangabe" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Insgesamt:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2492,26 +2646,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Bitte den Ausdruck entfernen" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Pausieren" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Zurückkehren" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Drucken abbrechen" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Drucken abbrechen" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2528,7 +2666,9 @@ msgctxt "@text:window" msgid "" "You have customized some profile settings.\n" "Would you like to keep or discard those settings?" -msgstr "Sie haben einige Profileinstellungen angepasst.\nMöchten Sie diese Einstellungen übernehmen oder verwerfen?" +msgstr "" +"Sie haben einige Profileinstellungen angepasst.\n" +"Möchten Sie diese Einstellungen übernehmen oder verwerfen?" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110 msgctxt "@title:column" @@ -2546,19 +2686,17 @@ msgid "Customized" msgstr "Angepasst" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Stets nachfragen" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Verwerfen und zukünftig nicht mehr nachfragen" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Übernehmen und zukünftig nicht mehr nachfragen" @@ -2578,101 +2716,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Neues Profil erstellen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Informationen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Änderung Durchmesser bestätigen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Namen anzeigen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Marke" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Materialtyp" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Farbe" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Eigenschaften" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Dichte" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Durchmesser" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Filamentkosten" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Filamentgewicht" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Filamentlänge" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Kosten pro Meter" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Material trennen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Beschreibung" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Haftungsinformationen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Druckeinstellungen" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Aktivieren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Erstellen" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplizieren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Import" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Drucker" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Entfernen bestätigen" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Material importieren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material wurde erfolgreich importiert %1" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Material exportieren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material erfolgreich nach %1 exportiert" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2709,7 +2919,7 @@ msgid "Unit" msgstr "Einheit" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Allgemein" @@ -2901,8 +3111,8 @@ msgstr "Standardverhalten beim Öffnen einer Projektdatei: " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Immer nachfragen" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2921,77 +3131,75 @@ msgstr "Wenn Sie Änderungen für ein Profil vorgenommen haben und zu einem ande #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Profil überschreiben" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Privatsphäre" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Soll Cura bei Programmstart nach Updates suchen?" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Bei Start nach Updates suchen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(Anonyme) Druckinformationen senden" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Mehr Informationen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Experimentell" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Mehrfach-Druckplattenfunktion verwenden" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Mehrfach-Druckplattenfunktion verwenden (Neustart erforderlich)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "Sollen neu geladene Modelle auf der Druckplatte angeordnet werden? In Verbindung mit Mehrfach-Druckplatte verwenden (EXPERIMENTELL)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Keine Objekte beim Laden anordnen" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Drucker" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivieren" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3035,7 +3243,7 @@ msgid "Aborting print..." msgstr "Drucken wird abgebrochen..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Profile" @@ -3050,18 +3258,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Duplizieren" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Import" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Export" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3072,18 +3268,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Profil duplizieren" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Entfernen bestätigen" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3104,96 +3288,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Drucker: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Geschützte Profile" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Benutzerdefinierte Profile" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Aktuelle Änderungen verwerfen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Globale Einstellungen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materialien" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Erstellen" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplizieren" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Material importieren" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material wurde erfolgreich importiert %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Material exportieren" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material erfolgreich nach %1 exportiert" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Drucker" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Drucker hinzufügen" @@ -3208,6 +3339,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Drucker hinzufügen" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3228,7 +3364,9 @@ 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 wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\nCura verwendet mit Stolz die folgenden Open Source-Projekte:" +msgstr "" +"Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\n" +"Cura verwendet mit Stolz die folgenden Open Source-Projekte:" #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118 msgctxt "@label" @@ -3341,7 +3479,10 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n\nKlicken Sie, um den Profilmanager zu öffnen." +msgstr "" +"Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n" +"\n" +"Klicken Sie, um den Profilmanager zu öffnen." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3358,33 +3499,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Alle geänderten Werte für alle Extruder kopieren" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Diese Einstellung ausblenden" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Diese Einstellung ausblenden" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Diese Einstellung weiterhin anzeigen" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Sichtbarkeit einstellen wird konfiguriert..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Alle verkleinern" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Alle vergrößern" @@ -3395,7 +3536,10 @@ 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\nKlicken Sie, um diese Einstellungen sichtbar zu machen." +msgstr "" +"Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n" +"\n" +"Klicken Sie, um diese Einstellungen sichtbar zu machen." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3423,7 +3567,10 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "Diese Einstellung hat einen vom Profil abweichenden Wert.\n\nKlicken Sie, um den Wert des Profils wiederherzustellen." +msgstr "" +"Diese Einstellung hat einen vom Profil abweichenden Wert.\n" +"\n" +"Klicken Sie, um den Wert des Profils wiederherzustellen." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3431,7 +3578,10 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n\nKlicken Sie, um den berechneten Wert wiederherzustellen." +msgstr "" +"Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n" +"\n" +"Klicken Sie, um den berechneten Wert wiederherzustellen." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3469,7 +3619,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Extruder" @@ -3522,7 +3672,7 @@ msgid "The nozzle inserted in this extruder." msgstr "Die in diesem Extruder eingesetzte Düse." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Druckbett" @@ -3547,6 +3697,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3641,40 +3806,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "Druckeinrichtung deaktiviert\nG-Code-Dateien können nicht geändert werden" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00 Stunden 00 Minuten" +msgstr "" +"Druckeinrichtung deaktiviert\n" +"G-Code-Dateien können nicht geändert werden" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Zeitangabe" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Kostenangabe" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Insgesamt:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3685,30 +3825,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Benutzerdefinierte Druckeinrichtung

Druck mit Feineinstellung über jedem einzelnen Bereich des Schneidvorgangs." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Aktiver Druck" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Name des Auftrags" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Druckzeit" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Geschätzte verbleibende Zeit" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "Umschalten auf Vo&llbild-Modus" +msgid "Toggle Full Screen" +msgstr "Umschalten auf Vollbild-Modus" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3727,28 +3867,28 @@ msgstr "&Beenden" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "&3D-Ansicht" +msgid "3D View" +msgstr "3D-Ansicht" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "&Vorderansicht" +msgid "Front View" +msgstr "Vorderansicht" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "&Draufsicht" +msgid "Top View" +msgstr "Draufsicht" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "&Ansicht von links" +msgid "Left Side View" +msgstr "Ansicht von links" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "&Ansicht von rechts" +msgid "Right Side View" +msgstr "Ansicht von rechts" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3783,7 +3923,7 @@ msgstr "&Aktuelle Änderungen verwerfen" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:196 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." -msgstr "&Profil von aktuellen Einstellungen/Überschreibungen erstellen..." +msgstr "P&rofil von aktuellen Einstellungen/Überschreibungen erstellen..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:202 msgctxt "@action:inmenu menubar:profile" @@ -3802,188 +3942,187 @@ msgstr "&Fehler melden" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "&Über..." +msgid "About..." +msgstr "Über..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "&Ausgewähltes Modell löschen" -msgstr[1] "&Ausgewählte Modelle löschen" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Ausgewähltes Modell löschen" +msgstr[1] "Ausgewählte Modelle löschen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Ausgewähltes Modell zentrieren" msgstr[1] "Ausgewählte Modelle zentrieren" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Ausgewähltes Modell multiplizieren" msgstr[1] "Ausgewählte Modelle multiplizieren" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Modell löschen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Modell auf Druckplatte ze&ntrieren" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Modelle &gruppieren" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Gruppierung für Modelle aufheben" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Modelle &zusammenführen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Modell &multiplizieren" +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Alle Modelle wählen" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "Alle Modelle &wählen" +msgid "Clear Build Plate" +msgstr "Druckplatte reinigen" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "Druckplatte &reinigen" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "Alle Modelle neu &laden" +msgid "Reload All Models" +msgstr "Alle Modelle neu laden" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "Alle Modelle an allen Druckplatten anordnen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Alle Modelle anordnen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Anordnung auswählen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Alle Modellpositionen zurücksetzen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "Alle Modell&transformationen zurücksetzen" +msgid "Reset All Model Transformations" +msgstr "Alle Modelltransformationen zurücksetzen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Datei(en) öffnen..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Neues Projekt..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Engine-&Protokoll anzeigen..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Konfigurationsordner anzeigen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Pakete durchsuchen..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Seitenleiste vergrößern/verkleinern" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Bitte laden Sie ein 3D-Modell" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Bereit zum Slicen (Schneiden)" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Das Slicing läuft..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Bereit zum %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Slicing nicht möglich" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Slicing ist nicht verfügbar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Aktuellen Druckauftrag slicen" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Slicing-Vorgang abbrechen" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Vorbereiten" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Abbrechen" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Wählen Sie das aktive Ausgabegerät" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Datei(en) öffnen" @@ -4003,129 +4142,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Datei" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "Auswahl als Datei &speichern" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Speichern &Als" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "&Projekt speichern..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Bearbeiten" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Ansicht" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "&Konfiguration" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "Dr&ucker" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Material" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Als aktiven Extruder festlegen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Extruder aktivieren" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Extruder deaktivieren" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "&Druckplatte" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Profil" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Er&weiterungen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&Toolbox" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "E&instellungen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Hilfe" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Dieses Paket wird nach einem Neustart installiert." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Datei öffnen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Einstellungen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Neues Projekt" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Paket installieren" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Datei(en) öffnen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4135,112 +4290,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Projekt speichern" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Druckplatte" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extruder %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & Material" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Speichern" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Schichtdicke" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Dieses Qualitätsprofil ist für Ihr aktuelles Material und Ihre derzeitige Düsenkonfiguration nicht verfügbar. Bitte ändern Sie diese, um dieses Qualitätsprofil zu aktivieren." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "Ein benutzerdefiniertes Profil ist derzeit aktiv. Wählen Sie ein voreingestelltes Qualitätsprofil aus der Registerkarte „Benutzerdefiniert“, um den Schieberegler für Qualität zu aktivieren." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Druckgeschwindigkeit" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Langsamer" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Schneller" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Füllung" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Graduell aktivieren" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Stützstruktur generieren" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Wählen Sie, welcher Extruder für die Unterstützung verwendet wird. Dient zum Konstruieren von Stützstrukturen unter dem Modell, damit dieses nicht absinkt oder frei schwebend gedruckt wird." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Druckplattenhaftung" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Sie benötigen Hilfe für Ihre Drucke?
Lesen Sie die Ultimaker Anleitungen für Fehlerbehebung>" @@ -4287,23 +4442,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Druckertyp" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Material" -# Added after the string freeze. -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Verwenden Sie eiene Klebefolie oder Klebstoff mit dieser Materialcombination" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Kompatibilität prüfen" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Klicken Sie, um die Materialkompatibilität auf Ultimaker.com zu prüfen." @@ -4393,16 +4547,6 @@ msgctxt "name" msgid "God Mode" msgstr "Gott-Modus" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Akzeptiert den G-Code und sendet diesen über WLAN an eine Doodle3D WLAN-Box." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WLAN-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4483,16 +4627,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Vorbereitungsstufe" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Bietet ein Bearbeitungsfenster für direkte Skriptbearbeitung." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Live-Scripting-Tool" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4603,16 +4737,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Cura-Vorgängerprofil-Reader" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Unterstützt das Öffnen der Blender-Dateien direkt in Cura." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Blender-Integration (experimentell)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4663,6 +4787,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Upgrade von Version 2.7 auf 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4773,6 +4907,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura-Profil-Writer" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Ermöglichen Sie Materialherstellern die Erstellung neuer Material- und Qualitätsprofile, indem Sie eine Drop-In-Benutzerschnittstelle verwenden." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Druckprofil-Assistent" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4803,6 +4947,219 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Cura-Profil-Reader" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Mit Doodle3D WLAN-Box drucken" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Mit Doodle3D WLAN-Box drucken" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Zu Doodle3D Connect verbinden" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Daten werden zu Doodle3D Connect gesendet" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Daten können nicht zu Doodle3D Connect gesendet werden. Ist noch ein weiterer Auftrag in Bearbeitung?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Daten werden auf Doodle3D Connect gespeichert" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Datei wurde zu Doodle3D Connect gesendet" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Connect wird geöffnet ..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Doodle3D Connect Web-Schnittstelle öffnen" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Blender-Datei" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "Exportieren in \"{}\" Qualität nicht möglich!\n" +#~ "Zurückgeschaltet auf \"{}\"." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "Kontakt" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Ultimaker 3 Druckern anzusteuern." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Dieser Drucker steuert eine Gruppe von %1 Ultimaker 3 Druckern an." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 ist nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Drucker hinzufügen/entfernen" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Öffnet die Seite für Druckaufträge mit Ihrem Standard-Webbrowser." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Druckaufträge anzeigen" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Vorb. für den Druck" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Drucken" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Verfügbar" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Verbindung zum Drucker wurde unterbrochen" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Nicht verfügbar" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Unbekannt" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Deaktiviert" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Reserviert" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Vorbereitung für den Druck" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Drucken wurde abgebrochen" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Akzeptiert keine Druckaufträge" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Endet um: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Druckplatte räumen" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "Warten auf eine Konfigurationsänderung" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Druckaufträge" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Drucker" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Drucker anzeigen" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Pausieren" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Zurückkehren" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Drucken abbrechen" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Immer nachfragen" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Profil überschreiben" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "Sollen neu geladene Modelle auf der Druckplatte angeordnet werden? In Verbindung mit Mehrfach-Druckplatte verwenden (EXPERIMENTELL)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Keine Objekte beim Laden anordnen" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "Auswahl als Datei &speichern" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Speichern &Als" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "&Projekt speichern..." + +# Added after the string freeze. +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Verwenden Sie eiene Klebefolie oder Klebstoff mit dieser Materialcombination" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Akzeptiert den G-Code und sendet diesen über WLAN an eine Doodle3D WLAN-Box." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WLAN-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Bietet ein Bearbeitungsfenster für direkte Skriptbearbeitung." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Live-Scripting-Tool" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Unterstützt das Öffnen der Blender-Dateien direkt in Cura." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Blender-Integration (experimentell)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Warnhinweis Modell-Prüfer" @@ -5070,10 +5427,6 @@ msgstr "Cura-Profil-Reader" #~ msgid "Browse plugins..." #~ msgstr "Plugins durchsuchen..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Druckplatte" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "&Plugins" @@ -5299,14 +5652,6 @@ msgstr "Cura-Profil-Reader" #~ "\n" #~ "Es tut uns leid!" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Profilassistent" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Profilassistent" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "Kein Material geladen" @@ -5437,14 +5782,6 @@ msgstr "Cura-Profil-Reader" #~ msgid "Configure setting visiblity..." #~ msgstr "Sichtbarkeit der Einstellung wird konfiguriert..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Automatisch: %1" @@ -5481,14 +5818,6 @@ msgstr "Cura-Profil-Reader" #~ msgid "GCode Profile Reader" #~ msgstr "G-Code-Profil-Reader" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Ermöglichen Sie Materialherstellern die Erstellung neuer Material- und Qualitätsprofile, indem Sie eine Drop-In-Benutzerschnittstelle verwenden." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Druckprofil-Assistent" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "Beim Öffnen Ihrer SolidWorks Datei trat ein Fehler auf! Überprüfen Sie bitte, ob sich Ihre Datei in SolidWorks ohne Probleme öffnen lässt!" @@ -5685,10 +6014,6 @@ msgstr "Cura-Profil-Reader" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "Dieser Drucker ist der Host für eine Gruppe von %1 verbundenen Ultimaker 3-Druckern" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Vorbereitung" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Fertiggestellt am: " diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index 697560017c..82b33e656b 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\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 d518735b72..a4e3ac334f 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: German\n" @@ -56,7 +56,9 @@ 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." +msgstr "" +"G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \n" +"." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -68,7 +70,9 @@ 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." +msgstr "" +"G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch \n" +"." #: fdmprinter.def.json msgctxt "material_guid label" @@ -80,6 +84,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "GUID des Materials. Dies wird automatisch eingestellt. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1055,6 +1069,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Zickzack" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1135,6 +1159,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Der Fluss für Teile einer Innenwand wird ausgeglichen, die dort gedruckt werden, wo sich bereits eine Wand befindet." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1500,11 +1544,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Konzentrisch" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Konzentrisch 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1530,6 +1569,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Verbindet die Enden, an denen das Füllmuster auf die Innenwand trifft, mithilfe einer Linie, die der Form der Innenwand folgt. Durch Aktivierung dieser Einstellung kann die Füllung besser an den Wänden haften; auch die Auswirkungen der Füllung auf die Qualität der vertikalen Flächen werden reduziert. Die Deaktivierung dieser Einstellung reduziert den Materialverbrauch." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1560,6 +1609,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse verschoben." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1870,16 +1941,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "Die Temperatur, die für die erhitzte Druckplatte an der ersten Schicht verwendet wird." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2717,8 +2778,8 @@ msgstr "Combing-Modus" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, indem nur die Füllung berücksichtigt wird." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2735,6 +2796,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "Nicht in Außenhaut" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3115,11 +3181,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Konzentrisch" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Konzentrisch 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3180,6 +3241,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3470,11 +3551,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Konzentrisch" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Konzentrisch 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3510,11 +3586,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Konzentrisch" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Konzentrisch 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3550,16 +3621,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Konzentrisch" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Konzentrisch 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Zickzack" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3710,7 +3796,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\nEs handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." +msgstr "" +"Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\n" +"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -3884,8 +3972,8 @@ msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Raft-Linienabstand" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4102,16 +4190,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Material zu spülen." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Dicke Einzugsturm" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "Die Dicke des Hohleinzugsturms. Eine Dicke, die mehr als die Hälfte des Mindestvolumens für den Einzugsturm beträgt, führt zu einem dichten Einzugsturm." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4152,26 +4230,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Düse nach dem Schalten abwischen" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Wischt nach dem Schalten des Extruders ausgetretenes Material am ersten Druckelement an der Düse ab. Hierdurch wird eine sichere, langsame Wischbewegung an einer Position ausgeführt, an der das ausgetretene Material am wenigsten Schaden an der Oberflächenqualität Ihres Drucks verursacht." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Einzugsturm Spülvolumen" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Menge des zu spülenden Filaments beim Wischen des Spülturms. Spülen ist hilfreich, um dem Filament-Verlust durch Aussickern während der Inaktivität der Düse zu kompensieren." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4657,6 +4715,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Der Materialfluss (in mm3 pro Sekunde) in Bezug zur Temperatur (Grad Celsius)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5167,7 +5235,9 @@ msgctxt "wireframe_up_half_speed description" msgid "" "Distance of an upward move which is extruded with half speed.\n" "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "Die Strecke einer Aufwärtsbewegung, die mit halber Geschwindigkeit extrudiert wird.\nDies kann zu einer besseren Haftung an vorhergehenden Schichten führen, während gleichzeitig ein Überhitzen des Materials in diesen Schichten vermieden wird. Dies gilt nur für das Drucken mit Drahtstruktur." +msgstr "" +"Die Strecke einer Aufwärtsbewegung, die mit halber Geschwindigkeit extrudiert wird.\n" +"Dies kann zu einer besseren Haftung an vorhergehenden Schichten führen, während gleichzeitig ein Überhitzen des Materials in diesen Schichten vermieden wird. Dies gilt nur für das Drucken mit Drahtstruktur." #: fdmprinter.def.json msgctxt "wireframe_top_jump label" @@ -5314,6 +5384,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "Das ist der Schwellenwert, der definiert, ob eine kleinere Schicht verwendet wird oder nicht. Dieser Wert wird mit dem der stärksten Neigung in einer Schicht verglichen." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5344,16 +5434,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Wenn ein Außenhautbereich für weniger als diesen Prozentwert seines Bereichs unterstützt wird, drucken Sie ihn mit den Brückeneinstellungen. Ansonsten erfolgt der Druck mit den normalen Außenhauteinstellungen." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Max. Überhang Brückenwand" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "Die maximal zulässige Breite des Luftbereichs unter einer Wandlinie vor dem Druck der Wand mithilfe der Brückeneinstellungen, ausgedrückt als Prozentwert der Wandliniendicke. Wenn der Luftspalt breiter als dieser Wert ist, wird die Wandlinie mithilfe der Brückeneinstellungen gedruckt. Ansonsten wird die Wandlinie mit den normalen Einstellungen gedruckt. Je niedriger der Wert, desto wahrscheinlicher ist es, dass Überhang-Wandlinien mithilfe der Brückeneinstellungen gedruckt werden." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5574,6 +5654,66 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Konzentrisch 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, indem nur die Füllung berücksichtigt wird." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Konzentrisch 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Konzentrisch 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Konzentrisch 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Konzentrisch 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Raft-Linienabstand" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Dicke Einzugsturm" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "Die Dicke des Hohleinzugsturms. Eine Dicke, die mehr als die Hälfte des Mindestvolumens für den Einzugsturm beträgt, führt zu einem dichten Einzugsturm." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Düse nach dem Schalten abwischen" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Wischt nach dem Schalten des Extruders ausgetretenes Material am ersten Druckelement an der Düse ab. Hierdurch wird eine sichere, langsame Wischbewegung an einer Position ausgeführt, an der das ausgetretene Material am wenigsten Schaden an der Oberflächenqualität Ihres Drucks verursacht." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Einzugsturm Spülvolumen" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Menge des zu spülenden Filaments beim Wischen des Spülturms. Spülen ist hilfreich, um dem Filament-Verlust durch Aussickern während der Inaktivität der Düse zu kompensieren." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Max. Überhang Brückenwand" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "Die maximal zulässige Breite des Luftbereichs unter einer Wandlinie vor dem Druck der Wand mithilfe der Brückeneinstellungen, ausgedrückt als Prozentwert der Wandliniendicke. Wenn der Luftspalt breiter als dieser Wert ist, wird die Wandlinie mithilfe der Brückeneinstellungen gedruckt. Ansonsten wird die Wandlinie mit den normalen Einstellungen gedruckt. Je niedriger der Wert, desto wahrscheinlicher ist es, dass Überhang-Wandlinien mithilfe der Brückeneinstellungen gedruckt werden." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Optimieren Sie die Reihenfolge, in der die Wände gedruckt werden, um die Anzahl der Einzüge und die zurückgelegten Distanzen zu reduzieren. Dieser Schritt bringt für die meisten Teile Vorteile, allerdings werden einige möglicherweise länger benötigen. Vergleichen Sie deshalb bitte die Schätzung der Druckzeiten mit und ohne Optimierung." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 66add367c5..57b0ecf879 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Spanish\n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Archivo GCode" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -53,83 +64,23 @@ msgid "" "

{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" +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/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Imprimir con un enrutador Doodle3D" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Imprimir con un enrutador Doodle3D" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Conectar con Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Enviando datos a Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "No se pueden enviar datos a Doodle3D Connect. ¿Hay otro trabajo que todavía esté activo?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Guardando datos en Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Archivo enviado a Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Abrir Connect..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Abrir la interfaz web de Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Mostrar registro de cambios" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Aplanar ajustes activos" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "El perfil se ha aplanado y activado." @@ -154,6 +105,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Conectado mediante USB" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -176,6 +132,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Archivo GCode comprimido" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -198,7 +159,7 @@ msgid "Save to Removable Drive {0}" msgstr "Guardar en unidad extraíble {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "No hay formatos de archivo disponibles con los que escribir." @@ -237,7 +198,7 @@ msgstr "No se pudo guardar en unidad extraíble {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Error" @@ -266,8 +227,8 @@ msgstr "Expulsar dispositivo extraíble {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Advertencia" @@ -294,212 +255,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unidad extraíble" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Imprimir a través de la red" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Imprime a través de la red" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Conectado a través de la red." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Conectado a través de la red. Apruebe la solicitud de acceso en la impresora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Conectado a través de la red. No hay acceso para controlar la impresora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Acceso a la impresora solicitado. Apruebe la solicitud en la impresora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Estado de la autenticación" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Estado de la autenticación" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Volver a intentar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Reenvía la solicitud de acceso." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Acceso a la impresora aceptado" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "No hay acceso para imprimir con esta impresora. No se puede enviar el trabajo de impresión." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Solicitar acceso" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Envía la solicitud de acceso a la impresora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "No se puede iniciar un nuevo trabajo de impresión." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Un problema con la configuración de Ultimaker impide iniciar la impresión. Soluciónelo antes de continuar." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Configuración desajustada" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "¿Seguro que desea imprimir con la configuración seleccionada?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "La configuración o calibración de la impresora y de Cura no coinciden. Para obtener el mejor resultado, segmente siempre los PrintCores y los materiales que se insertan en la impresora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Envío de nuevos trabajos (temporalmente) bloqueado; se sigue enviando el trabajo de impresión previo." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Enviando datos a la impresora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Enviando datos" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "No se ha cargado ningún PrintCore en la ranura {slot_number}." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "No se ha cargado ningún material en la ranura {slot_number}." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "PrintCore distinto (Cura: {cura_printcore_name}, impresora: {remote_printcore_name}) seleccionado para extrusor {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Material distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Sincronizar con la impresora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "¿Desea utilizar la configuración actual de su impresora en Cura?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Los PrintCores o los materiales de la impresora difieren de los del proyecto actual. Para obtener el mejor resultado, segmente siempre los PrintCores y materiales que se hayan insertado en la impresora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Conectado a través de la red." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Fecha de envío" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "Ver en pantalla" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "{printer_name} ha terminado de imprimir «{job_name}»." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "El trabajo de impresión '{job_name}' ha terminado." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Impresión terminada" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Conectar a través de la red" @@ -509,24 +485,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Supervisar" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "Hay nuevas funciones disponibles para {machine_name}. Se recomienda actualizar el firmware de la impresora." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, 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/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Cómo actualizar" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "No se pudo acceder a la información actualizada." @@ -536,17 +512,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vista de capas" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 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/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Vista de simulación" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "Modificar GCode" @@ -560,32 +536,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Cree un volumen que no imprima los soportes." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura recopila estadísticas de uso de forma anónima." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Recopilando datos" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Más información" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Obtenga más información sobre qué datos envía Cura." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Permitir" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Permitir a Cura enviar estadísticas de uso de forma anónima para ayudar a priorizar mejoras futuras para Cura. Se envían algunas de sus preferencias y ajustes, la versión de Cura y un resumen de los modelos que está fragmentando." @@ -595,19 +571,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Perfiles de Cura 15.04" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Archivo Blender" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "No ha podido exportarse con la calidad \"{}\"\n" -"Retroceder a \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -633,49 +596,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Imagen GIF" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "No se puede segmentar" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "No hay nada que segmentar porque ninguno de los modelos se adapta al volumen de impresión. Escale o rote los modelos para que se adapten." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Procesando capas" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Información" @@ -702,18 +672,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Personalizado" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Archivo 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Tobera" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -724,18 +705,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "Archivo G" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "Analizar GCode" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "Datos de GCode" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -746,16 +727,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil de cura" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Asistente del perfil" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Asistente del perfil" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "Archivo 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Archivo 3MF del proyecto de Cura" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -837,19 +833,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Desconocido" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Archivo {0} presegmentado" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "El archivo ya existe" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -861,23 +857,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "No reemplazado" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "El material seleccionado no es compatible con la máquina o la configuración seleccionada." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Material incompatible" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento: [%s]." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Ajustes actualizados" @@ -960,13 +956,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Al perfil le falta un tipo de calidad." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "No se ha podido encontrar un tipo de calidad {0} para la configuración actual." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -993,42 +989,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos los archivos (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Material personalizado" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Personalizado" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Volumen de impresión" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 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/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Copia de seguridad" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 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/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "Se ha intentado restaurar una copia de seguridad de Cura que no coincide con la versión actual." @@ -1039,32 +1035,32 @@ msgid "Multiplying and placing objects" msgstr "Multiplicar y colocar objetos" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Colocando objeto" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Buscando nueva ubicación para los objetos" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Buscando ubicación" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "No se puede encontrar la ubicación" @@ -1203,223 +1199,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Enviar informe" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Cargando máquinas..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Configurando escena..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Cargando interfaz..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "No se puede cargar el modelo seleccionado, es demasiado pequeño." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Ajustes de la máquina" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Impresora" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Ajustes de la impresora" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (anchura)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (profundidad)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (altura)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Forma de la placa de impresión" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Origen en el centro" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Plataforma caliente" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Tipo de GCode" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Ajustes del cabezal de impresión" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X mín." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distancia desde la parte izquierda del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y mín." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distancia desde la parte frontal del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X máx." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distancia desde la parte derecha del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y máx." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distancia desde la parte trasera del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Altura del caballete" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y). Se usa para evitar que colisionen la impresión anterior con el caballete al imprimir «de uno en uno»." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Número de extrusores" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "Iniciar GCode" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "Los comandos de GCode que se ejecutarán justo al inicio." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "Finalizar GCode" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Los comandos de GCode que se ejecutarán justo al final." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Ajustes de la tobera" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Tamaño de la tobera" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Diámetro del material compatible" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "El diámetro nominal del filamento compatible con la impresora. El diámetro exacto se sobrescribirá según el material o el perfil." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Desplazamiento de la tobera sobre el eje X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Desplazamiento de la tobera sobre el eje Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "GCode inicial del extrusor" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "GCode final del extrusor" @@ -1439,29 +1435,42 @@ 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Complementos" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiales" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Versión" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Última actualización" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Autor" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Desconocido" @@ -1494,16 +1503,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Atrás" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Salir de Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1535,7 +1584,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "Este complemento incluye una licencia.\nDebe aceptar dicha licencia para instalar el complemento.\n¿Acepta las condiciones que aparecen a continuación?" +msgstr "" +"Este complemento incluye una licencia.\n" +"Debe aceptar dicha licencia para instalar el complemento.\n" +"¿Acepta las condiciones que aparecen a continuación?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1547,12 +1599,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Rechazar" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "Destacado" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Compatibilidad" @@ -1562,10 +1614,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "Buscando paquetes..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "Contacto" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1579,9 +1636,9 @@ msgstr "Registro de cambios" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1629,356 +1686,365 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Acuerdo de usuario" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Conexión existente" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Esta impresora o grupo de impresoras ya se ha añadido a Cura. Seleccione otra impresora o grupo de impresoras." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Conectar con la impresora en red" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" "\n" "Select your printer from the list below:" -msgstr "Para imprimir directamente en la impresora a través de la red, asegúrese de que esta está conectada a la red utilizando 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.\n\nSeleccione la impresora de la siguiente lista:" +msgstr "" +"Para imprimir directamente en la impresora a través de la red, asegúrese de que esta está conectada a la red utilizando 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.\n" +"\n" +"Seleccione la impresora de la siguiente lista:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Agregar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Editar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Eliminar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Actualizar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Tipo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Versión de firmware" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Dirección" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "La impresora no está configurada para alojar un grupo de impresoras Ultimaker 3." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "La impresora aloja un grupo de %1 impresoras Ultimaker 3." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Conectar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Dirección de la impresora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Introduzca la dirección IP o el nombre de host de la impresora en red." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "Aceptar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Imprimir a través de la red" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Selección de la impresora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Imprimir" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Agregar/eliminar impresoras" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Abre la página de trabajos de impresión en su navegador web por defecto." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Ver trabajos de impresión" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Preparando para impresión" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimiendo" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Disponible" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Se ha perdido la conexión con la impresora." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "No disponible" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Desconocido" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Deshabilitado" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Reservado" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminado" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Preparando para impresión" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Acción requerida" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "En pausa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Reanudando" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Impresión cancelada" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "No se aceptan trabajos de impresión" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Termina a las: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Borrar placa de impresión" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "Esperando a que se cambie la configuración" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Trabajos de impresión" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Imprimiendo" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "En cola" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Impresoras" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Imprimiendo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Ver impresoras" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Cancela la impresión" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminado" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Preparando" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "En pausa" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Reanudando" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Acción requerida" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Conecta a una impresora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Carga la configuración de la impresora en Cura." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Activar configuración" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Combinación de colores" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Color del material" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Tipo de línea" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Velocidad" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Grosor de la capa" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Modo de compatibilidad" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Mostrar desplazamientos" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Mostrar asistentes" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Mostrar perímetro" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Mostrar relleno" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Mostrar solo capas superiores" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Mostrar cinco capas detalladas en la parte superior" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Superior o inferior" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Pared interior" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "mín." -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "máx." @@ -2098,53 +2164,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavizado" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Tipo de malla" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Modelo normal" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Imprimir según compatibilidad" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "No es compatible la superposición con otros modelos" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Modificar ajustes para superponer con otros modelos" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Modificar ajustes para rellenar con otros modelos" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Seleccionar ajustes" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Seleccionar ajustes o personalizar este modelo" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtrar..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Mostrar todo" @@ -2166,13 +2232,13 @@ msgid "Create new" msgstr "Crear nuevo" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumen: proyecto de Cura" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Ajustes de la impresora" @@ -2189,7 +2255,7 @@ msgid "Update" msgstr "Actualizar" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Tipo" @@ -2200,7 +2266,7 @@ msgid "Printer Group" msgstr "Grupo de impresoras" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Ajustes del perfil" @@ -2212,19 +2278,19 @@ msgstr "¿Cómo debería solucionarse el conflicto en el perfil?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Nombre" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "No está en el perfil" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2254,7 +2320,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "¿Cómo debería solucionarse el conflicto en el material?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Visibilidad de los ajustes" @@ -2265,13 +2331,13 @@ msgid "Mode" msgstr "Modo" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Ajustes visibles:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 de un total de %2" @@ -2286,6 +2352,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Abrir" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00 h 00 min" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Especificación de costes" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Total:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1 m/~ %2 g/~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1 m/~ %2 g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2504,26 +2646,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Retire la impresión." -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Pausar" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Reanudar" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Cancelar impresión" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Cancela la impresión" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2540,7 +2666,9 @@ msgctxt "@text:window" msgid "" "You have customized some profile settings.\n" "Would you like to keep or discard those settings?" -msgstr "Ha personalizado parte de los ajustes del perfil.\n¿Desea descartar los cambios o guardarlos?" +msgstr "" +"Ha personalizado parte de los ajustes del perfil.\n" +"¿Desea descartar los cambios o guardarlos?" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110 msgctxt "@title:column" @@ -2558,19 +2686,17 @@ msgid "Customized" msgstr "Valor personalizado" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Preguntar siempre" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar y no volver a preguntar" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Guardar y no volver a preguntar" @@ -2590,101 +2716,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Crear nuevo perfil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Información" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar cambio de diámetro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Mostrar nombre" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Marca" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Tipo de material" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Color" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Propiedades" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Densidad" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Diámetro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Coste del filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Anchura del filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Longitud del filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Coste por metro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Desvincular material" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Descripción" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Información sobre adherencia" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Ajustes de impresión" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Activar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Crear" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicado" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Impresora" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar eliminación" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar material" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "El material se ha importado correctamente en %1." + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar material" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +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/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2721,7 +2919,7 @@ msgid "Unit" msgstr "Unidad" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "General" @@ -2913,8 +3111,8 @@ msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Preguntar siempre" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2933,77 +3131,75 @@ msgstr "Si ha realizado cambios en un perfil y, a continuación, ha cambiado a o #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Anular perfil" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Privacidad" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Buscar actualizaciones al iniciar" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Enviar información (anónima) de impresión" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Más información" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Experimental" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Utilizar funcionalidad de placa de impresión múltiple" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Utilizar funcionalidad de placa de impresión múltiple (reinicio requerido)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "¿Los modelos recién cargados se deben organizar en la placa de impresión? Se han usado junto con la placa de impresión múltiple (EXPERIMENTAL)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "No organizar objetos al cargar" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Impresoras" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activar" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3047,7 +3243,7 @@ msgid "Aborting print..." msgstr "Cancelando impresión..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Perfiles" @@ -3062,18 +3258,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Duplicado" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3084,18 +3268,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplicar perfil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar eliminación" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3116,96 +3288,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Impresora: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Perfiles protegidos" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Perfiles personalizados" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Actualizar perfil con ajustes o sobrescrituras actuales" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Descartar cambios actuales" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Los ajustes actuales coinciden con el perfil seleccionado." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globales" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiales" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Crear" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicado" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar material" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "El material se ha importado correctamente en %1." - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar material" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impresora" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Agregar impresora" @@ -3220,6 +3339,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Agregar impresora" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3240,7 +3364,9 @@ 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 "Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\nCura se enorgullece de utilizar los siguientes proyectos de código abierto:" +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/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118 msgctxt "@label" @@ -3353,7 +3479,10 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n\nHaga clic para abrir el administrador de perfiles." +msgstr "" +"Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n" +"\n" +"Haga clic para abrir el administrador de perfiles." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3370,33 +3499,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos los valores cambiados en todos los extrusores" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "No mostrar este ajuste" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Mostrar este ajuste" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar visibilidad de los ajustes..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Contraer todo" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Ampliar todo" @@ -3407,7 +3536,10 @@ 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\nHaga clic para mostrar estos ajustes." +msgstr "" +"Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n" +"\n" +"Haga clic para mostrar estos ajustes." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3435,7 +3567,10 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "Este ajuste tiene un valor distinto del perfil.\n\nHaga clic para restaurar el valor del perfil." +msgstr "" +"Este ajuste tiene un valor distinto del perfil.\n" +"\n" +"Haga clic para restaurar el valor del perfil." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3443,7 +3578,10 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n\nHaga clic para restaurar el valor calculado." +msgstr "" +"Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n" +"\n" +"Haga clic para restaurar el valor calculado." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3481,7 +3619,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -3534,7 +3672,7 @@ msgid "The nozzle inserted in this extruder." msgstr "Tobera insertada en este extrusor." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Placa de impresión" @@ -3559,6 +3697,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3582,7 +3735,7 @@ msgstr "&Posición de la cámara" #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:54 msgctxt "@action:inmenu menubar:view" msgid "&Build plate" -msgstr "&Placa de impresión" +msgstr "P&laca de impresión" #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13 msgctxt "@action:inmenu" @@ -3653,40 +3806,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "Ajustes de impresión deshabilitados\nNo se pueden modificar los archivos GCode" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00 h 00 min" +msgstr "" +"Ajustes de impresión deshabilitados\n" +"No se pueden modificar los archivos GCode" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Especificación de tiempos" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Especificación de costes" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Total:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3697,30 +3825,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Configuración de impresión personalizada

Imprimir con un control muy detallado del proceso de segmentación." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Activar impresión" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Nombre del trabajo" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Tiempo de impresión" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Tiempo restante estimado" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "A<ernar pantalla completa" +msgid "Toggle Full Screen" +msgstr "Alternar pantalla completa" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3739,28 +3867,28 @@ msgstr "&Salir" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "&Vista en 3D" +msgid "3D View" +msgstr "Vista en 3D" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "&Vista frontal" +msgid "Front View" +msgstr "Vista frontal" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "&Vista superior" +msgid "Top View" +msgstr "Vista superior" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "&Vista del lado izquierdo" +msgid "Left Side View" +msgstr "Vista del lado izquierdo" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "&Vista del lado derecho" +msgid "Right Side View" +msgstr "Vista del lado derecho" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3814,188 +3942,187 @@ msgstr "Informar de un &error" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "&Acerca de..." +msgid "About..." +msgstr "Acerca de..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "Eliminar modelo &seleccionado" -msgstr[1] "Eliminar modelos &seleccionados" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Eliminar modelo seleccionado" +msgstr[1] "Eliminar modelos seleccionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Centrar modelo seleccionado" msgstr[1] "Centrar modelos seleccionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar modelo seleccionado" msgstr[1] "Multiplicar modelos seleccionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Eliminar modelo" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrar modelo en plataforma" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "A&grupar modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Co&mbinar modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar modelo..." +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Seleccionar todos los modelos" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "&Seleccionar todos los modelos" +msgid "Clear Build Plate" +msgstr "Borrar placa de impresión" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&Borrar placa de impresión" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "&Recargar todos los modelos" +msgid "Reload All Models" +msgstr "Recargar todos los modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 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/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Organizar todos los modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Organizar selección" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Restablecer las posiciones de todos los modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "Restablecer las &transformaciones de todos los modelos" +msgid "Reset All Model Transformations" +msgstr "Restablecer las transformaciones de todos los modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Abrir archivo(s)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nuevo proyecto..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "&Mostrar registro del motor..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostrar carpeta de configuración" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Examinar paquetes..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Expandir/contraer barra lateral" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Cargue un modelo en 3D" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Preparado para segmentar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Segmentando..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Listo para %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "No se puede segmentar." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "No se puede segmentar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Fragmentar trabajo de impresión actual" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Cancelar proceso de fragmentación" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Preparar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Cancelar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Seleccione el dispositivo de salida activo" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Abrir archivo(s)" @@ -4015,129 +4142,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Archivo" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "Guardar &selección en archivo" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Guardar &como..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "Guardar &proyecto..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Edición" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Ver" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "A&justes" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Impresora" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Material" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Definir como extrusor activo" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Habilitar extrusor" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Deshabilitar extrusor" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "&Placa de impresión" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Perfil" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensiones" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&Cuadro de herramientas" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Pre&ferencias" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "A&yuda" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Este paquete se instalará después de reiniciar." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Abrir archivo" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Ajustes" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Nuevo proyecto" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Instalar paquete" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Abrir archivo(s)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4147,112 +4290,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Guardar proyecto" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Placa de impresión" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrusor %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 y material" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "No mostrar resumen de proyecto al guardar de nuevo" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Guardar" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Altura de capa" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Este perfil de calidad no está disponible para la configuración de material y de tobera actual. Cámbiela para poder habilitar este perfil de calidad." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "Hay un perfil personalizado activado en este momento. Para habilitar el control deslizante de calidad, seleccione un perfil de calidad predeterminado en la pestaña Personalizado." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Velocidad de impresión" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Más lento" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Más rápido" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Relleno" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Habilitar gradual" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Generar soporte" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Seleccione qué extrusor se utilizará como soporte. Esta opción formará estructuras de soporte por debajo del modelo para evitar que éste se combe o la impresión se haga en el aire." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Adherencia de la placa de impresión" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "¿Necesita ayuda para mejorar sus impresiones?
Lea las Guías de solución de problemas de Ultimaker" @@ -4299,23 +4442,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Tipo de impresora" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Material" -# Added after the string freeze. -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Use láminas de adherencia o pegamento con esta combinación de materiales" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Comprobar compatibilidad" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Haga clic para comprobar la compatibilidad de los materiales en Utimaker.com." @@ -4405,16 +4547,6 @@ msgctxt "name" msgid "God Mode" msgstr "God Mode" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Enrutador Doodle3D" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4495,16 +4627,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Fase de preparación" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Proporciona una ventana de edición para la edición directa de secuencias de comandos." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Herramienta de secuencia de comandos en directo" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4615,16 +4737,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Lector de perfiles antiguos de Cura" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Ayuda a abrir archivos de Blender directamente en Cura." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Integración de Blender (experimental)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4675,6 +4787,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Actualización de la versión 2.7 a la 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4785,6 +4907,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Escritor de perfiles de Cura" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Permite a los fabricantes de material crear nuevos perfiles de material y calidad mediante una IU integrada." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Imprimir asistente del perfil" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4815,6 +4947,219 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Lector de perfiles de Cura" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Imprimir con un enrutador Doodle3D" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Imprimir con un enrutador Doodle3D" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Conectar con Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Enviando datos a Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "No se pueden enviar datos a Doodle3D Connect. ¿Hay otro trabajo que todavía esté activo?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Guardando datos en Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Archivo enviado a Doodle3D Connect" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Abrir Connect..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Abrir la interfaz web de Doodle3D Connect" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Archivo Blender" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "No ha podido exportarse con la calidad \"{}\"\n" +#~ "Retroceder a \"{}\"." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "Contacto" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "La impresora no está configurada para alojar un grupo de impresoras Ultimaker 3." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "La impresora aloja un grupo de %1 impresoras Ultimaker 3." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Agregar/eliminar impresoras" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Ver trabajos de impresión" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Preparando para impresión" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Imprimiendo" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Disponible" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Se ha perdido la conexión con la impresora." + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "No disponible" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Desconocido" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Deshabilitado" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Reservado" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Preparando para impresión" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Impresión cancelada" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "No se aceptan trabajos de impresión" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Termina a las: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Borrar placa de impresión" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "Esperando a que se cambie la configuración" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Trabajos de impresión" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Impresoras" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Ver impresoras" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Pausar" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Reanudar" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Cancelar impresión" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Preguntar siempre" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Anular perfil" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "¿Los modelos recién cargados se deben organizar en la placa de impresión? Se han usado junto con la placa de impresión múltiple (EXPERIMENTAL)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "No organizar objetos al cargar" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "&Guardar selección en archivo" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Guardar &como..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "Guardar &proyecto..." + +# Added after the string freeze. +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Use láminas de adherencia o pegamento con esta combinación de materiales" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Enrutador Doodle3D" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Proporciona una ventana de edición para la edición directa de secuencias de comandos." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Herramienta de secuencia de comandos en directo" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Ayuda a abrir archivos de Blender directamente en Cura." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Integración de Blender (experimental)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Advertencia del comprobador de modelos" @@ -5082,10 +5427,6 @@ msgstr "Lector de perfiles de Cura" #~ msgid "Browse plugins..." #~ msgstr "Examinar complementos..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Placa de impresión" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "&Complementos" @@ -5311,14 +5652,6 @@ msgstr "Lector de perfiles de Cura" #~ "\n" #~ " Disculpe." -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Asistente del perfil" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Asistente del perfil" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "No se ha cargado material." @@ -5449,14 +5782,6 @@ msgstr "Lector de perfiles de Cura" #~ msgid "Configure setting visiblity..." #~ msgstr "Configurar la visibilidad de los ajustes..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 m/~ %2 g/~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 m/~ %2 g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Automático: %1" @@ -5493,14 +5818,6 @@ msgstr "Lector de perfiles de Cura" #~ msgid "GCode Profile Reader" #~ msgstr "Lector de perfiles Gcode" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Permite a los fabricantes de material crear nuevos perfiles de material y calidad mediante una IU integrada." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Imprimir asistente del perfil" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "Se han producido varios errores al abrir el archivo de SolidWorks. Compruebe que el archivo se puede abrir correctamente en SolidWorks." @@ -5697,10 +6014,6 @@ msgstr "Lector de perfiles de Cura" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "La impresora aloja un grupo de %1 impresoras conectadas de Ultimaker 3" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Preparando" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Completado el: " diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index e8f44ef4f1..14bf25d79c 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\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 b5cd50638f..62d8d4a158 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Spanish\n" @@ -57,7 +57,9 @@ 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" @@ -69,7 +71,9 @@ 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" @@ -81,6 +85,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "GUID del material. Este valor se define de forma automática. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1056,6 +1070,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Zigzag" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1136,6 +1160,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Compensa el flujo en partes de una pared interior que se están imprimiendo donde ya hay una pared." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1501,11 +1545,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Concéntrico" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concéntrico 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1531,6 +1570,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y se reduzca el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1561,6 +1610,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1871,16 +1942,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2718,8 +2779,8 @@ msgstr "Modo Peinada" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores peinando solo dentro del relleno." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2736,6 +2797,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "No en el forro" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3116,11 +3182,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Concéntrico" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concéntrico 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3181,6 +3242,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3471,11 +3552,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Concéntrico" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concéntrico 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3511,11 +3587,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Concéntrico" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concéntrico 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3551,16 +3622,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Concéntrico" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concéntrico 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Zigzag" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3711,7 +3797,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "La distancia horizontal entre la falda y la primera capa de la impresión.\nSe trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." +msgstr "" +"La distancia horizontal entre la falda y la primera capa de la impresión.\n" +"Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -3885,8 +3973,8 @@ msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser línea #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Espaciado de líneas de la balsa" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4103,16 +4191,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Grosor de la torre auxiliar" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "El grosor de la torre auxiliar hueca. Un grosor mayor de la mitad del volumen mínimo de la torre auxiliar dará lugar a una torre auxiliar densa." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4153,26 +4231,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Limpiar tobera después de cambiar" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Tras cambiar de extrusor, limpie el material que rezuma de la tobera en el primer objeto que imprima. Esto lleva a cabo un movimiento de limpieza lento y suave en un lugar en el que el material que rezuma produzca el menor daño posible a la calidad superficial de la impresión." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Volumen de purga de la torre auxiliar" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Cantidad de filamentos que purgar al limpiar la torre auxiliar. La purga sirve para compensar la pérdida de filamentos que se produce durante el rezumado cuando la tobera está inactiva." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4658,6 +4716,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5168,7 +5236,9 @@ msgctxt "wireframe_up_half_speed description" msgid "" "Distance of an upward move which is extruded with half speed.\n" "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "Distancia de un movimiento ascendente que se extrude a media velocidad.\nEsto puede causar una mejor adherencia a las capas anteriores, aunque no calienta demasiado el material en esas capas. Solo se aplica a la impresión de alambre." +msgstr "" +"Distancia de un movimiento ascendente que se extrude a media velocidad.\n" +"Esto puede causar una mejor adherencia a las capas anteriores, aunque no calienta demasiado el material en esas capas. Solo se aplica a la impresión de alambre." #: fdmprinter.def.json msgctxt "wireframe_top_jump label" @@ -5315,6 +5385,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "Umbral para usar o no una capa más pequeña. Este número se compara con el curtido de la pendiente más empinada de una capa." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5345,16 +5435,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Si un área de forro es compatible con un porcentaje inferior de su área, se imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes de forro habituales." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Voladizo máximo de pared del puente" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "Ancho máximo permitido de la cámara de aire por debajo de una línea de pared antes imprimir la pared utilizando los ajustes de puente. Se expresa como porcentaje del ancho de la línea de la pared. Si la cámara de aire es mayor, la línea de la pared de imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes habituales. Cuando menor sea el valor, más probable es que las líneas de pared del voladizo se impriman utilizando ajustes de puente." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5575,6 +5655,66 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concéntrico 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores peinando solo dentro del relleno." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concéntrico 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concéntrico 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concéntrico 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concéntrico 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Espaciado de líneas de la balsa" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Grosor de la torre auxiliar" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "El grosor de la torre auxiliar hueca. Un grosor mayor de la mitad del volumen mínimo de la torre auxiliar dará lugar a una torre auxiliar densa." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Limpiar tobera después de cambiar" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Tras cambiar de extrusor, limpie el material que rezuma de la tobera en el primer objeto que imprima. Esto lleva a cabo un movimiento de limpieza lento y suave en un lugar en el que el material que rezuma produzca el menor daño posible a la calidad superficial de la impresión." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volumen de purga de la torre auxiliar" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Cantidad de filamentos que purgar al limpiar la torre auxiliar. La purga sirve para compensar la pérdida de filamentos que se produce durante el rezumado cuando la tobera está inactiva." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Voladizo máximo de pared del puente" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "Ancho máximo permitido de la cámara de aire por debajo de una línea de pared antes imprimir la pared utilizando los ajustes de puente. Se expresa como porcentaje del ancho de la línea de la pared. Si la cámara de aire es mayor, la línea de la pared de imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes habituales. Cuando menor sea el valor, más probable es que las líneas de pared del voladizo se impriman utilizando ajustes de puente." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización." diff --git a/resources/i18n/fdmextruder.def.json.pot b/resources/i18n/fdmextruder.def.json.pot index db93c13b3c..5a89eaee33 100644 --- a/resources/i18n/fdmextruder.def.json.pot +++ b/resources/i18n/fdmextruder.def.json.pot @@ -1,17 +1,12 @@ -# Cura JSON setting files -# Copyright (C) 2018 Ultimaker -# This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2018. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" -"Language-Team: TEAM\n" -"Language: xx_XX\n" +"Language-Team: LANGUAGE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index c505755444..79bcf5c7dc 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -1,17 +1,12 @@ -# Cura JSON setting files -# Copyright (C) 2018 Ultimaker -# This file is distributed under the same license as the Cura package. -# Ruben Dulek , 2018. -# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" -"Language-Team: TEAM\n" -"Language: xx_XX\n" +"Language-Team: LANGUAGE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -82,6 +77,18 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "" +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "" +"Adjusts the diameter of the filament used. Match this value with the " +"diameter of the used filament." +msgstr "" + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1154,6 +1161,20 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can " +"reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1261,6 +1282,33 @@ msgid "" "already a wall in place." msgstr "" +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "" +"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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "" +"If enabled, retraction is used rather than combing for travel moves that " +"replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1677,11 +1725,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1712,6 +1755,19 @@ msgid "" "of material used." msgstr "" +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "" +"Connect infill paths where they run next to each other. For infill patterns " +"which consist of several closed polygons, enabling this setting greatly " +"reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1748,6 +1804,35 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "" +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "" +"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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin " +"lines sag down less which means you need less top/bottom skin layers for the " +"same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the " +"infill into a single extrusion path without the need for travels or " +"retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -2139,18 +2224,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "" -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "" -"Adjusts the diameter of the filament used. Match this value with the " -"diameter of the used filament." -msgstr "" - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -3106,7 +3179,9 @@ msgid "" "results in slightly longer travel moves but reduces the need for " "retractions. If combing is off, the material will retract and the nozzle " "moves in a straight line to the next point. It is also possible to avoid " -"combing over top/bottom skin areas by combing within the infill only." +"combing over top/bottom skin areas and also to only comb within the infill. " +"Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' " +"option in earlier Cura releases." msgstr "" #: fdmprinter.def.json @@ -3124,6 +3199,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3581,11 +3661,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3658,6 +3733,30 @@ msgid "" "calculated by the support density." msgstr "" +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "" +"Distance between the printed initial layer support structure lines. This " +"setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "" +"Orientation of the infill pattern for supports. The support infill pattern " +"is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -4005,11 +4104,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -4045,11 +4139,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -4086,13 +4175,32 @@ msgid "Concentric" msgstr "" #: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" msgstr "" #: fdmprinter.def.json -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "" +"When enabled, the print cooling fan speed is altered for the skin regions " +"immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "" +"Percentage fan speed to use when printing the skin regions immediately above " +"the support. Using a high fan speed can make the support easier to remove." msgstr "" #: fdmprinter.def.json @@ -4487,7 +4595,7 @@ msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" +msgid "Raft Base Line Spacing" msgstr "" #: fdmprinter.def.json @@ -4720,18 +4828,6 @@ msgid "" "enough material." msgstr "" -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "" -"The thickness of the hollow prime tower. A thickness larger than half the " -"Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "" - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4776,32 +4872,6 @@ msgid "" "the other nozzle off on the prime tower." msgstr "" -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "" -"After switching extruder, wipe the oozed material off of the nozzle on the " -"first thing printed. This performs a safe slow wipe move at a place where " -"the oozed material causes least harm to the surface quality of your print." -msgstr "" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "" -"Amount of filament to be purged when wiping on the prime tower. Purging is " -"useful for compensating the filament lost by oozing during inactivity of the " -"nozzle." -msgstr "" - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -5402,6 +5472,20 @@ msgid "" "Celsius)." msgstr "" +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "" +"Polygons in sliced layers that have a circumference smaller than this amount " +"will be filtered out. Lower values lead to higher resolution mesh at the " +"cost of slicing time. It is meant mostly for high resolution SLA printers " +"and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -6203,6 +6287,30 @@ msgid "" "the tan of the steepest slope in a layer." msgstr "" +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "" +"Walls that overhang more than this angle will be printed using overhanging " +"wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "" +"Overhanging walls will be printed at this percentage of their normal print " +"speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -6241,22 +6349,6 @@ msgid "" "skin settings." msgstr "" -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "" -"The maximum allowed width of the region of air below a wall line before the " -"wall is printed using bridge settings. Expressed as a percentage of the wall " -"line width. When the air gap is wider than this, the wall line is printed " -"using the bridge settings. Otherwise, the wall line is printed using the " -"normal settings. The lower the value, the more likely it is that overhung " -"wall lines will be printed using bridge settings." -msgstr "" - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index a4b5719da7..ede84960be 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2017-09-27 12:27+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -38,6 +38,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "GCode-tiedosto" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -53,78 +64,17 @@ msgid "" "

View print quality guide

" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Tulostus Doodle3D WiFi-Boxin avulla" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Tulostus Doodle3D WiFi-Boxin avulla" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Yhteyden muodostaminen Doodle3D Connectiin" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Peruuta" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Lähetetään tietoja Doodle3D Connectiin" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Tietojen lähetys Doodle3D Connectiin ei onnistu. Onko toinen työ yhä aktiivinen?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Tietoja tallennetaan Doodle3D Connectiin" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Tiedosto lähetetty Doodle3D Connectiin" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Avaa Doodle3D Connect -verkkoliittymä" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Näytä muutosloki" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Aktivoitujen asetusten tasoitus" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "Profiili on tasoitettu ja aktivoitu." @@ -149,6 +99,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Yhdistetty USB:n kautta" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -171,6 +126,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -193,7 +153,7 @@ msgid "Save to Removable Drive {0}" msgstr "Tallenna siirrettävälle asemalle {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "" @@ -232,7 +192,7 @@ msgstr "Ei voitu tallentaa siirrettävälle asemalle {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Virhe" @@ -261,8 +221,8 @@ msgstr "Poista siirrettävä asema {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Varoitus" @@ -289,212 +249,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Siirrettävä asema" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Tulosta verkon kautta" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Tulosta verkon kautta" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Yhdistetty verkon kautta tulostimeen." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Yhdistetty verkon kautta. Hyväksy tulostimen käyttöoikeuspyyntö." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Yhdistetty verkon kautta tulostimeen. Ei käyttöoikeutta tulostimen hallintaan." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Tulostimen käyttöoikeutta pyydetty. Hyväksy tulostimen pyyntö" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Yritä uudelleen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Lähetä käyttöoikeuspyyntö uudelleen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Tulostimen käyttöoikeus hyväksytty" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Tällä tulostimella tulostukseen ei ole käyttöoikeutta. Tulostustyön lähetys ei onnistu." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Pyydä käyttöoikeutta" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Lähetä tulostimen käyttöoikeuspyyntö" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Ristiriitainen määritys" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Haluatko varmasti tulostaa valitulla määrityksellä?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Tulostimen ja Curan määrityksen tai kalibroinnin välillä on ristiriita. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Uusien töiden lähettäminen (tilapäisesti) estetty, edellistä tulostustyötä lähetetään vielä." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Lähetetään tietoja tulostimeen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Lähetetään tietoja" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Peruuta" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Eri materiaali (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Synkronoi tulostimen kanssa" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Haluatko käyttää nykyistä tulostimen määritystä Curassa?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Tulostimen PrintCoret tai materiaalit eivät vastaa tulostettavan projektin asetuksia. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "{printer_name} on tulostanut työn '{job_name}'." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Tulosta valmis" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Yhdistä verkon kautta" @@ -504,24 +479,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, 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/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Päivitystietoja ei löytynyt." @@ -531,17 +506,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Kerrosnäkymä" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "Cura ei näytä kerroksia täsmällisesti, kun rautalankatulostus on käytössä" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "Muokkaa GCode-arvoa" @@ -555,32 +530,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Kerätään tietoja" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "" @@ -590,18 +565,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Cura 15.04 -profiilit" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "" - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -627,49 +590,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF-kuva" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Viipalointi ei onnistu" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Ei viipaloitavaa, koska mikään malleista ei sovellu tulostustilavuuteen. Skaalaa tai pyöritä mallia, kunnes se on sopiva." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Käsitellään kerroksia" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Tiedot" @@ -696,18 +666,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Mukautettu" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-tiedosto" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Suutin" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -718,18 +699,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "G File -tiedosto" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "G-coden jäsennys" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "G-coden tiedot" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -740,16 +721,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-profiili" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MF-tiedosto" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-projektin 3MF-tiedosto" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -831,19 +827,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Esiviipaloitu tiedosto {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "Tiedosto on jo olemassa" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -855,23 +851,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "Valittu materiaali ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Yhteensopimaton materiaali" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "" @@ -954,13 +950,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profiilista puuttuu laatutyyppi." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Laatutyyppiä {0} ei löydy nykyiselle kokoonpanolle." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -987,42 +983,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Mukautettu materiaali" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Mukautettu" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Tulostustilavuus" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "" @@ -1033,32 +1029,32 @@ msgid "Multiplying and placing objects" msgstr "Kappaleiden kertominen ja sijoittelu" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Sijoitetaan kappaletta" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Uusien paikkojen etsiminen kappaleille" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Etsitään paikkaa" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Paikkaa ei löydy" @@ -1189,223 +1185,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Ladataan laitteita..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Asetetaan näkymää..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Ladataan käyttöliittymää..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Laitteen asetukset" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Tulostin" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Tulostimen asetukset" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (leveys)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (syvyys)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (korkeus)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Alustan muoto" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Alkukohta keskellä" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Lämmitettävä pöytä" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Tulostuspään asetukset" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X väh." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Etäisyys tulostuspään vasemmalta puolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y väh." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Etäisyys tulostuspään etupuolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X enint." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Etäisyys tulostuspään oikealta puolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y enint." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Etäisyys tulostuspään takapuolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Korokkeen korkeus" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "Suuttimen kärjen ja korokejärjestelmän (X- ja Y-akselit) välinen korkeusero. Käytetään estämään aiempien tulosteiden ja korokkeen yhteentörmäyksiä, kun tulostetaan yksi kerrallaan." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Suulakkeiden määrä" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Suutinasetukset" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Suuttimen koko" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "Tulostimen tukema tulostuslangan nimellinen halkaisija. Materiaali ja/tai profiili korvaa tarkan halkaisijan." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Suuttimen X-siirtymä" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Suuttimen Y-siirtymä" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "" @@ -1425,29 +1421,42 @@ msgctxt "@info" msgid "Could not connect to the Cura Package database. Please check your connection." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiaalit" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Tuntematon" @@ -1480,16 +1489,56 @@ msgctxt "@action:button" msgid "Back" msgstr "" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 msgctxt "@info" msgid "You will need to restart Cura before changes in packages have effect." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1533,12 +1582,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Hylkää" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "" @@ -1548,9 +1597,14 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 @@ -1565,9 +1619,9 @@ msgstr "Muutosloki" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1615,22 +1669,22 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Yhdistä verkkotulostimeen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" @@ -1641,333 +1695,339 @@ msgstr "" "\n" "Valitse tulostin alla olevasta luettelosta:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Lisää" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Muokkaa" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Poista" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Päivitä" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Tyyppi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Laiteohjelmistoversio" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Osoite" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Tätä tulostinta ei ole määritetty Ultimaker 3 -tulostinryhmän isännäksi." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Tämä tulostin on {count} tulostimen Ultimaker 3 -ryhmän isäntä." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "Tämän osoitteen tulostin ei ole vielä vastannut." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Yhdistä" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Tulostimen osoite" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Anna verkon tulostimen IP-osoite tai isäntänimi." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Tulosta verkon kautta" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Tulosta" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 ei ole määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" +msgid "Manage queue" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Näytä tulostustyöt" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Tulostetaan" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Saatavilla" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Varattu" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Valmis" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Valmistellaan tulostusta" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Vaatii toimenpiteitä" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Tulostus keskeytetty" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Ei hyväksy tulostustöitä" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Päättyy: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Tyhjennä alusta" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "Odotetaan määrityksen muutosta" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Tulostustyöt" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Tulostetaan" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "Jonossa" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Tulostimet" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Tulostetaan" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Näytä tulostimet" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Keskeytä tulostus" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Valmis" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Valmistellaan" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Vaatii toimenpiteitä" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Yhdistä tulostimeen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Lataa tulostimen määritys Curaan" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Aktivoi määritys" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Värimalli" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Materiaalin väri" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Linjojen tyyppi" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Yhteensopivuustila" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Näytä siirtoliikkeet" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Näytä avustimet" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Näytä kuori" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Näytä täyttö" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Näytä vain yläkerrokset" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Yläosa/alaosa" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Sisäseinämä" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "" @@ -2087,53 +2147,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Tasoitus" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Valitse asetukset" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Valitse tätä mallia varten mukautettavat asetukset" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Suodatin..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Näytä kaikki" @@ -2155,13 +2215,13 @@ msgid "Create new" msgstr "Luo uusi" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Yhteenveto – Cura-projekti" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Tulostimen asetukset" @@ -2178,7 +2238,7 @@ msgid "Update" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Tyyppi" @@ -2189,7 +2249,7 @@ msgid "Printer Group" msgstr "" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Profiilin asetukset" @@ -2201,19 +2261,19 @@ msgstr "Miten profiilin ristiriita pitäisi ratkaista?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Nimi" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Ei profiilissa" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2243,7 +2303,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Miten materiaalin ristiriita pitäisi ratkaista?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Asetusten näkyvyys" @@ -2254,13 +2314,13 @@ msgid "Mode" msgstr "Tila" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Näkyvät asetukset:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1/%2" @@ -2275,6 +2335,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Avaa" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Vie" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2493,26 +2629,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Poista tuloste" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Keskeytä" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Jatka" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Keskeytä tulostus" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Keskeytä tulostus" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2549,19 +2669,17 @@ msgid "Customized" msgstr "Mukautettu" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Kysy aina" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Hylkää äläkä kysy uudelleen" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Säilytä äläkä kysy uudelleen" @@ -2581,101 +2699,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Luo uusi profiili" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Tiedot" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Näytä nimi" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Merkki" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Materiaalin tyyppi" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Väri" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Ominaisuudet" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Tiheys" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Läpimitta" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Tulostuslangan hinta" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Tulostuslangan paino" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Tulostuslangan pituus" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Hinta metriä kohden" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Poista materiaalin linkitys" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Kuvaus" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Tarttuvuustiedot" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Tulostusasetukset" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Aktivoi" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Luo" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Jäljennös" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Tuo" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Tuo materiaali" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Materiaalin tuominen onnistui: %1" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Vie materiaali" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Materiaalin vieminen onnistui kohteeseen %1" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2712,7 +2902,7 @@ msgid "Unit" msgstr "Yksikkö" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Yleiset" @@ -2904,8 +3094,8 @@ msgstr "Projektitiedoston avaamisen oletustoimintatapa: " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Kysy aina" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2924,77 +3114,75 @@ msgstr "Kun olet tehnyt muutokset profiiliin ja vaihtanut toiseen, näytetään #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Kumoa profiili" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Tietosuoja" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Tarkista päivitykset käynnistettäessä" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Lähetä (anonyymit) tulostustiedot" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Tulostimet" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivoi" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3038,7 +3226,7 @@ msgid "Aborting print..." msgstr "Keskeytetään tulostus..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Profiilit" @@ -3053,18 +3241,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Jäljennös" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Tuo" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Vie" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3075,18 +3251,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Monista profiili" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3107,96 +3271,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Tulostin: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Suojatut profiilit" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Mukautetut profiilit" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Päivitä nykyiset asetukset tai ohitukset profiiliin" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Hylkää tehdyt muutokset" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Nykyiset asetukset vastaavat valittua profiilia." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Yleiset asetukset" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiaalit" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Luo" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Jäljennös" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Tuo materiaali" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiaalin tuominen onnistui: %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Vie materiaali" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiaalin vieminen onnistui kohteeseen %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Lisää tulostin" @@ -3211,6 +3322,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Lisää tulostin" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3366,33 +3482,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Piilota tämä asetus" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Älä näytä tätä asetusta" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Pidä tämä asetus näkyvissä" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Määritä asetusten näkyvyys..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "" @@ -3486,7 +3602,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Suulake" @@ -3539,7 +3655,7 @@ msgid "The nozzle inserted in this extruder." msgstr "Tähän suulakkeeseen liitetty suutin." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Alusta" @@ -3564,6 +3680,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3662,38 +3793,11 @@ msgstr "" "Tulostuksen asennus ei käytössä\n" "G-code-tiedostoja ei voida muokata" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3704,30 +3808,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Mukautettu tulostuksen asennus

Tulosta hallitsemalla täysin kaikkia viipalointiprosessin vaiheita." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Aktiivinen tulostustyö" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Työn nimi" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Tulostusaika" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Aikaa jäljellä arviolta" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "Vaihda &koko näyttöön" +msgid "Toggle Full Screen" +msgstr "Vaihda koko näyttöön" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3746,27 +3850,27 @@ msgstr "&Lopeta" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" +msgid "3D View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" +msgid "Front View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" +msgid "Top View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" +msgid "Left Side View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" +msgid "Right Side View" msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 @@ -3821,188 +3925,187 @@ msgstr "Ilmoita &virheestä" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "Ti&etoja..." +msgid "About..." +msgstr "Tietoja..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "Poista &valittu malli" -msgstr[1] "Poista &valitut mallit" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Poista valittu malli" +msgstr[1] "Poista valitut mallit" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Keskitä valittu malli" msgstr[1] "Keskitä valitut mallit" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Kerro valittu malli" msgstr[1] "Kerro valitut mallit" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Poista malli" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ke&skitä malli alustalle" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Ryhmittele mallit" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Poista mallien ryhmitys" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Yhdistä mallit" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Kerro malli..." +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Valitse kaikki mallit" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "&Valitse kaikki mallit" +msgid "Clear Build Plate" +msgstr "Tyhjennä tulostusalusta" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&Tyhjennä tulostusalusta" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "&Lataa kaikki mallit uudelleen" +msgid "Reload All Models" +msgstr "Lataa kaikki mallit uudelleen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Järjestä kaikki mallit" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Järjestä valinta" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Määritä kaikkien mallien positiot uudelleen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "Määritä kaikkien mallien &muutokset uudelleen" +msgid "Reset All Model Transformations" +msgstr "Määritä kaikkien mallien muutokset uudelleen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Avaa tiedosto(t)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Uusi projekti..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Näytä moottorin l&oki" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Näytä määrityskansio" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Lataa 3D-malli" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Valmiina viipaloimaan" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Viipaloidaan..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Valmis: %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Viipalointi ei onnistu" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Viipalointi ei käytettävissä" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Valmistele" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Peruuta" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Valitse aktiivinen tulostusväline" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Avaa tiedosto(t)" @@ -4022,129 +4125,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" -msgstr "&Tiedosto" +msgstr "Tie&dosto" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 -msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "&Tallenna valinta tiedostoon" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Tallenna &nimellä…" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." +msgid "&Save..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Muokkaa" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Näytä" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "&Asetukset" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Tulostin" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Materiaali" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Aseta aktiiviseksi suulakepuristimeksi" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Profiili" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Laa&jennukset" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "L&isäasetukset" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Ohje" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Avaa tiedosto" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Asetukset" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Uusi projekti" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Avaa tiedosto(t)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4154,112 +4273,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Tallenna projekti" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Suulake %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & materiaali" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Älä näytä projektin yhteenvetoa tallennettaessa" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Tallenna" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Kerroksen korkeus" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Tulostusnopeus" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Hitaammin" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Nopeammin" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Täyttö" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Ota asteittainen käyttöön" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Muodosta tuki" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Valitse tukena käytettävä suulakepuristin. Näin mallin alle rakennetaan tukirakenteita estämään mallin painuminen tai tulostuminen ilmaan." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Alustan tarttuvuus" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Tarvitsetko apua tulosteiden parantamiseen?
Lue Ultimakerin vianmääritysoppaat" @@ -4306,22 +4425,22 @@ msgctxt "@label" msgid "Printer type" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Materiaali" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" +msgid "Use glue with this material combination" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Napsauta ja tarkista materiaalin yhteensopivuus sivustolla Ultimaker.com." @@ -4411,16 +4530,6 @@ msgctxt "name" msgid "God Mode" msgstr "Jumala-tila" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne Wi-Fi-yhteyden kautta Doodle3D WiFi-Boxiin." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4501,16 +4610,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "" - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4621,16 +4720,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Aikaisempien Cura-profiilien lukija" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "" - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4681,6 +4770,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Päivitys versiosta 2.7 versioon 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4791,6 +4890,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura-profiilin kirjoitin" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "" + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4821,6 +4930,138 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Cura-profiilin lukija" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Tulostus Doodle3D WiFi-Boxin avulla" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Tulostus Doodle3D WiFi-Boxin avulla" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Yhteyden muodostaminen Doodle3D Connectiin" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Lähetetään tietoja Doodle3D Connectiin" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Tietojen lähetys Doodle3D Connectiin ei onnistu. Onko toinen työ yhä aktiivinen?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Tietoja tallennetaan Doodle3D Connectiin" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Tiedosto lähetetty Doodle3D Connectiin" + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Avaa Doodle3D Connect -verkkoliittymä" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Tätä tulostinta ei ole määritetty Ultimaker 3 -tulostinryhmän isännäksi." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Tämä tulostin on {count} tulostimen Ultimaker 3 -ryhmän isäntä." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 ei ole määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi" + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Näytä tulostustyöt" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Tulostetaan" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Saatavilla" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Varattu" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Valmistellaan tulostusta" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Tulostus keskeytetty" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Ei hyväksy tulostustöitä" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Päättyy: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Tyhjennä alusta" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "Odotetaan määrityksen muutosta" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Tulostustyöt" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Tulostimet" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Näytä tulostimet" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Keskeytä" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Jatka" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Keskeytä tulostus" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Kysy aina" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Kumoa profiili" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "&Tallenna valinta tiedostoon" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Tallenna &nimellä…" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne Wi-Fi-yhteyden kautta Doodle3D WiFi-Boxiin." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box" + #~ msgctxt "@item:inlistbox" #~ msgid "SolidWorks part file" #~ msgstr "SolidWorks-osatiedosto" @@ -5307,10 +5548,6 @@ msgstr "Cura-profiilin lukija" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "Tämä tulostin on %1 tulostimen yhdistetyn Ultimaker 3 -ryhmän isäntä" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Valmistellaan" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Valmistunut: " diff --git a/resources/i18n/fi_FI/fdmextruder.def.json.po b/resources/i18n/fi_FI/fdmextruder.def.json.po index 02f11f3837..381991d5e4 100644 --- a/resources/i18n/fi_FI/fdmextruder.def.json.po +++ b/resources/i18n/fi_FI/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"POT-Creation-Date: 2018-09-19 17:07+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 862dadaa15..6c1decafbf 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2017-09-27 12:27+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -80,6 +80,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "Materiaalin GUID. Tämä määritetään automaattisesti. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Läpimitta" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Säätää käytetyn tulostuslangan halkaisijaa. Määritä tämä arvo vastaamaan käytetyn tulostuslangan halkaisijaa." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1055,6 +1065,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Siksak" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1135,6 +1155,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Kompensoi tulostettaessa virtausta niiden sisäseinämien osien kohdalla, joissa on jo olemassa seinämä." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1500,11 +1540,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Samankeskinen" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Samankeskinen 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1530,6 +1565,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "" +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1560,6 +1605,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "" +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1870,16 +1937,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "Lämmitettävän alustan lämpötila ensimmäistä kerrosta tulostettaessa." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Läpimitta" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Säätää käytetyn tulostuslangan halkaisijaa. Määritä tämä arvo vastaamaan käytetyn tulostuslangan halkaisijaa." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2717,8 +2774,8 @@ msgstr "Pyyhkäisytila" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "Pyyhkäisy pitää suuttimen aiemmin tulostetuilla alueilla siirtoliikkeitä tehtäessä. Tämä johtaa hieman pidempiin siirtoliikkeisiin, mutta vähentää takaisinvedon tarvetta. Jos pyyhkäisy on poistettu käytöstä, materiaalille tehdään takaisinveto ja suutin liikkuu suoraan seuraavaan pisteeseen. On myös mahdollista välttää pyyhkäisy ylä- tai alapintakalvojen yli pyyhkäisemällä vain täytössä." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2735,6 +2792,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3115,11 +3177,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Samankeskinen" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Samankeskinen 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3180,6 +3237,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Tulostettujen tukirakenteiden linjojen välinen etäisyys. Tämä asetus lasketaan tuen tiheyden perusteella." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3470,11 +3547,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Samankeskinen" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Samankeskinen 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3510,11 +3582,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Samankeskinen" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Samankeskinen 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3550,16 +3617,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Samankeskinen" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Samankeskinen 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Siksak" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3884,8 +3966,8 @@ msgstr "Pohjaristikon pohjakerroksen linjojen leveys. Näiden tulisi olla paksuj #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Pohjaristikon linjajako" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4102,16 +4184,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Esitäyttötornin kunkin kerroksen minimitilavuus, jotta voidaan poistaa riittävästi materiaalia." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Esitäyttötornin paksuus" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "Onton esitäyttötornin paksuus. Jos paksuus ylittää puolet esitäyttötornin minimitilavuudesta, tuloksena on tiheä esitäyttötorni." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4152,26 +4224,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Kun esitäyttötorni on tulostettu yhdellä suuttimella, pyyhi toisesta suuttimesta tihkunut materiaali pois esitäyttötornissa." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Pyyhi suutin vaihdon jälkeen" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Pyyhi suuttimen vaihdon jälkeen tihkunut materiaali pois suuttimesta, kun ensimmäinen kappale on tulostettu. Näin saadaan aikaan turvallinen ja hidas pyyhkäisyliike kohdassa, jossa tihkunut materiaali vaurioittaa mahdollisimman vähän tulostuksen pinnan laatua." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Esitäyttötornin poistoainemäärä" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Poistettavan tulostuslangan määrä esitäyttötornia pyyhittäessä. Poisto on hyödyllinen menetetyn tulostuslangan kompensointiin, silloin kun sitä tihkuu suuttimen ollessa ei-aktiivinen." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4657,6 +4709,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Tiedot, jotka yhdistävät materiaalivirran (mm3 sekunnissa) lämpötilaan (celsiusastetta)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5316,6 +5378,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "" +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5346,16 +5428,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "" -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "" - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5576,6 +5648,58 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Samankeskinen 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "Pyyhkäisy pitää suuttimen aiemmin tulostetuilla alueilla siirtoliikkeitä tehtäessä. Tämä johtaa hieman pidempiin siirtoliikkeisiin, mutta vähentää takaisinvedon tarvetta. Jos pyyhkäisy on poistettu käytöstä, materiaalille tehdään takaisinveto ja suutin liikkuu suoraan seuraavaan pisteeseen. On myös mahdollista välttää pyyhkäisy ylä- tai alapintakalvojen yli pyyhkäisemällä vain täytössä." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Samankeskinen 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Samankeskinen 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Samankeskinen 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Samankeskinen 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Pohjaristikon linjajako" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Esitäyttötornin paksuus" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "Onton esitäyttötornin paksuus. Jos paksuus ylittää puolet esitäyttötornin minimitilavuudesta, tuloksena on tiheä esitäyttötorni." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Pyyhi suutin vaihdon jälkeen" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Pyyhi suuttimen vaihdon jälkeen tihkunut materiaali pois suuttimesta, kun ensimmäinen kappale on tulostettu. Näin saadaan aikaan turvallinen ja hidas pyyhkäisyliike kohdassa, jossa tihkunut materiaali vaurioittaa mahdollisimman vähän tulostuksen pinnan laatua." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Esitäyttötornin poistoainemäärä" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Poistettavan tulostuslangan määrä esitäyttötornia pyyhittäessä. Poisto on hyödyllinen menetetyn tulostuslangan kompensointiin, silloin kun sitä tihkuu suuttimen ollessa ei-aktiivinen." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Optimoi seinämien tulostusjärjestys takaisinvetojen ja kuljetun etäisyyden vähentämiseksi. Useimmat osat hyötyvät tämän asetuksen käytöstä, mutta joissakin saattaa kestää kauemmin, joten vertaa tulostusajan arvioita optimointia käytettäessä ja ilman sitä." diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 8921c2c6c7..2a075f7c31 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: French\n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Fichier GCode" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -53,80 +64,23 @@ msgid "" "

{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

" +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/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Imprimer avec Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Imprimer avec Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Connexion avec Doodle3D Connecter..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuler" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Envoi de données vers Doodle3D Connecter..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Impossible d'envoyer les données à Doodle3D Connect. Une autre tâche est-elle toujours active ?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Enregistrement de données dans Doodle3D Connecter..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Fichier envoyé vers Doodle3D Connecter" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Ouvrir Connect..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Ouvrir l'interface web Doodle3D Connecter" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Afficher le récapitulatif des changements" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Aplatir les paramètres actifs" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "Le profil a été aplati et activé." @@ -151,6 +105,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Connecté via USB" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -173,6 +132,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Fichier G-Code compressé" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -195,7 +159,7 @@ msgid "Save to Removable Drive {0}" msgstr "Enregistrer sur un lecteur amovible {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Aucun format de fichier n'est disponible pour écriture !" @@ -234,7 +198,7 @@ msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Erreur" @@ -263,8 +227,8 @@ msgstr "Ejecter le lecteur amovible {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Avertissement" @@ -291,212 +255,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Lecteur amovible" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Imprimer sur le réseau" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Imprimer sur le réseau" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Connecté sur le réseau." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Connecté sur le réseau. Veuillez approuver la demande d'accès sur l'imprimante." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Connecté sur le réseau. Pas d'accès pour commander l'imprimante." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Accès à l'imprimante demandé. Veuillez approuver la demande sur l'imprimante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Statut d'authentification" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Statut d'authentification" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Réessayer" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Renvoyer la demande d'accès" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Accès à l'imprimante accepté" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Aucun accès pour imprimer avec cette imprimante. Impossible d'envoyer la tâche d'impression." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Demande d'accès" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Envoyer la demande d'accès à l'imprimante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Impossible de démarrer une nouvelle tâche d'impression." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Un problème avec la configuration de votre Ultimaker empêche le démarrage de l'impression. Veuillez résoudre ce problème avant de continuer." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Configuration différente" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Êtes-vous sûr(e) de vouloir imprimer avec la configuration sélectionnée ?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Problème de compatibilité entre la configuration ou l'étalonnage de l'imprimante et Cura. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Envoi de nouvelles tâches (temporairement) bloqué, envoi de la tâche d'impression précédente en cours." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Envoi des données à l'imprimante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Envoi des données..." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuler" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Pas de PrintCore inséré dans la fente {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Aucun matériau inséré dans la fente {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "PrintCore différent (Cura : {cura_printcore_name}, Imprimante : {remote_printcore_name}) sélectionné pour l'extrudeuse {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Matériau différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Synchroniser avec votre imprimante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Voulez-vous utiliser votre configuration d'imprimante actuelle dans Cura ?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Les PrintCores et / ou matériaux sur votre imprimante diffèrent de ceux de votre projet actuel. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Connecté sur le réseau." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Données envoyées" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "Afficher sur le moniteur" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "{printer_name} a terminé d'imprimer '{job_name}'." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "La tâche d'impression '{job_name}' est terminée." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Impression terminée" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Connecter via le réseau" @@ -506,24 +485,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Surveiller" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "De nouvelles fonctionnalités sont disponibles pour votre {machine_name} ! Il est recommandé de mettre à jour le firmware sur votre imprimante." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "Nouveau firmware %s disponible" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Comment effectuer la mise à jour" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Impossible d'accéder aux informations de mise à jour." @@ -533,17 +512,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vue en couches" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 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/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Vue simulation" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "Modifier le G-Code" @@ -557,32 +536,32 @@ 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/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura recueille des statistiques d'utilisation anonymes." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Collecte des données..." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Plus d'informations" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Voir plus d'informations sur les données envoyées par Cura." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Autoriser" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Autoriser Cura à envoyer des statistiques d'utilisation anonymes pour mieux prioriser les améliorations futures apportées à Cura. Certaines de vos préférences et paramètres sont envoyés, ainsi que la version du logiciel Cura et un hachage des modèles que vous découpez." @@ -592,18 +571,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Profils Cura 15.04" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Fichier Blender" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "Impossible d'exporter avec la qualité \"{}\" !\nQualité redéfinie sur \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -629,49 +596,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Image GIF" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Impossible de découper" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Rien à couper car aucun des modèles ne convient au volume d'impression. Mettez à l'échelle ou faites pivoter les modèles pour les faire correspondre." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Traitement des couches" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Informations" @@ -698,18 +672,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Personnalisé" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Fichier 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Buse" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -720,18 +705,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "Fichier G" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "Analyse du G-Code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "Détails G-Code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -742,16 +727,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profil Cura" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Assistant de profil" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Assistant de profil" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "Fichier 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Projet Cura fichier 3MF" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -833,19 +833,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Inconnu" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Fichier {0} prédécoupé" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "Le fichier existe déjà" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -857,23 +857,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Pas écrasé" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "Le matériau sélectionné est incompatible avec la machine ou la configuration sélectionnée." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Matériau incompatible" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles : [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Paramètres mis à jour" @@ -956,13 +956,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Il manque un type de qualité au profil." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Impossible de trouver un type de qualité {0} pour la configuration actuelle." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -989,42 +989,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tous les fichiers (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Matériau personnalisé" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Personnalisé" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Volume d'impression" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 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/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Sauvegarde" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 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/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "A essayé de restaurer une sauvegarde Cura qui ne correspond pas à votre version actuelle." @@ -1035,32 +1035,32 @@ msgid "Multiplying and placing objects" msgstr "Multiplication et placement d'objets" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Placement de l'objet..." -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Recherche d'emplacement..." #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Impossible de trouver un emplacement" @@ -1078,7 +1078,12 @@ msgid "" "

Backups can be found in the configuration folder.

\n" "

Please send us this Crash Report to fix the problem.

\n" " " -msgstr "

Oups, un problème est survenu dans Ultimaker Cura.

\n

Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

\n

Les sauvegardes se trouvent dans le dossier de configuration.

\n

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

\n " +msgstr "" +"

Oups, un problème est survenu dans Ultimaker Cura.

\n" +"

Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

\n" +"

Les sauvegardes se trouvent dans le dossier de configuration.

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102 msgctxt "@action:button" @@ -1111,7 +1116,10 @@ msgid "" "

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

\n" "

Please use the \"Send report\" button to post a bug report automatically to our servers

\n" " " -msgstr "

Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème

\n

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

\n " +msgstr "" +"

Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177 msgctxt "@title:groupbox" @@ -1191,223 +1199,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Envoyer rapport" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Chargement des machines..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Préparation de la scène..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Chargement de l'interface..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "Le modèle sélectionné était trop petit pour être chargé." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Paramètres de la machine" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Imprimante" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Paramètres de l'imprimante" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (Largeur)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profondeur)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Hauteur)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Forme du plateau" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Origine au centre" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Plateau chauffant" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Parfum G-Code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Paramètres de la tête d'impression" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distance entre la gauche de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distance entre le devant de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X max" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distance entre la droite de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y max" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distance entre le dos de la tête d'impression et le centre de la buse. Permet d'empêcher les collisions entre les impressions précédentes et la tête d'impression lors d'une impression « Un à la fois »." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Hauteur du portique" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y). Permet d'empêcher les collisions entre les impressions précédentes et le portique lors d'une impression « Un à la fois »." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Nombre d'extrudeuses" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "G-Code de démarrage" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "Commandes G-Code à exécuter au tout début." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "G-Code de fin" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Commandes G-Code à exécuter tout à la fin." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Paramètres de la buse" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Taille de la buse" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Diamètre du matériau compatible" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "Le diamètre nominal de filament pris en charge par l'imprimante. Le diamètre exact sera remplacé par le matériau et / ou le profil." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Décalage buse X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Décalage buse Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "Extrudeuse G-Code de démarrage" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "Extrudeuse G-Code de fin" @@ -1427,29 +1435,42 @@ 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Plug-ins" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Matériaux" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Version" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Dernière mise à jour" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Auteur" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Inconnu" @@ -1482,16 +1503,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Précédent" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Quitter Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1523,7 +1584,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "Ce plug-in contient une licence.\nVous devez approuver cette licence pour installer ce plug-in.\nAcceptez-vous les clauses ci-dessous ?" +msgstr "" +"Ce plug-in contient une licence.\n" +"Vous devez approuver cette licence pour installer ce plug-in.\n" +"Acceptez-vous les clauses ci-dessous ?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1535,12 +1599,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Refuser" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "Fonctionnalités" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Compatibilité" @@ -1550,10 +1614,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "Récupération des paquets..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "Contact" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1567,9 +1636,9 @@ msgstr "Récapitulatif des changements" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1617,356 +1686,365 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Accord utilisateur" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Connexion existante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Ce groupe / cette imprimante a déjà été ajouté à Cura. Veuillez sélectionner un autre groupe / imprimante." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Connecter à l'imprimante en réseau" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" "\n" "Select your printer from the list below:" -msgstr "Pour imprimer directement sur votre imprimante sur le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble réseau 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.\n\nSélectionnez votre imprimante dans la liste ci-dessous :" +msgstr "" +"Pour imprimer directement sur votre imprimante sur le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble réseau 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.\n" +"\n" +"Sélectionnez votre imprimante dans la liste ci-dessous :" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Ajouter" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Modifier" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Supprimer" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Rafraîchir" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Type" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Version du firmware" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Adresse" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes Ultimaker 3." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "L'imprimante est le patron pour un groupe de %1 imprimantes Ultimaker 3." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "L'imprimante à cette adresse n'a pas encore répondu." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Connecter" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Adresse de l'imprimante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Imprimer sur le réseau" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Sélection d'imprimantes" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Imprimer" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3." +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Ajouter / supprimer une imprimante" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Ouvre la page des tâches d'impression avec votre navigateur web." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Afficher les tâches d'impression" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Préparation..." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Impression..." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Disponible" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Connexion avec l'imprimante perdue" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponible" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Inconnu" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Désactivé" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Réservée" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminé" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Préparation de l'impression..." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Action requise" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "En pause" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Reprise" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Abandon de l'impression" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Non acceptation des tâches d'impression" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Complète a: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Enlever les objets du plateau" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "En attente de modification de configuration" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Imprimer les tâches" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Impression..." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "Mis en file d'attente" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Imprimantes" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Impression..." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Afficher les imprimantes" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abandonner l'impression" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminé" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Préparation..." + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "En pause" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Reprise" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Action requise" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Connecter à une imprimante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Charger la configuration de l'imprimante dans Cura" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Activer la configuration" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Modèle de couleurs" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Couleur du matériau" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Type de ligne" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Taux d'alimentation" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Épaisseur de la couche" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Mode de compatibilité" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Afficher les déplacements" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Afficher les aides" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Afficher la coque" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Afficher le remplissage" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Afficher uniquement les couches supérieures" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Afficher 5 niveaux détaillés en haut" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Haut / bas" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Paroi interne" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "min." -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "max." @@ -2086,53 +2164,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Lissage" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Type de maille" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Modèle normal" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Imprimer comme support" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Ne pas prendre en charge le chevauchement avec d'autres modèles" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Modifier les paramètres de chevauchement avec d'autres modèles" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Modifier les paramètres de remplissage d'autres modèles" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Sélectionner les paramètres" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Sélectionner les paramètres pour personnaliser ce modèle" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtrer..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Afficher tout" @@ -2154,13 +2232,13 @@ msgid "Create new" msgstr "Créer" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Résumé - Projet Cura" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Paramètres de l'imprimante" @@ -2177,7 +2255,7 @@ msgid "Update" msgstr "Mise à jour" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Type" @@ -2188,7 +2266,7 @@ msgid "Printer Group" msgstr "Groupe d'imprimantes" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Paramètres de profil" @@ -2200,19 +2278,19 @@ msgstr "Comment le conflit du profil doit-il être résolu ?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Nom" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Absent du profil" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2242,7 +2320,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Comment le conflit du matériau doit-il être résolu ?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Visibilité des paramètres" @@ -2253,13 +2331,13 @@ msgid "Mode" msgstr "Mode" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Paramètres visibles :" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 sur %2" @@ -2274,6 +2352,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Ouvrir" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Exporter" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00h 00min" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Spécification de coût" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Total :" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2492,26 +2646,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Supprimez l'imprimante" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Pause" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Reprendre" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Abandonner l'impression" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abandonner l'impression" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2528,7 +2666,9 @@ msgctxt "@text:window" msgid "" "You have customized some profile settings.\n" "Would you like to keep or discard those settings?" -msgstr "Vous avez personnalisé certains paramètres du profil.\nSouhaitez-vous conserver ces changements, ou les annuler ?" +msgstr "" +"Vous avez personnalisé certains paramètres du profil.\n" +"Souhaitez-vous conserver ces changements, ou les annuler ?" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110 msgctxt "@title:column" @@ -2546,19 +2686,17 @@ msgid "Customized" msgstr "Personnalisé" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Toujours me demander" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Annuler et ne plus me demander" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Conserver et ne plus me demander" @@ -2578,101 +2716,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Créer un nouveau profil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Informations" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmer le changement de diamètre" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Afficher le nom" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Marque" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Type de matériau" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Couleur" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Propriétés" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Densité" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Diamètre" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Coût du filament" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Poids du filament" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Longueur du filament" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Coût au mètre" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Délier le matériau" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Description" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Informations d'adhérence" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Paramètres d'impression" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Activer" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Créer" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Dupliquer" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Importer" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Imprimante" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmer la suppression" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importer un matériau" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Matériau %1 importé avec succès" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exporter un matériau" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +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/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2709,7 +2919,7 @@ msgid "Unit" msgstr "Unité" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Général" @@ -2901,8 +3111,8 @@ msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Toujours demander" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2921,77 +3131,75 @@ msgstr "Lorsque vous apportez des modifications à un profil puis passez à un a #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Écraser le profil" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Confidentialité" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Vérifier les mises à jour au démarrage" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Envoyer des informations (anonymes) sur l'impression" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Plus d'informations" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Expérimental" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Utiliser la fonctionnalité multi-plateau" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Utiliser la fonctionnalité multi-plateau (redémarrage requis)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "Les modèles nouvellement chargés doivent-ils être disposés sur le plateau ? Utilisé en conjonction avec le multi-plateau (EXPÉRIMENTAL)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Ne pas réorganiser les objets lors du chargement" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Imprimantes" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activer" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3035,7 +3243,7 @@ msgid "Aborting print..." msgstr "Abandon de l'impression..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Profils" @@ -3050,18 +3258,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Dupliquer" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Importer" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Exporter" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3072,18 +3268,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Dupliquer un profil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmer la suppression" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3104,96 +3288,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Imprimante : %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Profils protégés" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Personnaliser les profils" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Ignorer les modifications actuelles" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Vos paramètres actuels correspondent au profil sélectionné." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Paramètres généraux" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Matériaux" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Créer" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Dupliquer" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importer un matériau" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Matériau %1 importé avec succès" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exporter un matériau" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Imprimante" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Ajouter une imprimante" @@ -3208,6 +3339,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Ajouter une imprimante" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3228,7 +3364,9 @@ 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 a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\nCura est fier d'utiliser les projets open source suivants :" +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/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118 msgctxt "@label" @@ -3341,7 +3479,10 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n\nCliquez pour ouvrir le gestionnaire de profils." +msgstr "" +"Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n" +"\n" +"Cliquez pour ouvrir le gestionnaire de profils." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3358,33 +3499,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copier toutes les valeurs modifiées vers toutes les extrudeuses" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Masquer ce paramètre" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Masquer ce paramètre" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Afficher ce paramètre" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurer la visibilité des paramètres..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Réduire tout" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Développer tout" @@ -3395,7 +3536,10 @@ 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\nCliquez pour rendre ces paramètres visibles." +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/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3423,7 +3567,10 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "Ce paramètre possède une valeur qui est différente du profil.\n\nCliquez pour restaurer la valeur du profil." +msgstr "" +"Ce paramètre possède une valeur qui est différente du profil.\n" +"\n" +"Cliquez pour restaurer la valeur du profil." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3431,7 +3578,10 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n\nCliquez pour restaurer la valeur calculée." +msgstr "" +"Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n" +"\n" +"Cliquez pour restaurer la valeur calculée." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3469,7 +3619,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Extrudeuse" @@ -3522,7 +3672,7 @@ msgid "The nozzle inserted in this extruder." msgstr "Buse insérée dans cet extrudeur." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Plateau" @@ -3547,6 +3697,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3641,40 +3806,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "Configuration de l'impression désactivée\nLes fichiers G-Code ne peuvent pas être modifiés" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00h 00min" +msgstr "" +"Configuration de l'impression désactivée\n" +"Les fichiers G-Code ne peuvent pas être modifiés" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Spécification de temps" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Spécification de coût" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Total :" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3685,30 +3825,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Configuration de l'impression personnalisée

Imprimer avec un contrôle fin de chaque élément du processus de découpe." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Activer l'impression" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Nom de la tâche" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Durée d'impression" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Durée restante estimée" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "Passer en P&lein écran" +msgid "Toggle Full Screen" +msgstr "Passer en Plein écran" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3727,28 +3867,28 @@ msgstr "&Quitter" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "Vue &3D" +msgid "3D View" +msgstr "Vue 3D" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "Vue de &face" +msgid "Front View" +msgstr "Vue de face" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "Vue du dess&us" +msgid "Top View" +msgstr "Vue du dessus" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "Vue latérale &gauche" +msgid "Left Side View" +msgstr "Vue latérale gauche" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "Vue latérale &droite" +msgid "Right Side View" +msgstr "Vue latérale droite" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3802,188 +3942,187 @@ msgstr "Notifier un &bug" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "&À propos de..." +msgid "About..." +msgstr "À propos de..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "Supprimer le modèle &sélectionné" -msgstr[1] "Supprimer les modèles &sélectionnés" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Supprimer le modèle sélectionné" +msgstr[1] "Supprimer les modèles sélectionnés" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Centrer le modèle sélectionné" msgstr[1] "Centrer les modèles sélectionnés" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" 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/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Supprimer le modèle" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrer le modèle sur le plateau" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Grouper les modèles" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Dégrouper les modèles" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Fusionner les modèles" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplier le modèle..." +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Sélectionner tous les modèles" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "&Sélectionner tous les modèles" +msgid "Clear Build Plate" +msgstr "Supprimer les objets du plateau" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&Supprimer les objets du plateau" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "Rechar&ger tous les modèles" +msgid "Reload All Models" +msgstr "Recharger tous les modèles" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 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/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Réorganiser tous les modèles" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Réorganiser la sélection" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Réinitialiser toutes les positions des modèles" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" +msgid "Reset All Model Transformations" msgstr "Réinitialiser tous les modèles et transformations" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Ouvrir le(s) fichier(s)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nouveau projet..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Afficher le &journal du moteur..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Afficher le dossier de configuration" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Parcourir les paquets..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Déplier / replier la barre latérale" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Veuillez charger un modèle 3D" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Prêt à découper" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Découpe en cours..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Prêt à %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Impossible de découper" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Découpe indisponible" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Découper la tâche d'impression en cours" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Annuler le processus de découpe" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Préparer" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Annuler" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Sélectionner le périphérique de sortie actif" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Ouvrir le(s) fichier(s)" @@ -4003,129 +4142,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Fichier" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "Enregi&strer la sélection dans un fichier" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Enregistrer &sous..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "Enregistrer le &projet..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Modifier" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Visualisation" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "&Paramètres" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "Im&primante" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Matériau" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Définir comme extrudeur actif" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Activer l'extrudeuse" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Désactiver l'extrudeuse" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "Plateau" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Profil" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensions" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&Boîte à outils" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&références" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Aide" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Ce paquet sera installé après le redémarrage." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Ouvrir un fichier" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Paramètres" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Nouveau projet" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Installer le paquet" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Ouvrir le(s) fichier(s)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4135,112 +4290,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Enregistrer le projet" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Plateau" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrudeuse %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & matériau" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 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/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Enregistrer" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Hauteur de la couche" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Ce profil de qualité n'est pas disponible pour votre matériau et configuration des buses actuels. Veuillez modifier ces derniers pour activer ce profil de qualité." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "Un profil personnalisé est actuellement actif. Pour activer le curseur de qualité, choisissez un profil de qualité par défaut dans l'onglet Personnaliser" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Vitesse d’impression" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Ralentir" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Accélérer" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Remplissage" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Permettre le remplissage graduel" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Générer les supports" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Sélectionnez l'extrudeur à utiliser comme support. Cela créera des structures de support sous le modèle afin de l'empêcher de s'affaisser ou de s'imprimer dans les airs." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Adhérence au plateau" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Besoin d'aide pour améliorer vos impressions ?
Lisez les Guides de dépannage Ultimaker" @@ -4287,23 +4442,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Type d'imprimante" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Matériau" -# Added after the string freeze. -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Utilisez feuilles d'adhérence ou de la colle avec cette combinaison des matériaux" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Vérifier la compatibilité" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Cliquez ici pour vérifier la compatibilité des matériaux sur Ultimaker.com." @@ -4393,16 +4547,6 @@ msgctxt "name" msgid "God Mode" msgstr "Mode God" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Accepte les G-Code et les envoie par Wi-Fi à une box WiFi Doodle3D." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Box WiFi Doodle3D" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4483,16 +4627,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Étape de préparation" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Fournit une fenêtre d'édition pour l'édition directe de script." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Outil de scripting en direct" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4603,16 +4737,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Lecteur de profil Cura antérieur" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Aide à ouvrir les fichiers Blender directement dans Cura." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Intégration Blender (expérimental)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4663,6 +4787,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Mise à niveau de version, de 2.7 vers 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4773,6 +4907,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Générateur de profil Cura" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Permet aux fabricants de matériaux de créer de nouveaux matériaux et profils de qualité à l'aide d'une interface utilisateur ad hoc." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Assistant de profil d'impression" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4803,6 +4947,219 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Lecteur de profil Cura" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Imprimer avec Doodle3D WiFi-Box" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Imprimer avec Doodle3D WiFi-Box" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Connexion avec Doodle3D Connecter..." + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Envoi de données vers Doodle3D Connecter..." + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Impossible d'envoyer les données à Doodle3D Connect. Une autre tâche est-elle toujours active ?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Enregistrement de données dans Doodle3D Connecter..." + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Fichier envoyé vers Doodle3D Connecter" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Ouvrir Connect..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Ouvrir l'interface web Doodle3D Connecter" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Fichier Blender" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "Impossible d'exporter avec la qualité \"{}\" !\n" +#~ "Qualité redéfinie sur \"{}\"." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "Contact" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "L'imprimante n'est pas configurée pour héberger un groupe d'imprimantes Ultimaker 3." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "L'imprimante est le patron pour un groupe de %1 imprimantes Ultimaker 3." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 n'est pas configurée pour héberger un groupe d'imprimantes connectées Ultimaker 3." + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Ajouter / supprimer une imprimante" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Ouvre la page des tâches d'impression avec votre navigateur web." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Afficher les tâches d'impression" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Préparation..." + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Impression..." + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Disponible" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Connexion avec l'imprimante perdue" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Indisponible" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Inconnu" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Désactivé" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Réservée" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Préparation de l'impression..." + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Abandon de l'impression" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Non acceptation des tâches d'impression" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Complète a: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Enlever les objets du plateau" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "En attente de modification de configuration" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Imprimer les tâches" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Imprimantes" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Afficher les imprimantes" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Pause" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Reprendre" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Abandonner l'impression" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Toujours demander" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Écraser le profil" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "Les modèles nouvellement chargés doivent-ils être disposés sur le plateau ? Utilisé en conjonction avec le multi-plateau (EXPÉRIMENTAL)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Ne pas réorganiser les objets lors du chargement" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "Enregi&strer la sélection dans un fichier" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Enregistrer &sous..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "Enregistrer le &projet..." + +# Added after the string freeze. +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Utilisez feuilles d'adhérence ou de la colle avec cette combinaison des matériaux" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Accepte les G-Code et les envoie par Wi-Fi à une box WiFi Doodle3D." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Box WiFi Doodle3D" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Fournit une fenêtre d'édition pour l'édition directe de script." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Outil de scripting en direct" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Aide à ouvrir les fichiers Blender directement dans Cura." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Intégration Blender (expérimental)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Avertissement contrôleur de modèle" @@ -5070,10 +5427,6 @@ msgstr "Lecteur de profil Cura" #~ msgid "Browse plugins..." #~ msgstr "Parcourir les plug-ins..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Plateau" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "&Plug-ins" @@ -5299,14 +5652,6 @@ msgstr "Lecteur de profil Cura" #~ "\n" #~ "Désolé !" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Assistant de profil" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Assistant de profil" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "Pas de matériau chargé" @@ -5437,14 +5782,6 @@ msgstr "Lecteur de profil Cura" #~ msgid "Configure setting visiblity..." #~ msgstr "Configurer la visibilité des paramètres..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Automatique : %1" @@ -5481,14 +5818,6 @@ msgstr "Lecteur de profil Cura" #~ msgid "GCode Profile Reader" #~ msgstr "Lecteur de profil GCode" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Permet aux fabricants de matériaux de créer de nouveaux matériaux et profils de qualité à l'aide d'une interface utilisateur ad hoc." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Assistant de profil d'impression" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "Des erreurs sont apparues lors de l'ouverture de votre fichier SolidWorks ! Veuillez vérifier s'il est possible d'ouvrir votre fichier dans SolidWorks sans que cela ne cause de problèmes." @@ -5685,10 +6014,6 @@ msgstr "Lecteur de profil Cura" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "L'imprimante est configurée pour héberger un groupe de %1 imprimantes connectées Ultimaker 3." -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Préparation..." - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Finalisé sur : " diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index d4d827870e..0c408116b4 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\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 68f9060093..acf2f8d378 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: French\n" @@ -57,7 +57,9 @@ 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" @@ -69,7 +71,9 @@ 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" @@ -81,6 +85,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "GUID du matériau. Cela est configuré automatiquement. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1056,6 +1070,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1136,6 +1160,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Compenser le débit pour les parties d'une paroi intérieure imprimées aux endroits où une paroi est déjà en place." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1501,11 +1545,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Concentrique" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrique 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1531,6 +1570,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Relie les extrémités où le motif de remplissage touche la paroi interne, à l'aide d'une ligne épousant la forme de la paroi interne. Activer ce paramètre peut faire mieux coller le remplissage aux parois, et réduit les effets du remplissage sur la qualité des surfaces verticales. Désactiver ce paramètre diminue la quantité de matière utilisée." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1561,6 +1610,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "Le motif de remplissage est décalé de cette distance sur l'axe Y." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1871,16 +1942,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "Température utilisée pour le plateau chauffant à la première couche." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2718,8 +2779,8 @@ msgstr "Mode de détours" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "Les détours (le 'combing') maintiennent le bec dans les zones déjà imprimées lors des déplacements. Cela résulte en des déplacements légèrement plus longs mais réduit le recours aux rétractions. Si les détours sont désactivés, le matériau se rétractera et le bec se déplacera en ligne droite jusqu'au point suivant. Il est également possible d'éviter les détours sur les zones de la couche du dessus / dessous en effectuant les détours uniquement dans le remplissage." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2736,6 +2797,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "Pas dans la couche extérieure" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3116,11 +3182,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Concentrique" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrique 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3181,6 +3242,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Distance entre les lignes de support imprimées. Ce paramètre est calculé par la densité du support." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3471,11 +3552,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Concentrique" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrique 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3511,11 +3587,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Concentrique" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrique 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3551,16 +3622,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Concentrique" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrique 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3711,7 +3797,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "La distance horizontale entre la jupe et la première couche de l’impression.\nIl s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." +msgstr "" +"La distance horizontale entre la jupe et la première couche de l’impression.\n" +"Il s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -3885,8 +3973,8 @@ msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Interligne du radeau" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4103,16 +4191,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Le volume minimum pour chaque touche de la tour primaire afin de purger suffisamment de matériau." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Épaisseur de la tour primaire" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "L'épaisseur de la tour primaire creuse. Une épaisseur supérieure à la moitié du volume minimum de la tour primaire résultera en une tour primaire dense." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4153,26 +4231,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Après l'impression de la tour primaire à l'aide d'une buse, nettoyer le matériau qui suinte de l'autre buse sur la tour primaire." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Essuyer la buse après chaque changement" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Après un changement d'extrudeuse, essuie le matériau qui suinte de la buse sur la première chose imprimée. Cela exécute un mouvement de nettoyage lent et sûr à l'endroit auquel le matériau qui suinte cause le moins de dommages à la qualité de la surface de votre impression." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Volume de purge de la tour primaire" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Quantité de filament à purger lors de l'essuyage de la tour primaire. La purge est utile pour compenser le filament perdu par la suinte pendant l'inactivité de la buse." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4658,6 +4716,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Données reliant le flux de matériau (en mm3 par seconde) à la température (degrés Celsius)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5168,7 +5236,9 @@ msgctxt "wireframe_up_half_speed description" msgid "" "Distance of an upward move which is extruded with half speed.\n" "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "Distance d’un déplacement ascendant qui est extrudé à mi-vitesse.\nCela peut permettre une meilleure adhérence aux couches précédentes sans surchauffer le matériau dans ces couches. Uniquement applicable à l'impression filaire." +msgstr "" +"Distance d’un déplacement ascendant qui est extrudé à mi-vitesse.\n" +"Cela peut permettre une meilleure adhérence aux couches précédentes sans surchauffer le matériau dans ces couches. Uniquement applicable à l'impression filaire." #: fdmprinter.def.json msgctxt "wireframe_top_jump label" @@ -5315,6 +5385,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "Limite indiquant d'utiliser ou non une couche plus petite. Ce nombre est comparé à la tangente de la pente la plus raide d'une couche." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5345,16 +5435,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Si une région de couche extérieure est supportée pour une valeur inférieure à ce pourcentage de sa surface, elle sera imprimée selon les paramètres du pont. Sinon, elle sera imprimée selon les paramètres normaux de la couche extérieure." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Porte-à-faux max. de la paroi du pont" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "Largeur maximale autorisée de la zone d'air sous une ligne de paroi avant que la paroi ne soit imprimée selon les paramètres du pont. Exprimée en pourcentage de la largeur de la ligne de paroi. Si la zone d'air est plus large, la ligne de paroi sera imprimée selon les paramètres du pont. Sinon, la ligne de paroi sera imprimée selon les paramètres normaux. Plus la valeur est faible, plus il est probable que les lignes de paroi en surplomb seront imprimées selon les paramètres du pont." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5575,6 +5655,66 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrique 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "Les détours (le 'combing') maintiennent le bec dans les zones déjà imprimées lors des déplacements. Cela résulte en des déplacements légèrement plus longs mais réduit le recours aux rétractions. Si les détours sont désactivés, le matériau se rétractera et le bec se déplacera en ligne droite jusqu'au point suivant. Il est également possible d'éviter les détours sur les zones de la couche du dessus / dessous en effectuant les détours uniquement dans le remplissage." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrique 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrique 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrique 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrique 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Interligne du radeau" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Épaisseur de la tour primaire" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "L'épaisseur de la tour primaire creuse. Une épaisseur supérieure à la moitié du volume minimum de la tour primaire résultera en une tour primaire dense." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Essuyer la buse après chaque changement" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Après un changement d'extrudeuse, essuie le matériau qui suinte de la buse sur la première chose imprimée. Cela exécute un mouvement de nettoyage lent et sûr à l'endroit auquel le matériau qui suinte cause le moins de dommages à la qualité de la surface de votre impression." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume de purge de la tour primaire" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantité de filament à purger lors de l'essuyage de la tour primaire. La purge est utile pour compenser le filament perdu par la suinte pendant l'inactivité de la buse." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Porte-à-faux max. de la paroi du pont" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "Largeur maximale autorisée de la zone d'air sous une ligne de paroi avant que la paroi ne soit imprimée selon les paramètres du pont. Exprimée en pourcentage de la largeur de la ligne de paroi. Si la zone d'air est plus large, la ligne de paroi sera imprimée selon les paramètres du pont. Sinon, la ligne de paroi sera imprimée selon les paramètres normaux. Plus la valeur est faible, plus il est probable que les lignes de paroi en surplomb seront imprimées selon les paramètres du pont." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Optimiser l'ordre dans lequel des parois sont imprimées de manière à réduire le nombre de retraits et les distances parcourues. La plupart des pièces bénéficieront de cette possibilité, mais certaines peuvent en fait prendre plus de temps à l'impression ; veuillez dès lors comparer les estimations de durée d'impression avec et sans optimisation." diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 2565825b95..fa0a1b7b71 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Italian\n" @@ -38,6 +38,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "File G-Code" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -51,80 +62,23 @@ msgid "" "

{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

" +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/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Stampa con Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Stampa con Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Collegamento a Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annulla" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Invio dati a Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Impossibile inviare dati a Doodle3D Connect. C'è un altro processo in corso?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Memorizzazione dati su Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "File inviato a Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Apri Connect..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Apri interfaccia web Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Visualizza registro modifiche" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Impostazioni attive profilo appiattito" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "Il profilo è stato appiattito e attivato." @@ -149,6 +103,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Connesso tramite USB" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -171,6 +130,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "File G-Code compresso" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -193,7 +157,7 @@ msgid "Save to Removable Drive {0}" msgstr "Salva su unità rimovibile {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Non ci sono formati di file disponibili per la scrittura!" @@ -232,7 +196,7 @@ msgstr "Impossibile salvare su unità rimovibile {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Errore" @@ -261,8 +225,8 @@ msgstr "Rimuovi il dispositivo rimovibile {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Avvertenza" @@ -289,212 +253,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unità rimovibile" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Stampa sulla rete" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Stampa sulla rete" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Collegato alla rete." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Collegato alla rete. Si prega di approvare la richiesta di accesso sulla stampante." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Collegato alla rete. Nessun accesso per controllare la stampante." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Richiesto accesso alla stampante. Approvare la richiesta sulla stampante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Stato di autenticazione" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Stato di autenticazione" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Riprova" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Invia nuovamente la richiesta di accesso" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Accesso alla stampante accettato" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Nessun accesso per stampare con questa stampante. Impossibile inviare il processo di stampa." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Richiesta di accesso" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Invia la richiesta di accesso alla stampante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Impossibile avviare un nuovo processo di stampa." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "È presente un problema di configurazione della stampante che rende impossibile l’avvio della stampa. Risolvere il problema prima di continuare." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Mancata corrispondenza della configurazione" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Sei sicuro di voler stampare con la configurazione selezionata?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Le configurazioni o la calibrazione della stampante e di Cura non corrispondono. Per ottenere i migliori risultati, sezionare sempre per i PrintCore e i materiali inseriti nella stampante utilizzata." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Invio nuovi processi (temporaneamente) bloccato, invio in corso precedente processo di stampa." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Invio dati alla stampante in corso" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Invio dati" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annulla" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Nessun PrintCore caricato nello slot {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Nessun materiale caricato nello slot {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "PrintCore diverso (Cura: {cura_printcore_name}, Stampante: {remote_printcore_name}) selezionata per estrusore {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Materiale diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Sincronizzazione con la stampante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Desideri utilizzare la configurazione corrente della tua stampante in Cura?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "I PrintCore e/o i materiali sulla stampante differiscono da quelli contenuti nel tuo attuale progetto. Per ottenere i risultati migliori, sezionare sempre per i PrintCore e i materiali inseriti nella stampante utilizzata." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Collegato alla rete." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Processo di stampa inviato con successo alla stampante." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Dati inviati" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "Visualizzazione in Controlla" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "La stampante '{printer_name}' ha finito di stampare '{job_name}'." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "Il processo di stampa '{job_name}' è terminato." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Stampa finita" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Collega tramite rete" @@ -504,24 +483,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controlla" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "Sono disponibili nuove funzioni per la {machine_name}! Si consiglia di aggiornare il firmware sulla stampante." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "Nuovo firmware %s disponibile" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Modalità di aggiornamento" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Non è possibile accedere alle informazioni di aggiornamento." @@ -531,17 +510,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Visualizzazione strato" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "Cura non visualizza in modo accurato gli strati se la funzione Wire Printing è abilitata" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Vista simulazione" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "Modifica G-code" @@ -555,32 +534,32 @@ 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/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura raccoglie statistiche di utilizzo in forma anonima." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Acquisizione dati" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Per saperne di più" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Vedere ulteriori informazioni sui dati inviati da Cura." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Consenti" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Consente a Cura di inviare in forma anonima statistiche d’uso, riguardanti alcune delle preferenze e impostazioni, la versione cura e una serie di modelli in sezionamento, per aiutare a dare priorità a miglioramenti futuri in Cura." @@ -590,18 +569,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Profili Cura 15.04" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "File Blender" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "Impossibile esportare utilizzando qualità \"{}\" quality!\nTornato a \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -627,49 +594,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Immagine GIF" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Sezionamento impossibile" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Nulla da sezionare in quanto nessuno dei modelli corrisponde al volume di stampa. Ridimensionare o ruotare i modelli secondo necessità." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Elaborazione dei livelli" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Informazioni" @@ -696,18 +670,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Personalizzata" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "File 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Ugello" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -718,18 +703,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "File G" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "Parsing codice G" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "Dettagli codice G" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -740,16 +725,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profilo Cura" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Assistente profilo" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Assistente profilo" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "File 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "File 3MF Progetto Cura" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -831,19 +831,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Sconosciuto" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "File pre-sezionato {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "Il file esiste già" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -855,23 +855,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Non sottoposto a override" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "Il materiale selezionato è incompatibile con la macchina o la configurazione selezionata." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Materiale incompatibile" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori: [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Impostazioni aggiornate" @@ -954,13 +954,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Il profilo è privo del tipo di qualità." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Impossibile trovare un tipo qualità {0} per la configurazione corrente." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -987,42 +987,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tutti i file (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Materiale personalizzato" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Personalizzata" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Volume di stampa" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Backup" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 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/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "Tentativo di ripristinare un backup di Cura non corrispondente alla versione corrente." @@ -1033,32 +1033,32 @@ msgid "Multiplying and placing objects" msgstr "Moltiplicazione e collocazione degli oggetti" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Sistemazione oggetto" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Ricerca nuova posizione per gli oggetti" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Ricerca posizione" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Impossibile individuare posizione" @@ -1076,7 +1076,12 @@ msgid "" "

Backups can be found in the configuration folder.

\n" "

Please send us this Crash Report to fix the problem.

\n" " " -msgstr "

Oops, Ultimaker Cura ha rilevato qualcosa che non sembra corretto.

\n

Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

\n

I backup sono contenuti nella cartella configurazione.

\n

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

\n " +msgstr "" +"

Oops, Ultimaker Cura ha rilevato qualcosa che non sembra corretto.

\n" +"

Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

\n" +"

I backup sono contenuti nella cartella configurazione.

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102 msgctxt "@action:button" @@ -1109,7 +1114,10 @@ msgid "" "

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

\n" "

Please use the \"Send report\" button to post a bug report automatically to our servers

\n" " " -msgstr "

Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema

\n

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

\n " +msgstr "" +"

Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177 msgctxt "@title:groupbox" @@ -1189,223 +1197,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Invia report" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Caricamento macchine in corso..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Impostazione scena in corso..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Caricamento interfaccia in corso..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "Il modello selezionato è troppo piccolo per il caricamento." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Impostazioni macchina" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Stampante" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Impostazioni della stampante" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (Larghezza)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profondità)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Altezza)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Forma del piano di stampa" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Origine al centro" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Piano riscaldato" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Versione codice G" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Impostazioni della testina di stampa" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distanza tra il lato sinistro della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distanza tra il lato anteriore della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X max" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distanza tra il lato destro della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y max" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distanza tra il lato posteriore della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Altezza gantry" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assi X e Y). Utilizzata per evitare collisioni tra le stampe precedenti e il gantry durante la stampa \"Uno alla volta\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Numero di estrusori" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "Codice G avvio" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "Comandi codice G da eseguire all’avvio." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "Codice G fine" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Comandi codice G da eseguire alla fine." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Impostazioni ugello" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Dimensione ugello" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Diametro del materiale compatibile" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "Diametro nominale del filamento supportato dalla stampante. Il diametro esatto verrà sovrapposto dal materiale e/o dal profilo." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Scostamento X ugello" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Scostamento Y ugello" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "Codice G avvio estrusore" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "Codice G fine estrusore" @@ -1425,29 +1433,42 @@ 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Plugin" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiali" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Versione" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Ultimo aggiornamento" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Autore" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Sconosciuto" @@ -1480,16 +1501,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Indietro" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Esci da Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1521,7 +1582,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "Questo plugin contiene una licenza.\nÈ necessario accettare questa licenza per poter installare il plugin.\nAccetti i termini sotto riportati?" +msgstr "" +"Questo plugin contiene una licenza.\n" +"È necessario accettare questa licenza per poter installare il plugin.\n" +"Accetti i termini sotto riportati?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1533,12 +1597,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Non accetto" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "In primo piano" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Compatibilità" @@ -1548,10 +1612,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "Recupero dei pacchetti..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "Contatto" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1565,9 +1634,9 @@ msgstr "Registro modifiche" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1615,356 +1684,365 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Contratto di licenza" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Collegamento esistente" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Stampante/gruppo già aggiunto a Cura. Selezionare un’altra stampante o un altro gruppo." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Collega alla stampante in rete" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" "\n" "Select your printer from the list below:" -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 si collega Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante.\n\nSelezionare la stampante dall’elenco seguente:" +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 si collega Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante.\n" +"\n" +"Selezionare la stampante dall’elenco seguente:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Aggiungi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Modifica" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Rimuovi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Aggiorna" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Tipo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Versione firmware" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Indirizzo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti Ultimaker 3." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Questa stampante comanda un gruppo di %1 stampanti Ultimaker 3." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "La stampante a questo indirizzo non ha ancora risposto." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Collega" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Indirizzo stampante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Stampa sulla rete" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Selezione stampante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Stampa" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Aggiungi/Rimuovi stampanti" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Apre la pagina processi di stampa con il browser web predefinito." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Visualizza processi di stampa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Preparazione della stampa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Stampa in corso" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Disponibile" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Persa connessione con la stampante" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Non disponibile" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Sconosciuto" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Disabilitato" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Riservato" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminato" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Preparazione della stampa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Richiede un'azione" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "In pausa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Ripresa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Stampa interrotta" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Mancata accettazione processi di stampa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Finisce alle: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Cancellare piano di stampa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "In attesa di modifica configurazione" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Processi di stampa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Stampa in corso" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "Coda di stampa" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Stampanti" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Stampa in corso" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Visualizza stampanti" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Interrompi la stampa" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Terminato" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Preparazione in corso" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "In pausa" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Ripresa" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Richiede un'azione" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Collega a una stampante" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Carica la configurazione della stampante in Cura" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Attiva la configurazione" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Schema colori" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Colore materiale" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Tipo di linea" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Velocità" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Spessore strato" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Modalità di compatibilità" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Mostra spostamenti" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Mostra helper" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Mostra guscio" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Mostra riempimento" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Mostra solo strati superiori" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Mostra 5 strati superiori in dettaglio" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Superiore / Inferiore" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Parete interna" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "min." -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "max." @@ -2084,53 +2162,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Smoothing" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Tipo di maglia" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Modello normale" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Stampa come supporto" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Non supporta sovrapposizione con altri modelli" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Modifica impostazioni per sovrapposizione con altri modelli" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Modifica impostazioni per riempimento di altri modelli" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Seleziona impostazioni" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Seleziona impostazioni di personalizzazione per questo modello" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtro..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Mostra tutto" @@ -2152,13 +2230,13 @@ msgid "Create new" msgstr "Crea nuovo" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Riepilogo - Progetto Cura" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Impostazioni della stampante" @@ -2175,7 +2253,7 @@ msgid "Update" msgstr "Aggiorna" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Tipo" @@ -2186,7 +2264,7 @@ msgid "Printer Group" msgstr "Gruppo stampanti" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Impostazioni profilo" @@ -2198,19 +2276,19 @@ msgstr "Come può essere risolto il conflitto nel profilo?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Nome" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Non nel profilo" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2240,7 +2318,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Come può essere risolto il conflitto nel materiale?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Impostazione visibilità" @@ -2251,13 +2329,13 @@ msgid "Mode" msgstr "Modalità" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Impostazioni visibili:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 su %2" @@ -2272,6 +2350,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Apri" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Esporta" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00h 00min" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Indicazione di costo" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Totale:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2490,26 +2644,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Rimuovere la stampa" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Pausa" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Riprendi" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Interrompi la stampa" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Interrompi la stampa" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2526,7 +2664,9 @@ msgctxt "@text:window" msgid "" "You have customized some profile settings.\n" "Would you like to keep or discard those settings?" -msgstr "Sono state personalizzate alcune impostazioni del profilo.\nMantenere o eliminare tali impostazioni?" +msgstr "" +"Sono state personalizzate alcune impostazioni del profilo.\n" +"Mantenere o eliminare tali impostazioni?" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110 msgctxt "@title:column" @@ -2544,19 +2684,17 @@ msgid "Customized" msgstr "Valore personalizzato" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Chiedi sempre" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Elimina e non chiedere nuovamente" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Mantieni e non chiedere nuovamente" @@ -2576,101 +2714,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Crea nuovo profilo" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Informazioni" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Conferma modifica diametro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Visualizza nome" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Marchio" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Tipo di materiale" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Colore" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Proprietà" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Densità" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Diametro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Costo del filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Peso del filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Lunghezza del filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Costo al metro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Scollega materiale" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Descrizione" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Informazioni sull’aderenza" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Impostazioni di stampa" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Attiva" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Crea" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplica" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Importa" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Stampante" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Conferma rimozione" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importa materiale" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Impossibile importare materiale {1}: %2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Materiale importato correttamente %1" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Esporta materiale" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Materiale esportato correttamente su %1" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2707,7 +2917,7 @@ msgid "Unit" msgstr "Unità" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Generale" @@ -2899,8 +3109,8 @@ msgstr "Comportamento predefinito all'apertura di un file progetto: " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Chiedi sempre" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2919,77 +3129,75 @@ msgstr "Dopo aver modificato un profilo ed essere passati a un altro, si apre un #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Override profilo" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Privacy" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Controlla aggiornamenti all’avvio" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Invia informazioni di stampa (anonime)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Ulteriori informazioni" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Sperimentale" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Utilizzare la funzionalità piano di stampa multiplo" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Utilizzare la funzionalità piano di stampa multiplo (necessario riavvio)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "I modelli appena caricati devono essere sistemati sul piano di stampa? Utilizzato in abbinamento al piano di stampa multiplo (SPERIMENTALE)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Non posizionare oggetti sul carico" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Stampanti" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Attiva" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3033,7 +3241,7 @@ msgid "Aborting print..." msgstr "Interruzione stampa in corso..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Profili" @@ -3048,18 +3256,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Duplica" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Importa" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Esporta" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3070,18 +3266,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplica profilo" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Conferma rimozione" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3102,96 +3286,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Stampante: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Profili protetti" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Profili personalizzati" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Elimina le modifiche correnti" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Le impostazioni correnti corrispondono al profilo selezionato." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Impostazioni globali" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiali" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Crea" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplica" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importa materiale" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Impossibile importare materiale {1}: %2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiale importato correttamente %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Esporta materiale" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiale esportato correttamente su %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Stampante" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Aggiungi stampante" @@ -3206,6 +3337,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Aggiungi stampante" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3226,7 +3362,9 @@ 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 è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\nCura è orgogliosa di utilizzare i seguenti progetti open source:" +msgstr "" +"Cura è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\n" +"Cura è orgogliosa di utilizzare i seguenti progetti open source:" #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118 msgctxt "@label" @@ -3339,7 +3477,10 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n\nFare clic per aprire la gestione profili." +msgstr "" +"Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n" +"\n" +"Fare clic per aprire la gestione profili." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3356,33 +3497,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copia tutti i valori modificati su tutti gli estrusori" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Nascondi questa impostazione" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Nascondi questa impostazione" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Mantieni visibile questa impostazione" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configura visibilità delle impostazioni..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Comprimi tutto" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Espandi tutto" @@ -3393,7 +3534,10 @@ 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\nFare clic per rendere visibili queste impostazioni." +msgstr "" +"Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n" +"\n" +"Fare clic per rendere visibili queste impostazioni." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3421,7 +3565,10 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "Questa impostazione ha un valore diverso dal profilo.\n\nFare clic per ripristinare il valore del profilo." +msgstr "" +"Questa impostazione ha un valore diverso dal profilo.\n" +"\n" +"Fare clic per ripristinare il valore del profilo." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3429,7 +3576,10 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n\nFare clic per ripristinare il valore calcolato." +msgstr "" +"Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n" +"\n" +"Fare clic per ripristinare il valore calcolato." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3467,7 +3617,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Estrusore" @@ -3520,7 +3670,7 @@ msgid "The nozzle inserted in this extruder." msgstr "L’ugello inserito in questo estrusore." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Piano di stampa" @@ -3545,6 +3695,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3568,7 +3733,7 @@ msgstr "&Posizione fotocamera" #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:54 msgctxt "@action:inmenu menubar:view" msgid "&Build plate" -msgstr "&Piano di stampa" +msgstr "P&iano di stampa" #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13 msgctxt "@action:inmenu" @@ -3639,40 +3804,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "Impostazione di stampa disabilitata\nI file codice G non possono essere modificati" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00h 00min" +msgstr "" +"Impostazione di stampa disabilitata\n" +"I file codice G non possono essere modificati" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Indicazioni di tempo" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Indicazione di costo" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Totale:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3683,30 +3823,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Impostazione di stampa personalizzata

Stampa con il controllo grana fine su ogni sezione finale del processo di sezionamento." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Stampa attiva" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Nome del processo" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Tempo di stampa" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo residuo stimato" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "Att&iva/disattiva schermo intero" +msgid "Toggle Full Screen" +msgstr "Attiva/disattiva schermo intero" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3721,32 +3861,32 @@ msgstr "Ri&peti" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:105 msgctxt "@action:inmenu menubar:file" msgid "&Quit" -msgstr "E&sci" +msgstr "&Esci" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "&Visualizzazione 3D" +msgid "3D View" +msgstr "Visualizzazione 3D" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "&Visualizzazione frontale" +msgid "Front View" +msgstr "Visualizzazione frontale" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "&Visualizzazione superiore" +msgid "Top View" +msgstr "Visualizzazione superiore" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "&Visualizzazione lato sinistro" +msgid "Left Side View" +msgstr "Visualizzazione lato sinistro" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "&Visualizzazione lato destro" +msgid "Right Side View" +msgstr "Visualizzazione lato destro" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3756,12 +3896,12 @@ msgstr "Configura Cura..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:155 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." -msgstr "A&ggiungi stampante..." +msgstr "&Aggiungi stampante..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:161 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." -msgstr "&Gestione stampanti..." +msgstr "Gestione stampanti..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:168 msgctxt "@action:inmenu" @@ -3800,188 +3940,187 @@ msgstr "Se&gnala un errore" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "I&nformazioni..." +msgid "About..." +msgstr "Informazioni..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "Cancella &modello selezionato" -msgstr[1] "Cancella modelli &selezionati" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Cancella modello selezionato" +msgstr[1] "Cancella modelli selezionati" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Centra modello selezionato" msgstr[1] "Centra modelli selezionati" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Moltiplica modello selezionato" msgstr[1] "Moltiplica modelli selezionati" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Elimina modello" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "C&entra modello su piattaforma" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Raggruppa modelli" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Separa modelli" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Unisci modelli" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Mo<iplica modello" +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Seleziona tutti i modelli" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "Sel&eziona tutti i modelli" +msgid "Clear Build Plate" +msgstr "Cancellare piano di stampa" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&Cancellare piano di stampa" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "R&icarica tutti i modelli" +msgid "Reload All Models" +msgstr "Ricarica tutti i modelli" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 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/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Sistema tutti i modelli" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Sistema selezione" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Reimposta tutte le posizioni dei modelli" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "Reimposta tutte le &trasformazioni dei modelli" +msgid "Reset All Model Transformations" +msgstr "Reimposta tutte le trasformazioni dei modelli" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Apri file..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nuovo Progetto..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." -msgstr "M&ostra log motore..." +msgstr "Mostra &log motore..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostra cartella di configurazione" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Sfoglia i pacchetti..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Espandi/Riduci barra laterale" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Caricare un modello 3D" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Pronto per il sezionamento" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Sezionamento in corso..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Pronto a %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Sezionamento impossibile" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Sezionamento non disponibile" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Seziona processo di stampa corrente" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Annulla processo di sezionamento" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Prepara" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Annulla" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Seleziona l'unità di uscita attiva" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Apri file" @@ -4001,129 +4140,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&File" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "&Salva selezione su file" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Salva &come..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "Salva &progetto..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Modifica" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Visualizza" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "&Impostazioni" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "S&tampante" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "Ma&teriale" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Imposta come estrusore attivo" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Abilita estrusore" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Disabilita estrusore" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "&Piano di stampa" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Profilo" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Es&tensioni" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&Casella degli strumenti" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&referenze" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Help" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Questo pacchetto sarà installato dopo il riavvio." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Apri file" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Impostazioni" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Nuovo progetto" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Installa il pacchetto" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Apri file" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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. " @@ -4133,112 +4288,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Salva progetto" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Piano di stampa" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Estrusore %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & materiale" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Salva" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Altezza dello strato" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "Un profilo personalizzato è attualmente attivo. Per attivare il cursore qualità, selezionare un profilo di qualità predefinito nella scheda Personalizza" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Velocità di stampa" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Più lenta" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Più veloce" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Riempimento" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Consenti variazione graduale" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Generazione supporto" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Seleziona l’estrusore da utilizzare per la stampa di strutture di supporto. Ciò consentirà di costruire strutture di supporto sotto il modello per evitare cedimenti del modello o di stampare a mezz'aria." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Adesione piano di stampa" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Serve aiuto per migliorare le tue stampe?
Leggi la Guida alla ricerca e riparazione guasti Ultimaker" @@ -4285,23 +4440,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Tipo di stampante" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Materiale" -# Added after the string freeze. -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Utilizzare un foglio di adesione o colla con questa combinazione di materiali" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Controlla compatibilità" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Fai clic per verificare la compatibilità del materiale su Ultimaker.com." @@ -4391,16 +4545,6 @@ msgctxt "name" msgid "God Mode" msgstr "Modalità God" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4481,16 +4625,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Fase di preparazione" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Fornisce una finestra di modifica per la modifica script diretta." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Strumento di script diretto" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4601,16 +4735,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Lettore legacy profilo Cura" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Aiuta ad aprire i file Blender direttamente in Cura." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Integrazione Blender (sperimentale)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4661,6 +4785,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Aggiornamento della versione da 2.7 a 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4771,6 +4905,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Writer profilo Cura" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Consente ai produttori di materiali di creare nuovi profili materiale e di qualità utilizzando una UI drop-in." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Assistente profilo di stampa" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4801,6 +4945,219 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Lettore profilo Cura" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Stampa con Doodle3D WiFi-Box" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Stampa con Doodle3D WiFi-Box" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Collegamento a Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Invio dati a Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Impossibile inviare dati a Doodle3D Connect. C'è un altro processo in corso?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Memorizzazione dati su Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "File inviato a Doodle3D Connect" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Apri Connect..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Apri interfaccia web Doodle3D Connect" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "File Blender" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "Impossibile esportare utilizzando qualità \"{}\" quality!\n" +#~ "Tornato a \"{}\"." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "Contatto" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti Ultimaker 3." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Questa stampante comanda un gruppo di %1 stampanti Ultimaker 3." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Aggiungi/Rimuovi stampanti" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Apre la pagina processi di stampa con il browser web predefinito." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Visualizza processi di stampa" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Preparazione della stampa" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Stampa in corso" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Disponibile" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Persa connessione con la stampante" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Non disponibile" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Sconosciuto" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Disabilitato" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Riservato" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Preparazione della stampa" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Stampa interrotta" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Mancata accettazione processi di stampa" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Finisce alle: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Cancellare piano di stampa" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "In attesa di modifica configurazione" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Processi di stampa" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Stampanti" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Visualizza stampanti" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Pausa" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Riprendi" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Interrompi la stampa" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Chiedi sempre" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Override profilo" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "I modelli appena caricati devono essere sistemati sul piano di stampa? Utilizzato in abbinamento al piano di stampa multiplo (SPERIMENTALE)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Non posizionare oggetti sul carico" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "&Salva selezione su file" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Salva &come..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "Salva &progetto..." + +# Added after the string freeze. +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Utilizzare un foglio di adesione o colla con questa combinazione di materiali" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Fornisce una finestra di modifica per la modifica script diretta." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Strumento di script diretto" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Aiuta ad aprire i file Blender direttamente in Cura." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Integrazione Blender (sperimentale)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Avvertenza controllo modello" @@ -5068,10 +5425,6 @@ msgstr "Lettore profilo Cura" #~ msgid "Browse plugins..." #~ msgstr "Sfoglia plugin..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Piano di stampa" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "&Plugin" @@ -5297,14 +5650,6 @@ msgstr "Lettore profilo Cura" #~ "\n" #~ " Spiacenti." -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente profilo" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente profilo" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "Nessun materiale caricato" @@ -5435,14 +5780,6 @@ msgstr "Lettore profilo Cura" #~ msgid "Configure setting visiblity..." #~ msgstr "Configurazione visibilità delle impostazioni in corso..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Automatico: %1" @@ -5479,14 +5816,6 @@ msgstr "Lettore profilo Cura" #~ msgid "GCode Profile Reader" #~ msgstr "Lettore profilo GCode" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Consente ai produttori di materiali di creare nuovi profili materiale e di qualità utilizzando una UI drop-in." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Assistente profilo di stampa" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "Rilevati errori all'apertura del file SolidWorks! Controllare se è possibile aprire il file in SolidWorks senza che si verifichino problemi!" @@ -5683,10 +6012,6 @@ msgstr "Lettore profilo Cura" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "Questa stampante fa da host per un gruppo di %1 stampanti Ultimaker 3 connesse" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Preparazione in corso" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Completato su: " diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 0ed16e504b..60346c3eb4 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\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 2d883982e3..f97eef75ba 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Italian\n" @@ -56,7 +56,9 @@ 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" @@ -68,7 +70,9 @@ 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" @@ -80,6 +84,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "Il GUID del materiale. È impostato automaticamente. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1055,6 +1069,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1135,6 +1159,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Compensa il flusso per le parti di una parete interna che viene stampata dove è già presente una parete." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1500,11 +1544,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Concentriche" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D concentrica" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1530,6 +1569,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Collegare le estremità nel punto in cui il riempimento incontra la parete interna utilizzando una linea che segue la forma della parete interna. L'abilitazione di questa impostazione può far meglio aderire il riempimento alle pareti riducendo nel contempo gli effetti del riempimento sulla qualità delle superfici verticali. La disabilitazione di questa impostazione consente di ridurre la quantità di materiale utilizzato." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1560,6 +1609,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1870,16 +1941,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2717,8 +2778,8 @@ msgstr "Modalità Combing" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore effettuando il combing solo nel riempimento." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2735,6 +2796,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "Non nel rivestimento" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3115,11 +3181,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Concentriche" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D concentrica" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3180,6 +3241,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3470,11 +3551,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Concentriche" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D concentrica" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3510,11 +3586,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Concentriche" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D concentrica" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3550,16 +3621,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Concentriche" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D concentrica" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Zig Zag" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3710,7 +3796,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\nQuesta è la distanza minima. Più linee di skirt aumenteranno tale distanza." +msgstr "" +"Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n" +"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -3884,8 +3972,8 @@ msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Spaziatura delle linee del raft" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4102,16 +4190,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Spessore torre di innesco" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "Lo spessore della torre di innesco cava. Uno spessore superiore alla metà del volume minimo della torre di innesco genera una torre di innesco densa." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4152,26 +4230,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Ugello pulitura dopo commutazione" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Dopo la commutazione dell’estrusore, pulire il materiale fuoriuscito dall’ugello sul primo oggetto stampato. Questo effettua un movimento di pulitura lento in un punto in cui il materiale fuoriuscito causa il minor danno alla qualità della superficie della stampa." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Volume di scarico torre di innesco" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Quantità di filamento da scaricare durante la pulizia della torre di innesco. Lo scarico è utile per compensare il filamento perso per colatura durante l'inattività dell'ugello." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4657,6 +4715,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5167,7 +5235,9 @@ msgctxt "wireframe_up_half_speed description" msgid "" "Distance of an upward move which is extruded with half speed.\n" "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "Indica la distanza di uno spostamento verso l'alto con estrusione a velocità dimezzata.\nCiò può garantire una migliore adesione agli strati precedenti, senza eccessivo riscaldamento del materiale su questi strati. Applicabile solo alla funzione Wire Printing." +msgstr "" +"Indica la distanza di uno spostamento verso l'alto con estrusione a velocità dimezzata.\n" +"Ciò può garantire una migliore adesione agli strati precedenti, senza eccessivo riscaldamento del materiale su questi strati. Applicabile solo alla funzione Wire Printing." #: fdmprinter.def.json msgctxt "wireframe_top_jump label" @@ -5314,6 +5384,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "Soglia per l’utilizzo o meno di uno strato di dimensioni minori. Questo numero è confrontato al valore dell’inclinazione più ripida di uno strato." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5344,16 +5434,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Se una zona di rivestimento esterno è supportata per meno di questa percentuale della sua area, effettuare la stampa utilizzando le impostazioni ponte. In caso contrario viene stampata utilizzando le normali impostazioni rivestimento esterno." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Massimo sbalzo parete ponte" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "La larghezza massima ammessa per la zona di aria al di sotto di una linea perimetrale prima di stampare la parete utilizzando le impostazioni ponte. Espressa come percentuale della larghezza della linea perimetrale. Quando la distanza è superiore a questo valore, la linea perimetrale viene stampata utilizzando le normali impostazioni. Più è basso il valore, più è probabile che le linee perimetrali a sbalzo siano stampate utilizzando le impostazioni ponte." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5574,6 +5654,66 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D concentrica" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore effettuando il combing solo nel riempimento." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D concentrica" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D concentrica" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D concentrica" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D concentrica" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Spaziatura delle linee del raft" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Spessore torre di innesco" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "Lo spessore della torre di innesco cava. Uno spessore superiore alla metà del volume minimo della torre di innesco genera una torre di innesco densa." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Ugello pulitura dopo commutazione" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Dopo la commutazione dell’estrusore, pulire il materiale fuoriuscito dall’ugello sul primo oggetto stampato. Questo effettua un movimento di pulitura lento in un punto in cui il materiale fuoriuscito causa il minor danno alla qualità della superficie della stampa." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume di scarico torre di innesco" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantità di filamento da scaricare durante la pulizia della torre di innesco. Lo scarico è utile per compensare il filamento perso per colatura durante l'inattività dell'ugello." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Massimo sbalzo parete ponte" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "La larghezza massima ammessa per la zona di aria al di sotto di una linea perimetrale prima di stampare la parete utilizzando le impostazioni ponte. Espressa come percentuale della larghezza della linea perimetrale. Quando la distanza è superiore a questo valore, la linea perimetrale viene stampata utilizzando le normali impostazioni. Più è basso il valore, più è probabile che le linee perimetrali a sbalzo siano stampate utilizzando le impostazioni ponte." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Ottimizza l'ordine in cui vengono stampate le pareti in modo da ridurre le retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi, ma alcuni potrebbero richiedere un maggior tempo di esecuzione, per cui si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 6995099db1..2730f19b52 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Japanese\n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-codeファイル" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -53,81 +64,24 @@ msgid "" "

{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

印字品質ガイドを見る

" +msgstr "" +"

モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:

\n" +"

{model_names}

\n" +"

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

\n" +"

印字品質ガイドを見る

" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Boxでプリントする" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Boxでプリント" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Doodle3D Connectに接続する" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "キャンセル" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Doodle3D Connectにデータを送信" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Doodle3D Connectにデータを送れませんでした。他のジョブはまだアクティブですか?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Doodle3D Connectにデータを保存" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Doodle3D Connectにファイル送信完了" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Connectを開いています..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Doodle3D Connect web interfaceを開く" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Changelogの表示" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 #, fuzzy msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "アクティブ設定を平らにします。" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 #, fuzzy msgctxt "@info:status" msgid "Profile has been flattened & activated." @@ -153,6 +107,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "USBにて接続する" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -175,6 +134,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "圧縮G-codeファイル" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -197,7 +161,7 @@ msgid "Save to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "書き出すために利用可能な形式のファイルがありません!" @@ -236,7 +200,7 @@ msgstr "リムーバブルドライブ{0}に保存することができません #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "エラー" @@ -265,8 +229,8 @@ msgstr "リムーバブルデバイス{0}を取り出す" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "警告" @@ -293,212 +257,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "リムーバブルドライブ" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "ネットワーク上のプリント" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "ネットワークのプリント" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "ネットワーク上で接続" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "ネットワーク上で接続。プリンタへのリクエストを承認してください。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "ネットワーク上で接続。プリントを操作するアクセス権がありません。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "プリンターへのアクセスが申請されました。プリンタへのリクエストを承認してください。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "認証ステータス" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "認証ステータス" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "再試行" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "アクセスリクエストを再送信" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "プリンターへのアクセスが承認されました。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "このプリンターへのアクセスが許可されていないため、プリントジョブの送信ができませんでした。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "アクセスのリクエスト" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "アクセスのリクエスト送信" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "新しいプリントジョブを開始できません。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Ultimakerの設定に問題があるため、印刷が開始できません。問題を解消してからやり直してください。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "ミスマッチの構成" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "選択された構成にてプリントを開始してもいいですか。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "プリンターの設定、キャリブレーションとCuraの構成にミスマッチがあります。プリンターに設置されたプリントコア及びフィラメントを元にCuraをスライスすることで最良の印刷結果を出すことができます。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "新しいデータの送信 (temporarily) をブロックします、前のプリントジョブが送信中です。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "プリンターにプリントデータを送信中" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "プリントデータを送信中" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "キャンセル" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "プリントコアがスロット{slot_number}に入っていません。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "材料がスロット{slot_number}に入っていません。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "エクストルーダー {extruder_id} に対して異なるプリントコア(Cura: {cura_printcore_name}, プリンター: {remote_printcore_name})が選択されています。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "異なるフィラメントが入っています(Cura:{0}, プリンター{1})エクストルーダー{2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "プリンターと同期する" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Curaで設定しているプリンタ構成を使用されますか?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "プリンターのプリントコア及びフィラメントが現在のプロジェクトと異なります。最善な印刷結果のために、プリンタに装着しているプリントコア、フィラメントに合わせてスライスして頂くことをお勧めします。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "ネットワーク上で接続" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "プリントジョブは正常にプリンターに送信されました。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "データを送信しました" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "モニター表示" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "プリンター’{printer_name}’が’{job_name}’のプリントを終了しました。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "プリントジョブ '{job_name}' は完了しました。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "プリント終了" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "ネットワーク上にて接続" @@ -508,24 +487,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "モニター" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "{machine_name} で利用可能な新しい機能があります。プリンターのファームウェアをアップデートしてください。" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "新しい利用可能な%sファームウェアのアップデートがあります。" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "アップデートの仕方" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "必要なアップデートの情報にアクセスできません。" @@ -535,17 +514,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "レイヤービュー" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "Curaはワイヤープリンティング設定中には正確にレイヤーを表示しません。" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "シミュレーションビュー" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "G-codeを修正" @@ -559,32 +538,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "サポートが印刷されないボリュームを作成します。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Curaは、匿名化した利用統計を収集します。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "データを収集中" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "詳細" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Curaが送信するデータについて詳しくご覧ください。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "許可" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Curaが匿名化した利用統計を送信することを許可し、Curaの将来の改善を優先的に行うことに貢献します。プレファレンスと設定の一部、Curaのバージョン、スライスしているモデルのハッシュが送信されます。" @@ -594,18 +573,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Cura 15.04 プロファイル" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Blenderファイル" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "\"{}\"品質を使用したエクスポートができませんでした!\n\"{}\"になりました。" - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -631,49 +598,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF画像" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "スライスできません。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "モデルのデータがビルトボリュームに入っていないためスライスできるものがありません。スケールやローテーションにて合うように設定してください。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "レイヤーを処理しています。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "インフォメーション" @@ -700,18 +674,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "カスタム" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF ファイル" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "ノズル" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -722,18 +707,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "Gファイル" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "G-codeを解析" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "G-codeの詳細" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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の表示が適切でない場合があります。" @@ -744,16 +729,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Curaプロファイル" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "プロファイルアシスタント" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "プロファイルアシスタント" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MFファイル" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Curaが3MF fileを算出します。" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -835,19 +835,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "不明" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "スライス前ファイル {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "すでに存在するファイルです。" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -859,23 +859,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "上書きできません" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "選択されたフィラメントはプリンターとそのプリント構成に適応しておりません。" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "不適合フィラメント" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "現在利用可能なエクストルーダー [%s] に合わせて設定が変更されました。" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "設定が更新されました" @@ -958,13 +958,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "プロファイルはクオリティータイプが不足しています。" -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "進行中のプリント構成にあったクオリティータイプ{0}が見つかりませんでした。" -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -991,42 +991,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "全てのファイル" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "カスタムフィラメント" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "カスタム" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "造形サイズ" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "バックアップ" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "現行バージョンと一致しないCuraバックアップをリストアしようとしました。" @@ -1037,32 +1037,32 @@ msgid "Multiplying and placing objects" msgstr "造形データを増やす、配置する。" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "造形データを配置" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "造形物のために新しい位置を探索中" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "位置確認" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "位置を確保できません。" @@ -1080,7 +1080,12 @@ msgid "" "

Backups can be found in the configuration folder.

\n" "

Please send us this Crash Report to fix the problem.

\n" " " -msgstr "

申し訳ありません。Ultimaker Cura で何らかの不具合が生じています。

\n

開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

\n

バックアップは、設定フォルダに保存されます。

\n

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

\n " +msgstr "" +"

申し訳ありません。Ultimaker Cura で何らかの不具合が生じています。

\n" +"

開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

\n" +"

バックアップは、設定フォルダに保存されます。

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102 msgctxt "@action:button" @@ -1113,7 +1118,10 @@ msgid "" "

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

\n" "

Please use the \"Send report\" button to post a bug report automatically to our servers

\n" " " -msgstr "

致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

\n

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

\n " +msgstr "" +"

致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177 msgctxt "@title:groupbox" @@ -1193,223 +1201,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "レポート送信" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "プリンターを読み込み中…" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "シーンをセットアップ中…" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "インターフェイスを読み込み中…" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "選択したモデルは読み込むのに小さすぎます。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "プリンターの設定" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "プリンター" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "プリンターの設定" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X(幅)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (奥行き)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (高さ)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "ビルドプレート形" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "センターを出します。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "ヒーテッドドベッド" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "G-codeフレーバー" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "プリントヘッド設定" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X分" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "プリントヘッド左側からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y分" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "プリントヘッド前部からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "最大X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "プリントヘッド右側からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "最大Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "プリントヘッド後部からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "ガントリーの高さ" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "(X 軸及びY軸)ノズルの先端とガントリーシステムの高さに相違があります。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "エクストルーダーの数" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "G-Codeの開始" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "G-codeコマンドが最初に実行されるようにします。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "G-codeの終了" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "G-codeコマンドが最後に実行されるようにします。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "ノズル設定" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "ノズルサイズ" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "適合する材料直径" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "プリンターに対応したフィラメントの直径。正確な直径はフィラメント及びまたはプロファイルに変動します。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "ノズルオフセットX" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "ノズルオフセットY" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "エクストルーダーがG-Codeを開始する" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "エクストルーダーがG-Codeを終了する" @@ -1429,29 +1437,42 @@ msgctxt "@info" msgid "Could not connect to the Cura Package database. Please check your connection." msgstr "Curaパッケージデータベースに接続できません。接続を確認してください。" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "プラグイン" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "マテリアル" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "バージョン" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "最終更新日" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "著者" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "不明" @@ -1484,16 +1505,56 @@ msgctxt "@action:button" msgid "Back" msgstr "戻る" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 msgctxt "@info" msgid "You will need to restart Cura before changes in packages have effect." msgstr "パッケージへの変更を有効にするためにCuraを再起動する必要があります。" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Curaを終了する" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1525,7 +1586,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "このプラグインにはライセンスが含まれています。\nこのプラグインをインストールするにはこのライセンスに同意する必要があります。\n下の利用規約に同意しますか?" +msgstr "" +"このプラグインにはライセンスが含まれています。\n" +"このプラグインをインストールするにはこのライセンスに同意する必要があります。\n" +"下の利用規約に同意しますか?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1537,12 +1601,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "拒否する" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "特長" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "互換性" @@ -1552,10 +1616,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "パッケージ取得中" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "連絡" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1569,9 +1638,9 @@ msgstr "Changelogの表示" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1619,22 +1688,22 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "ユーザー用使用許諾契約" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "既存の接続" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "このプリンター/グループはすでにCuraに追加されています。別のプリンター/グループを選択しえください。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "ネットワーク上で繋がったプリンターに接続" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" @@ -1642,333 +1711,339 @@ msgid "" "Select your printer from the list below:" msgstr "ネットワーク接続にて直接プリントするためには、必ずケーブルまたはWifiネットワークにて繋がっていることを確認してください。Curaをプリンターに接続していない場合でも、USBメモリを使って直接プリンターにg-codeファイルをトランスファーできます。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "追加" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "編集" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "取り除く" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "更新" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "タイプ" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "ファームウェアバージョン" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "アドレス" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Ultimaker3のグループをホストするために設定されていません。" +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "このプリンターはUltimaker3 %1グループのホストプリンターです。" +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "このアドレスのプリンターは応答していません。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "接続" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "プリンターアドレス" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "ネットワーク内のプリンターのIPアドレスまたはホストネームを入力してください。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "ネットワーク上のプリント" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "プリンターの選択" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "プリント" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1は、繋がっているUltimaker3プリンターのグループをホストするために設定されていません。" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "プリンターの追加/削除" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "デフォルトのウェブブラウザで印刷ジョブページを開きます。" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "プリントジョブを見る" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "印刷の準備をする" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "プリント中" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "利用可能" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "プリンターへの接続が切断されました。" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "利用不可" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "不明" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "無効" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "予約済み" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "終了" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "プリントの準備をする" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "アクションが必要です。" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "一時停止" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "再開" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "プリント中止" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "プリントデータを確認できない" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "この層で終了します:" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "ビルドプレートをクリアにする" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "プリント構成の変更を待っている" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "プリントジョブ" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "プリント中" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "順番を待つ" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "複数のプリンター" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "プリント中" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "複数のプリンターをみる" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "プリント中止" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "終了" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "準備中" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "一時停止" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "再開" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "アクションが必要です。" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "プリンターにつなぐ" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "プリンターの構成をCuraに取り入れる。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "プリント構成をアクティベートする" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "カラースキーム" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "フィラメントの色" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "ラインタイプ" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "送り速度" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "レイヤーの厚さ" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "コンパティビリティモード" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "移動を表示する" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "ヘルプを表示する" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "シェルを表示する" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "インフィルを表示する" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "トップのレイヤーを表示する" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "トップの5レイヤーの詳細を表示する" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "トップ/ボトム" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "インナーウォール" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "最小" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "最大" @@ -2088,53 +2163,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "スムージング" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "メッシュタイプ" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "標準モデル" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "サポートとしてプリント" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "他のモデルとのオーバーラップは未サポート" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "他のモデルとのオーバーラップの設定を変更" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "他のモデルのインフィルの設定を変更" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "設定を選択する" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "このモデルをカスタマイズする設定を選択する" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "フィルター…" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "すべて表示する" @@ -2156,13 +2231,13 @@ msgid "Create new" msgstr "新しいものを作成する" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "サマリーCuraプロジェクト" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "プリンターの設定" @@ -2179,7 +2254,7 @@ msgid "Update" msgstr "アップデート" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "タイプ" @@ -2190,7 +2265,7 @@ msgid "Printer Group" msgstr "プリンターグループ" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "プロファイル設定" @@ -2202,20 +2277,20 @@ msgstr "このプロファイルの問題をどのように解決すればいい #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "ネーム" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "プロファイル内にない" # Can’t edit the Japanese text #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2246,7 +2321,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "このフィラメントの問題をどのように解決すればいいか?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "視野設定" @@ -2257,13 +2332,13 @@ msgid "Mode" msgstr "モード" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "ビジブル設定:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%2のうち%1" @@ -2278,6 +2353,82 @@ msgctxt "@action:button" msgid "Open" msgstr "開く" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "書き出す" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00時間 00分" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "コスト仕様" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "合計:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2496,26 +2647,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "造形物を取り出してください。" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "一時停止" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "再開" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "プリント中止" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "プリント中止" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2550,19 +2685,17 @@ msgid "Customized" msgstr "カスタマイズ" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "毎回確認する" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "取り消し、再度確認しない。" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "キープし、再度確認しない。" @@ -2582,101 +2715,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "新しいプロファイルを作る" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "インフォメーション" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "直径変更の確認" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "ディスプレイ名" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "ブランド" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "フィラメントタイプ" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "色" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "プロパティ" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "密度" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "直径" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "フィラメントコスト" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "フィラメントの重さ" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "フィラメントの長さ" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "毎メーターコスト" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "このフィラメントは %1にリンクすプロパティーを共有する。" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "フィラメントをリンクを外す" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "記述" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "接着のインフォメーション" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "プリント設定" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "アクティベート" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "作成する" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "複製" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "取り込む" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "プリンター" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "モデルを取り除きました。" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1を取り外しますか?この作業はやり直しが効きません。" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "フィラメントを取り込む" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr " %1フィラメントを取り込むことができない: %2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "フィラメント%1の取り込みに成功しました。" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "フィラメントを書き出す" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "フィラメントの書き出しに失敗しました %1: %2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "フィラメントの%1への書き出しが完了ました。" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2713,7 +2918,7 @@ msgid "Unit" msgstr "ユニット" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "一般" @@ -2905,8 +3110,8 @@ msgstr "プロジェクトファイル開く際のデフォルト機能:" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "いつもお尋ねください。" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2925,77 +3130,75 @@ msgstr "プロファイル内を変更し異なるプロファイルにしまし #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "プロファイルを無効にする" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "プライバシー" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Curaのプログラム開始時にアップデートがあるかチェックしますか?" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "スタート時にアップデートあるかどうかのチェック" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr " (不特定な) プリントインフォメーションを送信" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "詳細" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "実験" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "マルチビルドプレート機能を使用" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "マルチビルドプレート機能を使用 (再起動が必要)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "新たにロードしたモデルをビルドプレート上に配置すべきですか? マルチビルドプレートと共に使用 (実験的)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "ロード時にオブジェクトを配置しません" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "プリンター" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "アクティベート" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3039,7 +3242,7 @@ msgid "Aborting print..." msgstr "プリントを停止します…" #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "プロファイル" @@ -3054,18 +3257,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "複製" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "取り込む" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "書き出す" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3076,18 +3267,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "プロファイルを複製する" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "モデルを取り除きました。" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1を取り外しますか?この作業はやり直しが効きません。" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3108,96 +3287,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "プリンター:%1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "保護されたプロファイル" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "カスタムプロファイル" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "プロファイルを現在のセッティング/" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "今の変更を破棄する" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "設定は選択したプロファイルにマッチしています。" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "グローバル設定" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "マテリアル" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "作成する" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "複製" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "フィラメントを取り込む" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr " %1フィラメントを取り込むことができない: %2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "フィラメント%1の取り込みに成功しました。" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "フィラメントを書き出す" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "フィラメントの書き出しに失敗しました %1: %2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "フィラメントの%1への書き出しが完了ました。" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "プリンター" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "プリンターを追加する" @@ -3212,6 +3338,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "プリンターについて" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3345,7 +3476,9 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "いくらかの設定プロファイルにある値とことなる場合無効にします。\nプロファイルマネージャーをクリックして開いてください。" +msgstr "" +"いくらかの設定プロファイルにある値とことなる場合無効にします。\n" +"プロファイルマネージャーをクリックして開いてください。" #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3362,33 +3495,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "すべてのエクストルーダーに対して変更された値をコピーする" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "この設定を非表示にする" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "この設定を表示しない" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "常に見えるように設定する" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "視野のセッティングを構成する" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "すべて折りたたむ" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "すべて展開する" @@ -3399,7 +3532,9 @@ msgid "" "Some hidden settings use values different from their normal calculated value.\n" "\n" "Click to make these settings visible." -msgstr "いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n表示されるようにクリックしてください。" +msgstr "" +"いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n" +"表示されるようにクリックしてください。" #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3427,7 +3562,9 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "この設定にプロファイルと異なった値があります。\nプロファイルの値を戻すためにクリックしてください。" +msgstr "" +"この設定にプロファイルと異なった値があります。\n" +"プロファイルの値を戻すためにクリックしてください。" #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3435,7 +3572,9 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "このセッティングは通常計算されます、今は絶対値に固定されています。\n計算された値に変更するためにクリックを押してください。" +msgstr "" +"このセッティングは通常計算されます、今は絶対値に固定されています。\n" +"計算された値に変更するためにクリックを押してください。" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3473,7 +3612,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "カスタムG-codeコマンドを接続されているプリンターに送信します。「Enter」を押してコマンドを送信します。" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "エクストルーダー" @@ -3526,7 +3665,7 @@ msgid "The nozzle inserted in this extruder." msgstr "ノズルが入ったエクストルーダー" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "ビルドプレート" @@ -3551,6 +3690,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3645,40 +3799,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "プリントセットアップが無効\nG-codeファイルを修正することができません。" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00時間 00分" +msgstr "" +"プリントセットアップが無効\n" +"G-codeファイルを修正することができません。" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "時間仕様" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "コスト仕様" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "合計:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3689,29 +3818,29 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "カスタムプリントセットアップ

スライス処理のきめ細かなコントロールにてプリントする" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "プリントをアクティベートする" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "ジョブネーム" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "プリント時間" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "残り時間" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" +msgid "Toggle Full Screen" msgstr "留め金 フルスクリーン" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 @@ -3731,28 +3860,28 @@ msgstr "&やめる" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "3Dビュー (&3)" +msgid "3D View" +msgstr "3Dビュー " #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "フロントビュー (&F)" +msgid "Front View" +msgstr "フロントビュー" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "トップビュー (&T)" +msgid "Top View" +msgstr "トップビュー" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "左サイドビュー (&L)" +msgid "Left Side View" +msgstr "左サイドビュー" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "右サイドビュー (&R)" +msgid "Right Side View" +msgstr "右サイドビュー" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3806,188 +3935,187 @@ msgstr "報告&バグ" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." +msgid "About..." msgstr "アバウト..." # can’t enter japanese text #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" msgstr[0] "&選択したモデルを削除" # can’t enter japanese text -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "選択したモデルを中央に移動" # can’t edit japanese text -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "選択した複数のモデル" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "モデルを消去する" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "プラットホームの中心にモデルを配置" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&モデルグループ" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "モデルを非グループ化" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" -msgstr "&モデルの合体" +msgstr "モ&デルの合体" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&モデルを増倍する…" +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "すべてのモデル選択" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "&すべてのモデル選択" +msgid "Clear Build Plate" +msgstr "ビルドプレート上のクリア" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&ビルドプレート上のクリア" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" +msgid "Reload All Models" msgstr "すべてのモデルを読み込む" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "すべてのモデルをすべてのビルドプレートに配置" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "すべてのモデルをアレンジする" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "選択をアレンジする" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "すべてのモデルのポジションをリセットする" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" +msgid "Reset All Model Transformations" msgstr "すべてのモデル&変更点をリセットする" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&ファイルを開く(s)…" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&新しいプロジェクト…" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "エンジン&ログを表示する" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "コンフィグレーションのフォルダーを表示する" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "パッケージを見る…" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "サイドバーを展開する/たたむ" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "3Dモデルをロードしてください。" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "スライスの準備ができました。" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "スライス中…" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "%1の準備完了" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "スライスできません。" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "スライスが利用不可能" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "現在のプリントジョブをスライスします" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "スライスプロセスをキャンセルします" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "準備する" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "キャンセル" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "アクティブなアウトプットデバイスを選択する" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "ファイルを開く" @@ -4007,129 +4135,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&ファイル" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "&ファイルに選択したものを保存" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "名前をつけて保存" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "プロジェクトの保存 (&P)..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&編集" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&ビュー" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "&設定" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&プリンター" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&フィラメント" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "アクティブエクストルーダーとしてセットする" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "エクストルーダーを有効にする" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "エクストルーダーを無効にする" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "ビルドプレート (&B)" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&プロファイル" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "拡張子" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&ツールボックス" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "プレファレンス" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "ヘルプ" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "このパッケージは再起動後にインストールされます。" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "ファイルを開く" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "設定" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "新しいプロジェクト…" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "パッケージをインストール" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "ファイルを開く(s)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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点のみ選んでください。" @@ -4139,112 +4283,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "プロジェクトを保存" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "ビルドプレート" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "エクストルーダー%1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1とフィラメント" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "保存中のプロジェクトサマリーを非表示にする" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "保存" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "レイヤーの高さ" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "この品質プロファイルは現在の材料およびノズル構成では使用できません。この品質プロファイルを使用できるように変更してください。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "カスタムプロファイルが有効になっています。品質スライダーを有効にするには、カスタムタブでデフォルトの品質プロファイルを選択してください" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "プリントスピード" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "ゆっくり" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "早く" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "プロファイルの設定がいくつか変更されました。変更を有効にするにはカスタムモードに移動してください。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "インフィル" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 msgctxt "@label" msgid "Gradual infill will gradually increase the amount of infill towards the top." msgstr "グラデュアルインフィルはトップに向かうに従ってインフィルの量を増やします。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "グラデュアルを有効にする" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "サポートを生成します。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "サポートに使うエクストルーダーを選択してください。モデルの垂れや中空プリントを避けるためにモデルの下にサポート構造を生成します。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "ビルドプレートの接着" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "プリントにヘルプが必要ですか?
Ultimakerトラブルシューティングガイドを読んでください。" @@ -4291,22 +4435,22 @@ msgctxt "@label" msgid "Printer type" msgstr "プリンタータイプ" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "フィラメント" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "密着性シートを使用する、またはこの材料の組み合わせで接着する" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "互換性の確認" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Ultimaker.comにてマテリアルのコンパティビリティを調べるためにクリック" @@ -4396,16 +4540,6 @@ msgctxt "name" msgid "God Mode" msgstr "Godモード" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "G-codeを承認し、Doodle3D WiFi-ボックスにWifi上にて送る" - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4486,16 +4620,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "ステージの準備" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "直接スクリプト編集のための編集ウィンドウを提供します。" - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "ライブスクリプティングツール" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4606,16 +4730,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "レガシーCuraプロファイルリーダー" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Curaの中で直接Blenderファイルを開くために役立ちます。" - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Blender統合 (実験的)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4666,6 +4780,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "2.7から3.0にバージョンアップグレート" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4776,6 +4900,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Curaプロファイルライター" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "材料メーカーがドロップインUIを使用して新しい材料と品質のプロファイルを作成できるようにします。" + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "プリントプロファイルアシスタント" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4806,6 +4940,218 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Curaプロファイルリーダー" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Boxでプリントする" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Boxでプリント" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Doodle3D Connectに接続する" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Doodle3D Connectにデータを送信" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Doodle3D Connectにデータを送れませんでした。他のジョブはまだアクティブですか?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Doodle3D Connectにデータを保存" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Doodle3D Connectにファイル送信完了" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Connectを開いています..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Doodle3D Connect web interfaceを開く" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Blenderファイル" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "\"{}\"品質を使用したエクスポートができませんでした!\n" +#~ "\"{}\"になりました。" + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "連絡" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Ultimaker3のグループをホストするために設定されていません。" + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "このプリンターはUltimaker3 %1グループのホストプリンターです。" + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1は、繋がっているUltimaker3プリンターのグループをホストするために設定されていません。" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "プリンターの追加/削除" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "デフォルトのウェブブラウザで印刷ジョブページを開きます。" + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "プリントジョブを見る" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "印刷の準備をする" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "プリント中" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "利用可能" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "プリンターへの接続が切断されました。" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "利用不可" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "不明" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "無効" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "予約済み" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "プリントの準備をする" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "プリント中止" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "プリントデータを確認できない" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "この層で終了します:" + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "ビルドプレートをクリアにする" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "プリント構成の変更を待っている" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "プリントジョブ" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "複数のプリンター" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "複数のプリンターをみる" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "一時停止" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "再開" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "プリント中止" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "いつもお尋ねください。" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "プロファイルを無効にする" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "新たにロードしたモデルをビルドプレート上に配置すべきですか? マルチビルドプレートと共に使用 (実験的)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "ロード時にオブジェクトを配置しません" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "フ&ァイルに選択したものを保存" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "名前をつけて保存" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "プロジェクトの保存 (&P)..." + +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "密着性シートを使用する、またはこの材料の組み合わせで接着する" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "G-codeを承認し、Doodle3D WiFi-ボックスにWifi上にて送る" + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "直接スクリプト編集のための編集ウィンドウを提供します。" + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "ライブスクリプティングツール" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Curaの中で直接Blenderファイルを開くために役立ちます。" + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Blender統合 (実験的)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "モデルチェッカー警告" @@ -5073,10 +5419,6 @@ msgstr "Curaプロファイルリーダー" #~ msgid "Browse plugins..." #~ msgstr "プラグインをみる" -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "ビルドプレート (&B)" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "プラグイン" @@ -5302,14 +5644,6 @@ msgstr "Curaプロファイルリーダー" #~ "\n" #~ "申し訳ありません。" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "プロファイルアシスタント" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "プロファイルアシスタント" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "フィラメントがロードされていません。" @@ -5440,14 +5774,6 @@ msgstr "Curaプロファイルリーダー" #~ msgid "Configure setting visiblity..." #~ msgstr "視野のセッティングを構成する" -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "自動選択: %1" @@ -5484,14 +5810,6 @@ msgstr "Curaプロファイルリーダー" #~ msgid "GCode Profile Reader" #~ msgstr "GCodeプロファイルリーダー" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "材料メーカーがドロップインUIを使用して新しい材料と品質のプロファイルを作成できるようにします。" - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "プリントプロファイルアシスタント" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "ソリッドワークスのファイルを開く際にエラーが発生しました!ソリッドワークスで、問題なく開くことができるか確認してください。" @@ -5688,10 +6006,6 @@ msgstr "Curaプロファイルリーダー" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "このプリンターは繋がっているUltimaker3プリンターの%1グループのホストです。" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "準備中" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "完了:" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index 81d7a09420..0fa92f6afe 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Brule\n" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index cc0ac98b68..85b3a89cfd 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Brule\n" @@ -61,7 +61,9 @@ 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" @@ -73,7 +75,9 @@ 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" @@ -86,6 +90,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "マテリアルのGUID。これは自動的に設定されます。" +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1101,6 +1115,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "ジグザグ" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1181,6 +1205,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "すでに壁が設置されている場所にプリントされている内壁の部分の流れを補正します。" +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1282,7 +1326,9 @@ msgstr "ZシームX" #: fdmprinter.def.json msgctxt "z_seam_x description" msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "レイヤー内の各印刷を開始するX座\n標の位置。" +msgstr "" +"レイヤー内の各印刷を開始するX座\n" +"標の位置。" #: fdmprinter.def.json msgctxt "z_seam_y label" @@ -1572,12 +1618,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "同心円" -# msgstr "同心円" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D同心円" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1605,6 +1645,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1636,6 +1686,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1737,7 +1809,9 @@ msgstr "インフィル優先" #: fdmprinter.def.json msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\nはじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます" +msgstr "" +"壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\n" +"はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます" #: fdmprinter.def.json msgctxt "min_infill_area label" @@ -1954,16 +2028,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "最初のレイヤー印刷時のビルドプレートの温度。" -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2813,8 +2877,8 @@ msgstr "コーミングモード" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避します。" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2831,6 +2895,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "スキン内にない" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3217,11 +3286,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "同心円" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D同心円" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3283,6 +3347,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3583,11 +3667,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "同心円" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D同心円" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3627,12 +3706,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "同心円" -# msgstr "同心" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D同心円" - # msgstr "同心3D" #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" @@ -3674,18 +3747,32 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "同心円" -# msgstr "同心円" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "3D同心円" - # msgstr "コンセントリック3D" #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "ジグザグ" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + # msgstr "ジグザグ" #: fdmprinter.def.json msgctxt "support_use_towers label" @@ -3843,7 +3930,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "スカートと印刷の最初の層の間の水平距離。\nこれは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" +msgstr "" +"スカートと印刷の最初の層の間の水平距離。\n" +"これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -4017,8 +4106,8 @@ msgstr "ベースラフト層の線幅。ビルドプレートの接着のため #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "ラフトラインスペース" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4235,16 +4324,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "プライムタワーの各層の最小容積" -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "プライムタワーの厚さ" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "中空プライムタワーの厚さ。プライムタワーの半分を超える厚さは、密集したプライムタワーになります。" - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4285,27 +4364,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "スイッチ後のノズル拭き取り" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "エクストルーダーを切り替えた後、最初に印刷したものの上にあるノズルから滲み出したマテリアルを拭き取ってください。余分に出たマテリアルがプリントの表面品質に与える影響が最も少ない場所で、ゆっくりと払拭を行います。" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "プライムタワーのパージ量" - -# msgstr "プライムタワーのパージ時のボリューム" -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "プライムタワーの上を拭くときにパージするフィラメントの量。パージは、ノズルの不活動時にじみ出たフィラメントを補修するため便利です。" - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4803,6 +4861,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。" +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5471,6 +5539,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "小さいレイヤーを使用するかどうかの閾値。この値が、レイヤー中の最も急な斜面のタンジェントと比較されます。" +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5501,16 +5589,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "ブリッジ壁最大オーバーハング" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "ブリッジ設定でウォールを印刷する前に、壁の線の下の空気の領域で可能な最大幅。空気ギャップがこれより広い場合は、壁の線はブリッジ設定で印刷されます。それ以外は、通常の設定で印刷されます。この値より低い場合は、オーバーハング壁線がブリッジ設定で印刷されます。" - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5731,6 +5809,70 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" +# msgstr "同心円" +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D同心円" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避します。" + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D同心円" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D同心円" + +# msgstr "同心" +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D同心円" + +# msgstr "同心円" +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "3D同心円" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "ラフトラインスペース" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "プライムタワーの厚さ" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "中空プライムタワーの厚さ。プライムタワーの半分を超える厚さは、密集したプライムタワーになります。" + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "スイッチ後のノズル拭き取り" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "エクストルーダーを切り替えた後、最初に印刷したものの上にあるノズルから滲み出したマテリアルを拭き取ってください。余分に出たマテリアルがプリントの表面品質に与える影響が最も少ない場所で、ゆっくりと払拭を行います。" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "プライムタワーのパージ量" + +# msgstr "プライムタワーのパージ時のボリューム" +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "プライムタワーの上を拭くときにパージするフィラメントの量。パージは、ノズルの不活動時にじみ出たフィラメントを補修するため便利です。" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "ブリッジ壁最大オーバーハング" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "ブリッジ設定でウォールを印刷する前に、壁の線の下の空気の領域で可能な最大幅。空気ギャップがこれより広い場合は、壁の線はブリッジ設定で印刷されます。それ以外は、通常の設定で印刷されます。この値より低い場合は、オーバーハング壁線がブリッジ設定で印刷されます。" + # msgstr "壁のプリントの順番を最適化する" #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 2b5dec7c0f..530aede5c7 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-19 16:10+0900\n" "Last-Translator: Jinbuhm Kim \n" "Language-Team: Jinbum Kim , Korean \n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code 파일" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -53,80 +64,23 @@ msgid "" "

{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

인쇄 품질 가이드 보기

" +msgstr "" +"

하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.

\n" +"

{model_names}

\n" +"

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

\n" +"

인쇄 품질 가이드 보기

" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box로 프린팅" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box로 프린팅" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Doodle3D Connect에 연결" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "취소" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Doodle3D Connect에 데이터 보내기" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Doodle3D Connect에 데이터를 보낼 수 없습니다. 다른 작업이 진행중인가요?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Doodle3D Connect에 데이터 저장" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Doodle3D Connect에 파일 전송" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Connect 열기..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Doodle3D Connect 웹 인터페이스 열기" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "변경 내역 표시" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "활성 설정 병합" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "프로파일이 병합되고 활성화되었습니다." @@ -151,6 +105,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "USB를 통해 연결" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -173,6 +132,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "압축된 G-code 파일" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -195,7 +159,7 @@ msgid "Save to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "쓸 수있는 파일 형식이 없습니다!" @@ -234,7 +198,7 @@ msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "오류" @@ -263,8 +227,8 @@ msgstr "이동식 장치 {0} 꺼내기" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "경고" @@ -291,212 +255,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "이동식 드라이브" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "네트워크를 통해 프린팅" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "네트워크를 통해 프린팅" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "네트워크를 통해 연결됨." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "네트워크를 통해 연결되었습니다. 프린터의 접근 요청을 승인하십시오." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "네트워크를 통해 연결되었습니다. 프린터를 제어할 수 있는 권한이 없습니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "요청된 프린터에 대한 액세스. 프린터에서 요청을 승인하십시오" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "인증 상태" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "인증 상태" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "재시도" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "접근 요청 다시 보내기" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "허용 된 프린터에 대한 접근 허용" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "이 프린터로 프린팅 할 수 없습니다. 프린팅 작업을 보낼 수 없습니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "접근 요청" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "프린터에 접근 요청 보내기" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "새 프린팅 작업을 시작할 수 없습니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Ultimaker의 설정에 문제가 있어 프린팅을 시작할 수 없습니다. 계속하기 전에 이 문제를 해결하십시오." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "일치하지 않는 구성" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "선택한 구성으로 프린팅 하시겠습니까?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "프린터와 Cura의 설정이 일치하지 않습니다. 최상의 결과를 얻으려면 프린터에 삽입 된 PrintCores 및 재료로 슬라이싱을 하십시오." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "새로운 작업 전송 (일시적)이 차단되어 이전 프린팅 작업을 계속 보냅니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "프린터로 데이터 보내기" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "데이터 전송 중" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "취소" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "{slot_number} 슬롯에 로드 된 프린터코어가 없음" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "{slot_number}에 로드 된 재료가 없음" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "익스트루더 {extruder_id}에 대해 다른 프린터코어 (Cura : {cura_printcore_name}, 프린터 : {remote_printcore_name})가 선택되었습니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "익스트루더 {2}에 다른 재료 (Cura : {0}, Printer : {1})가 선택됨" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "프린터와 동기화" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Cura에서 현재 프린터 구성을 사용 하시겠습니까?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "프린터의 PrintCores와 재료는 현재 프로젝트 내의 재료와 다릅니다. 최상의 결과를 얻으려면 프린터에 삽입 된 PrintCores 및 재료로 슬라이싱 하십시오." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "네트워크를 통해 연결됨" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "출력 작업이 프린터에 성공적으로 보내졌습니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "데이터 전송 됨" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "모니터에서 보기" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "'{printer_name} 프린터가 '{job_name}' 프린팅을 완료했습니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "인쇄 작업 ‘{job_name}’이 완료되었습니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "프린팅이 완료됨" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "네트워크를 통해 연결" @@ -506,24 +485,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "모니터" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "{machine_name}의 새로운 기능을 사용할 수 있습니다! 프린터의 펌웨어를 업데이트하는 것이 좋습니다." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "새로운 %s 펌웨어를 사용할 수 있습니다" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "업데이트하는 방법" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "업데이트 정보에 액세스 할 수 없습니다." @@ -533,17 +512,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "레이어 뷰" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "와이어 프린팅이 활성화되어 있을 때 Cura는 레이어를 정확하게 표시하지 않습니다" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "시뮬레이션 뷰" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "G 코드 수정" @@ -557,32 +536,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "서포트가 프린팅되지 않는 볼륨을 만듭니다." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura는 익명의 사용 통계를 수집합니다." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "데이터 수집" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "추가 정보" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Cura가 전송하는 데이터에 대한 추가 정보를 확인하십시오." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "허용" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Cura가 익명의 사용 통계를 보내 Cura에 대한 향후 개선을 우선화하는 데 도움을 줍니다. Cura 버전과 슬라이싱하는 모델의 해쉬 등 일부 환경설정 값이 발송됩니다." @@ -592,18 +571,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Cura 15.04 프로파일" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Blender 파일" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "\"{}\" 품질을 사용하여 내보낼 수 없습니다!\n \"{}\"(으)로 돌아갑니다." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -629,49 +596,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF 이미지" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "슬라이스 할 수 없습니다" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "어떤 모델도 빌드 볼륨에 맞지 않으므로 슬라이스 할 수 없습니다. 크기에 맞게 모델을 회전하거나 회전하십시오." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "레이어 처리 중" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "정보" @@ -698,18 +672,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "사용자 정의" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 파일" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "노즐" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -720,18 +705,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "G 파일" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "G 코드 파싱" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "G-코드 세부 정보" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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-코드가 정확하지 않을 수 있습니다." @@ -742,16 +727,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 프로파일" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "프로파일 어시스턴트" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "프로파일 어시스턴트" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MF 파일" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 프로젝트 3MF 파일" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -833,19 +833,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "알 수 없음" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "미리 슬라이싱한 파일 {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "파일이 이미 있습니다" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -857,23 +857,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "재정의되지 않음" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "선택한 재료가 선택한 기기 또는 구성과 호환되지 않습니다." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "호환되지 않는 재료" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "현재 사용가능한 익스트루더: [% s]에 맞도록 설정이 변경되었습니다" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "설정이 업데이트되었습니다" @@ -956,13 +956,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "프로파일에 품질 타입이 누락되었습니다." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "현재 구성에 대해 품질 타입 {0}을 찾을 수 없습니다." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -989,42 +989,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "모든 파일 (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "사용자 정의 소재" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "사용자 정의" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "출력물 크기" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "백업" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다." -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "현재 버전과 일치하지 않는 Cura 백업을 복원하려고 시도했습니다." @@ -1035,32 +1035,32 @@ msgid "Multiplying and placing objects" msgstr "객체를 증가시키고 배치" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "개체 배치 중" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "객체의 새 위치 찾기" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "위치 찾기" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "위치를 찾을 수 없음" @@ -1078,7 +1078,12 @@ msgid "" "

Backups can be found in the configuration folder.

\n" "

Please send us this Crash Report to fix the problem.

\n" " " -msgstr "

죄송합니다, Ultimaker Cura가 정상적이지 않습니다. \n                    

시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. \n                    

백업은 설정 폴더에서 찾을 수 있습니다. \n                    

문제를 해결하기 위해이 오류 보고서를 보내주십시오. \n " +msgstr "" +"

죄송합니다, Ultimaker Cura가 정상적이지 않습니다. \n" +"                    

시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. \n" +"                    

백업은 설정 폴더에서 찾을 수 있습니다. \n" +"                    

문제를 해결하기 위해이 오류 보고서를 보내주십시오. \n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102 msgctxt "@action:button" @@ -1111,7 +1116,10 @@ msgid "" "

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

\n" "

Please use the \"Send report\" button to post a bug report automatically to our servers

\n" " " -msgstr "

치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

\n

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

\n " +msgstr "" +"

치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177 msgctxt "@title:groupbox" @@ -1191,223 +1199,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "보고서 전송" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "기기로드 중 ..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "장면 설정 중..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "인터페이스 로드 중 ..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "선택한 모델이 너무 작아서 로드할 수 없습니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "기기 설정" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "프린터" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "프린터 설정" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (너비)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (깊이)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (높이)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "빌드 플레이트 모양" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "중앙이 원점" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "히트 베드" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Gcode 유형" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "프린트헤드 설정" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X 최소값" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "프린트 헤드 왼쪽에서 노즐 중심까지의 거리. \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 프린팅 헤드 사이의 충돌을 방지하는 데 사용됩니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y 최소값" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "프린트 헤드 전면에서 노즐 중앙까지의 거리. \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 프린팅 헤드 사이의 충돌을 방지하는 데 사용됩니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X 최대값" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "프린트 헤드의 오른쪽에서 노즐 중앙까지의 거리. \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 프린팅 헤드 사이의 충돌을 방지하는 데 사용됩니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y 최대값" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "프린트 헤드의 뒤쪽에서 노즐 중심까지의 거리. \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 프린팅 헤드 사이의 충돌을 방지하는 데 사용됩니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "갠트리 높이" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축). \"한 번에 하나\"를 프린팅 할 때 이전 프린팅물과 갠트리 사이의 충돌을 방지하는 데 사용됩니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "익스트루더의 수" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "시작 Gcode" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "시작시 Gcode 명령이 실행됩니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "종료 Gcode" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Gcode 명령어가 맨 마지막에 실행됩니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "노즐 설정" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "노즐 크기" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "호환되는 재료의 직경" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "프린터가 지원하는 필라멘트의 직경. 정확한 직경은 소재 및 / 또는 프로파일에 의해 덮어써집니다." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "노즐 오프셋 X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "노즐 오프셋 Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "익스트루더 시작 Gcode" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "익스트루더 종료 Gcode" @@ -1427,29 +1435,42 @@ msgctxt "@info" msgid "Could not connect to the Cura Package database. Please check your connection." msgstr "Cura 패키지 데이터베이스에 연결할 수 없습니다. 연결을 확인하십시오." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "플러그인" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "재료" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "버전" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "마지막으로 업데이트한 날짜" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "원작자" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "알 수 없는" @@ -1482,16 +1503,56 @@ msgctxt "@action:button" msgid "Back" msgstr "뒤로" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 msgctxt "@info" msgid "You will need to restart Cura before changes in packages have effect." msgstr "패키지의 변경 사항이 적용되기 전에 Cura를 다시 시작해야 합니다" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Cura 끝내기" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1523,7 +1584,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "이 플러그인에는 라이선스가 포함되어 있습니다.\n이 플러그인을 설치하려면 이 라이선스를 수락해야 합니다.\n아래의 약관에 동의하시겠습니까?" +msgstr "" +"이 플러그인에는 라이선스가 포함되어 있습니다.\n" +"이 플러그인을 설치하려면 이 라이선스를 수락해야 합니다.\n" +"아래의 약관에 동의하시겠습니까?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1535,12 +1599,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "거절" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "추천" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "호환성" @@ -1550,10 +1614,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "패키지 가져오는 중..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "연락처" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1567,9 +1636,9 @@ msgstr "변경 내역" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1617,356 +1686,365 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "사용자 계약" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "기존 연결" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "이 프린터/그룹은 이미 Cura에 추가되었습니다. 다른 프린터/그룹을 선택하십시오." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "네트워크 프린터에 연결" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" "\n" "Select your printer from the list below:" -msgstr "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g 코드 파일을 프린터로 전송할 수 있습니다\n\n아래 목록에서 프린터를 선택하십시오:" +msgstr "" +"네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g 코드 파일을 프린터로 전송할 수 있습니다\n" +"\n" +"아래 목록에서 프린터를 선택하십시오:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "추가" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "편집" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "제거" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "새로고침" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "유형" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "펌웨어 버전" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "주소" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "이 프린터는 Ultimaker 3 프린터 그룹을 호스트하도록 설정되지 않았습니다." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "이 프린터는 1% Ultimaker 3 프린터 그룹의 호스트입니다." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "연결" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "프린터 주소" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "네트워크에 프린터의 IP 주소 또는 호스트 이름을 입력하십시오." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "확인" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "네트워크를 통해 프린팅" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "프린터 선택" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "프린트" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1은 연결된 Ultimaker 3에 연결된 프린터 그룹을 호스트하도록 설정되지 않았습니다" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "프린터 추가/제거" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "프린팅 작업 페이지를 기본 웹 브라우저로 엽니다." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "프린팅 작업보기" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "프린팅 준비" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "프린팅" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "유효한" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "프린터와의 연결이 끊어졌습니다" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "사용불가" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "알 수 없음" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "사용 중지됨" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "예약된" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "끝마친" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "프린팅 준비" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "조치가 필요함" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "일시 중지됨" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "다시 시작" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "프린터가 중단됨" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "프린팅 작업을 수락하지 않음" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "종료시간 : " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "빌드 플레이트를 정리하십시오" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "설정 변경 대기중" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "프린팅 작업" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "프린팅" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "대기 중" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "프린터" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "프린팅" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "프린터 보기" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "프린팅 중단" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "끝마친" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "준비중인" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "일시 중지됨" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "다시 시작" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "조치가 필요함" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "프린터에 연결" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Cura에 프린터 설정 로드" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "설정 활성화" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "색 구성표" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "재료 색상" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "라인 유형" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "이송 속도" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "레이어 두께" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "호환 모드" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "이동 표시" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "도움말 보이기" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "셸 표시" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "내부채움 표시" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "상단 레이어 만 표시" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "상단에 5 개의 세부 레이어 표시" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "위 / 아래" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "내벽" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "최소" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "최대" @@ -2086,53 +2164,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "스무딩(smoothing)" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "메쉬 유형" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "일반 모델" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "서포터로 프린팅" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "다른 모델과 오버랩되도록 지원하지 않음" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "다른 모델과의 오버랩에 대한 설정 수정" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "다른 모델의 내부채움에 대한 설정 수정" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "설정 선택" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "필터..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "모두 보이기" @@ -2154,13 +2232,13 @@ msgid "Create new" msgstr "새로 만들기" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "요약 - Cura 프로젝트" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "프린터 설정" @@ -2177,7 +2255,7 @@ msgid "Update" msgstr "업데이트" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "유형" @@ -2188,7 +2266,7 @@ msgid "Printer Group" msgstr "프린터 그룹" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "프로파일 설정" @@ -2200,19 +2278,19 @@ msgstr "프로파일의 충돌을 어떻게 해결해야합니까?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "이름" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "프로파일에 없음" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2240,7 +2318,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "재료의 충돌은 어떻게 해결되어야합니까?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "표시 설정" @@ -2251,13 +2329,13 @@ msgid "Mode" msgstr "종류" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "표시 설정 :" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "1 out of %2" @@ -2272,6 +2350,82 @@ msgctxt "@action:button" msgid "Open" msgstr "열기" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "내보내기" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00시간 00분" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "비용 사양" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "총계:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2490,26 +2644,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "프린트물을 제거하십시오" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "중지" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "재개" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "프린팅 중단" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "프린팅 중단" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2526,7 +2664,9 @@ msgctxt "@text:window" msgid "" "You have customized some profile settings.\n" "Would you like to keep or discard those settings?" -msgstr "일부 프로파일 설정을 수정했습니다.\n이러한 설정을 유지하거나 삭제 하시겠습니까?" +msgstr "" +"일부 프로파일 설정을 수정했습니다.\n" +"이러한 설정을 유지하거나 삭제 하시겠습니까?" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110 msgctxt "@title:column" @@ -2544,19 +2684,17 @@ msgid "Customized" msgstr "사용자 정의" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "항상 묻기" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "최소하고 다시 묻지않기" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "계속하고 다시 묻지않기" @@ -2576,101 +2714,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "새 프로파일 만들기" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "정보" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "직경 변경 확인" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "표시 이름" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "상표" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "재료 유형" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "색깔" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "속성" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "밀도" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "직경" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "필라멘트 비용" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "필라멘트 무게" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "필라멘트 길이" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "미터 당 비용" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "이 재료는 %1에 연결되어 있으며 일부 속성을 공유합니다." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "재료 연결 해제" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "설명" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "접착 정보" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "프린팅 설정" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "활성화" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "생성" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "복제" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "가져오기" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "프린터" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "제거 확인" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "재료 가져 오기" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "재료를 가져올 수 없습니다" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "재료를 성공적으로 가져왔습니다" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "재료 내보내기" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "재료를 내보내는데 실패했습니다" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "재료를 성공적으로 내보냈습니다" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2707,7 +2917,7 @@ msgid "Unit" msgstr "단위" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "일반" @@ -2899,8 +3109,8 @@ msgstr "프로젝트 파일을 열 때 기본 동작 " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "항상 물어보기" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2919,77 +3129,75 @@ msgstr "프로파일을 변경하고 다른 프로파일로 전환하면 수정 #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "프로파일 덮어쓰기" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "보안" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Cura가 프로그램이 시작될 때 업데이트를 확인할까요?" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "시작시 업데이트 확인" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(익명) 프린터 정보 보내기" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "추가 정보" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "실험적 설정" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "다수의 빌드 플레이트 사용하기" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "다수의 빌드 플레이트 사용하기(다시 시작해야 합니다)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "새롭게 로드한 모델을 빌드 플레이트에 정렬할까요? 다수의 빌드 플레이트 사용(실험적 설정)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "로드 중인 대상물을 정렬하지 마십시오" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "프린터" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "활성화" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3033,7 +3241,7 @@ msgid "Aborting print..." msgstr "프린팅 중단 중 ..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "프로파일" @@ -3048,18 +3256,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "복제" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "가져오기" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "내보내기" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3070,18 +3266,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "프로파일 복제하기" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "제거 확인" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3102,96 +3286,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "프린터: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "보호 된 프로파일" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "사용자 정의 프로파일" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "현재 설정 / 재정의 프로파일 업데이트" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "현재 변경 사항 삭제" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "현재 설정이 선택한 프로파일과 일치합니다." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "전역 설정" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "재료" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "생성" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "복제" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "재료 가져 오기" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "재료를 가져올 수 없습니다" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "재료를 성공적으로 가져왔습니다" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "재료 내보내기" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "재료를 내보내는데 실패했습니다" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "재료를 성공적으로 내보냈습니다" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "프린터" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "프린터 추가" @@ -3206,6 +3337,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "프린터 추가" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3226,7 +3362,9 @@ 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.에 의해 개발되었습니다.\nCura는 다음의 오픈 소스 프로젝트를 사용합니다:" +msgstr "" +"Cura는 커뮤니티와 공동으로 Ultimaker B.V.에 의해 개발되었습니다.\n" +"Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118 msgctxt "@label" @@ -3339,7 +3477,10 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n\n프로파일 매니저를 열려면 클릭하십시오." +msgstr "" +"일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n" +"\n" +"프로파일 매니저를 열려면 클릭하십시오." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3356,33 +3497,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "변경된 사항을 모든 익스트루더에 복사" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "이 설정 숨기기" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "이 설정을 표시하지 않음" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "이 설정을 계속 표시하십시오" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "설정 보기..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "모두 축소" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "모두 확장" @@ -3393,7 +3534,10 @@ msgid "" "Some hidden settings use values different from their normal calculated value.\n" "\n" "Click to make these settings visible." -msgstr "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n\n이 설정을 표시하려면 클릭하십시오." +msgstr "" +"일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n" +"\n" +"이 설정을 표시하려면 클릭하십시오." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3421,7 +3565,10 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "이 설정에는 프로파일과 다른 값이 있습니다.\n\n프로파일 값을 복원하려면 클릭하십시오." +msgstr "" +"이 설정에는 프로파일과 다른 값이 있습니다.\n" +"\n" +"프로파일 값을 복원하려면 클릭하십시오." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3429,7 +3576,10 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n\n계산 된 값을 복원하려면 클릭하십시오." +msgstr "" +"이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n" +"\n" +"계산 된 값을 복원하려면 클릭하십시오." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3467,7 +3617,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "연결된 프린터에 사용자 정의 G 코드 명령을 보냅니다. ‘Enter’키를 눌러 명령을 전송하십시오." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "익스트루더" @@ -3520,7 +3670,7 @@ msgid "The nozzle inserted in this extruder." msgstr "이 익스트루더에 삽입 된 노즐." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "빌드 플레이트" @@ -3545,6 +3695,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3637,40 +3802,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "프린팅 설정 사용 안 함\nG-코드 파일은 수정할 수 없습니다" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00시간 00분" +msgstr "" +"프린팅 설정 사용 안 함\n" +"G-코드 파일은 수정할 수 없습니다" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "시간 사양" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "비용 사양" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "총계:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3681,29 +3821,29 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "사용자 정의 프린팅 설정

미세하게 슬라이싱 설정을 조절하여 프린팅하십시오." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "활성화된 프린트" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "작업 이름" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "프린팅 시간" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "예상 남은 시간" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" +msgid "Toggle Full Screen" msgstr "전채 화면 전환" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 @@ -3723,28 +3863,28 @@ msgstr "종료(&Q)" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "3D 보기(&3)" +msgid "3D View" +msgstr "3D 보기" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "앞에서 보기(&F)" +msgid "Front View" +msgstr "앞에서 보기" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "위에서 보기(&T)" +msgid "Top View" +msgstr "위에서 보기" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "왼쪽에서 보기(&L)" +msgid "Left Side View" +msgstr "왼쪽에서 보기" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "오른쪽에서 보기(&R)" +msgid "Right Side View" +msgstr "오른쪽에서 보기" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3798,185 +3938,184 @@ msgstr "버그 리포트" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." +msgid "About..." msgstr "소개..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" msgstr[0] "선택한 모델 삭제" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "선택한 모델 중심에 놓기" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "선택한 모델 복제" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "모델 삭제" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "플랫폼중심에 모델 위치하기" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "모델 그룹화" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "모델 그룹 해제" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "모델 합치기" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "모델 복제..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" +msgid "Select All Models" msgstr "모든 모델 선택" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" +msgid "Clear Build Plate" msgstr "빌드 플레이트 지우기" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" +msgid "Reload All Models" msgstr "모든 모델 다시 로드" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "모든 모델을 모든 빌드 플레이트에 정렬" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "모든 모델 정렬" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "선택한 모델 정렬" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "모든 모델의 위치 재설정" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" +msgid "Reset All Model Transformations" msgstr "모든 모델의 변환 재설정" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "파일 열기..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "새로운 프로젝트..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "엔진 로그 표시..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "설정 폴더 표시" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "패키지 찾아보기..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "사이드바 확장/축소" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "3D 모델을 로드하십시오" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "슬라이스 준비 완료" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "슬라이싱..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "%1 준비 완료" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "슬라이스 할 수 없음" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "슬라이스 사용 불가" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "현재 프린트작업 슬라이스" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "슬라이싱 프로세스 취소" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "준비" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "취소" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "활성 출력 장치 선택" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "파일 열기" @@ -3996,129 +4135,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "파일" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "선택 사항을 파일에 저장" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "다른 이름으로 저장..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "프로젝트 저장(&P)..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "편집" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "보기" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "설정" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "프린터" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "재료" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "활성 익스트루더로 설정" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "익스트루더 사용" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "익스트루더 사용하지 않음" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "빌드 플레이트(&B)" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "프로파일" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "확장 프로그램" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "도구 상자" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "환경설정" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "도움말" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "다시 시작한 후에 이 패키지가 설치됩니다." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "파일 열기" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "설정" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "새 프로젝트" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "패키지 설치" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "파일 열기" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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-코드 파일을 열려면 하나만 선택하십시오." @@ -4128,112 +4283,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "프로젝트 저장" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "빌드 플레이트" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "%1익스트루더" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & 재료" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "프로젝트 요약을 다시 저장하지 마십시오" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "저장" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "레이어 높이" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "이 품질 프로파일은 현재 재료 및 노즐 설정에 사용할 수 없습니다. 이 품질 프로파일을 사용하려면 이 값을 변경하십시오" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "사용자 지정 프로파일이 현재 활성 상태입니다. 품질 슬라이더를 실행하려면 사용자 지정 탭에서 기본 품질 프로파일을 선택하십시오" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "프린팅 속도" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "천천히" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "빨리" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "일부 프로파일 설정을 수정했습니다. 이러한 설정을 변경하려면 사용자 지정 모드로 이동하십시오." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "내부채움" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 msgctxt "@label" msgid "Gradual infill will gradually increase the amount of infill towards the top." msgstr "점차적인 내부채움은 점차적으로 빈 공간 채우기의 양을 증가시킵니다." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "점진적으로 사용" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "서포트 생성" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "서포트에 사용할 익스트루더를 선택하십시오. 이렇게 하면 모형 아래에 지지 구조가 만들어져 모델이 중간 공기에서 처지거나 프린팅되는 것을 방지합니다." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "빌드 플레이트 고정" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "프린팅물 개선에 도움이 필요하십니까?Ultimaker Troubleshooting Guides 읽기" @@ -4279,22 +4434,22 @@ msgctxt "@label" msgid "Printer type" msgstr "프린터 유형" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "재료" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "이 재료 조합과 함께 접착 시트 또는 접착제를 사용하십시오" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "호환성 확인" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Ultimaker.com의 재료 호환성을 확인하려면 클릭하십시오." @@ -4384,16 +4539,6 @@ msgctxt "name" msgid "God Mode" msgstr "God 모드" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "G-코드를 받아서 WiFi를 통해 Doodle3D WiFi-Box로 보냅니다." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle 3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4474,16 +4619,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "준비 단계" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "직접 스크립트 편집을 위한 편집창 제공." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "라이브 스크립팅 도구" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4594,16 +4729,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "레거시 Cura 프로파일 리더" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Cura에서 직접 Blender 파일을 열도록 도와줍니다." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Blender 통합(실험 중)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4654,6 +4779,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "2.7에서 3.0으로 버전 업그레이드" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4764,6 +4899,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura 프로파일 작성자" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "재료 제조사가 드롭 인 UI를 사용하여 새로운 재료와 품질 프로파일을 만들 수 있게 합니다." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "프린트 프로파일 어시스턴트" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4794,6 +4939,218 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Cura 프로파일 리더" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box로 프린팅" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box로 프린팅" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Doodle3D Connect에 연결" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Doodle3D Connect에 데이터 보내기" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Doodle3D Connect에 데이터를 보낼 수 없습니다. 다른 작업이 진행중인가요?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Doodle3D Connect에 데이터 저장" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Doodle3D Connect에 파일 전송" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Connect 열기..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Doodle3D Connect 웹 인터페이스 열기" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Blender 파일" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "\"{}\" 품질을 사용하여 내보낼 수 없습니다!\n" +#~ " \"{}\"(으)로 돌아갑니다." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "연락처" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "이 프린터는 Ultimaker 3 프린터 그룹을 호스트하도록 설정되지 않았습니다." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "이 프린터는 1% Ultimaker 3 프린터 그룹의 호스트입니다." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1은 연결된 Ultimaker 3에 연결된 프린터 그룹을 호스트하도록 설정되지 않았습니다" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "프린터 추가/제거" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "프린팅 작업 페이지를 기본 웹 브라우저로 엽니다." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "프린팅 작업보기" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "프린팅 준비" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "프린팅" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "유효한" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "프린터와의 연결이 끊어졌습니다" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "사용불가" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "알 수 없음" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "사용 중지됨" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "예약된" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "프린팅 준비" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "프린터가 중단됨" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "프린팅 작업을 수락하지 않음" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "종료시간 : " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "빌드 플레이트를 정리하십시오" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "설정 변경 대기중" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "프린팅 작업" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "프린터" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "프린터 보기" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "중지" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "재개" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "프린팅 중단" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "항상 물어보기" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "프로파일 덮어쓰기" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "새롭게 로드한 모델을 빌드 플레이트에 정렬할까요? 다수의 빌드 플레이트 사용(실험적 설정)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "로드 중인 대상물을 정렬하지 마십시오" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "선택 사항을 파일에 저장" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "다른 이름으로 저장..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "프로젝트 저장(&P)..." + +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "이 재료 조합과 함께 접착 시트 또는 접착제를 사용하십시오" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "G-코드를 받아서 WiFi를 통해 Doodle3D WiFi-Box로 보냅니다." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle 3D WiFi-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "직접 스크립트 편집을 위한 편집창 제공." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "라이브 스크립팅 도구" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Cura에서 직접 Blender 파일을 열도록 도와줍니다." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Blender 통합(실험 중)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "모델 검사기 경고" @@ -5061,10 +5418,6 @@ msgstr "Cura 프로파일 리더" #~ msgid "Browse plugins..." #~ msgstr "플러그인 찾아보기..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "빌드 플레이트(&B)" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "플러그인" @@ -5290,14 +5643,6 @@ msgstr "Cura 프로파일 리더" #~ "\n" #~ "죄송합니다!" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "프로파일 어시스턴트" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "프로파일 어시스턴트" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "로드 된 재료가 없음" @@ -5428,14 +5773,6 @@ msgstr "Cura 프로파일 리더" #~ msgid "Configure setting visiblity..." #~ msgstr "표시 설정..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "자동: %1" @@ -5472,14 +5809,6 @@ msgstr "Cura 프로파일 리더" #~ msgid "GCode Profile Reader" #~ msgstr "GCode 프로파일 리더" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "재료 제조사가 드롭 인 UI를 사용하여 새로운 재료와 품질 프로파일을 만들 수 있게 합니다." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "프린트 프로파일 어시스턴트" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "SolidWorks 파일을 여는 중 오류가 발생했습니다! 문제없이 SolidWorks에서 파일을 열 수 있는지 확인하십시오" @@ -5675,10 +6004,6 @@ msgstr "Cura 프로파일 리더" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "이 프린터는 Ultimaker 3에 연결된 프린터 그룹의 호스트입니다" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "준비중인" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "완료일: " diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index bee8d815f4..047515e962 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-19 13:27+0900\n" "Last-Translator: Jinbuhm Kim \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 381fc58c15..8ae7eb2b57 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-19 13:26+0900\n" "Last-Translator: Jinbuhm Kim \n" "Language-Team: Jinbum Kim , Korean \n" @@ -58,7 +58,9 @@ 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" @@ -70,7 +72,9 @@ 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" @@ -82,6 +86,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "재료의 GUID. 자동으로 설정됩니다. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1057,6 +1071,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "지그재그" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1137,6 +1161,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "이미 벽이있는 곳에 프린팅되는 내부 벽 부분에 대한 흐름을 보정하십시오." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1502,11 +1546,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "동심원" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "동심원 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1532,6 +1571,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1562,6 +1611,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1872,16 +1943,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "첫 번째 레이어에서 가열 된 빌드 플레이트에 사용되는 온도." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2719,8 +2780,8 @@ msgstr "Combing 모드" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "빗질은 여행 할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 여행 이동이 약간 더 길어 지지만 수축의 필요성은 줄어 듭니다. 빗질이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 infill 내에서만 빗질하여 상 / 하 피부 영역을 빗질하는 것을 피할 수 있습니다." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2737,6 +2798,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "스킨에 없음" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3117,11 +3183,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "동심원의" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "동심원 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3182,6 +3243,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3472,11 +3553,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "동심원의" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "동심원 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3512,11 +3588,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "동심원의" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "동심원의 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3552,16 +3623,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "동심원의" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "동심원 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "지그재그" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3712,7 +3798,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다.\n이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." +msgstr "" +"프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다.\n" +"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -3886,8 +3974,8 @@ msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이 #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "래프트 선 간격" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4104,16 +4192,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "프라임 타워 두께" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "속이 빈 프라임 타워의 두께. 프라임 타워의 최소 볼륨의 절반보다 큰 두께는 조밀 한 소수 타워가 됩니다." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4154,26 +4232,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "전환 후 노즐 닦기" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "익스트루더를 전환한 후, 프린팅을 한 노즐에서 흐르는 재료를 닦아냅니다. 이렇게 하면 흘러 나온 물질이 출력물의 표면 품질에 영향을 주지 않는 위치에서 천천히 닦아줍니다." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "프라임 타워 퍼지 볼륨" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "프라임 타워에서 닦을 때 제거 할 필라멘트의 양. 퍼지는 노즐이 작동하지 않을 때 새어 나온 필라멘트를 보정하는 데 유용합니다." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4659,6 +4717,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5316,6 +5384,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "더 작은 레이어를 사용할지 여부에 대한 임계 값. 이 숫자는 레이어의 가장 급한 경사의 탄젠트와 비교됩니다." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5346,16 +5434,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "브리지 벽 최대 오버행" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "브릿지 설정을 사용하여 벽을 인쇄하기 전에 벽 선 아래의 에어영역의 최대 허용 폭. 벽 선 너비의 백분율로 표시됩니다. 에어 갭이 이보다 넓은 경우 브리지 설정을 사용하여 벽 선이 인쇄됩니다. 그렇지 않으면 벽 선이 일반 설정을 사용하여 인쇄됩니다. 값이 낮을수록 브릿지 설정을 사용하여 오버행 된 벽 선이 인쇄 될 가능성이 높아집니다." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5576,6 +5654,66 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "동심원 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "빗질은 여행 할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 여행 이동이 약간 더 길어 지지만 수축의 필요성은 줄어 듭니다. 빗질이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 infill 내에서만 빗질하여 상 / 하 피부 영역을 빗질하는 것을 피할 수 있습니다." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "동심원 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "동심원 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "동심원의 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "동심원 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "래프트 선 간격" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "프라임 타워 두께" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "속이 빈 프라임 타워의 두께. 프라임 타워의 최소 볼륨의 절반보다 큰 두께는 조밀 한 소수 타워가 됩니다." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "전환 후 노즐 닦기" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "익스트루더를 전환한 후, 프린팅을 한 노즐에서 흐르는 재료를 닦아냅니다. 이렇게 하면 흘러 나온 물질이 출력물의 표면 품질에 영향을 주지 않는 위치에서 천천히 닦아줍니다." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "프라임 타워 퍼지 볼륨" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "프라임 타워에서 닦을 때 제거 할 필라멘트의 양. 퍼지는 노즐이 작동하지 않을 때 새어 나온 필라멘트를 보정하는 데 유용합니다." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "브리지 벽 최대 오버행" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "브릿지 설정을 사용하여 벽을 인쇄하기 전에 벽 선 아래의 에어영역의 최대 허용 폭. 벽 선 너비의 백분율로 표시됩니다. 에어 갭이 이보다 넓은 경우 브리지 설정을 사용하여 벽 선이 인쇄됩니다. 그렇지 않으면 벽 선이 일반 설정을 사용하여 인쇄됩니다. 값이 낮을수록 브릿지 설정을 사용하여 오버행 된 벽 선이 인쇄 될 가능성이 높아집니다." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "리트렉션 및 이동 거리를 줄이도록 벽이 프린팅되는 순서를 최적화하십시오. 대부분 이 기능을 사용하면 도움이되지만, 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부에 관계없이 프린팅 시간을 비교하십시오." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 20b285168b..165d26a8fc 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Dutch\n" @@ -38,6 +38,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code-bestand" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -51,80 +62,23 @@ msgid "" "

{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

" +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/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Printen via Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Printen via Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Verbinding maken met Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuleren" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "De gegevens worden naar Doodle3D Connect verzonden" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Kan geen gegevens naar Doodle3D Connect verzenden. Is er nog een andere taak actief?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Gegevens op Doodle3D Connect opslaan" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Het bestand is naar Doodle3D Connect verzonden" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Connect openen..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "De Doodle3D Connect-webinterface openen" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Wijzigingenlogboek Weergeven" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Actieve instellingen vlakken" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "Profiel is gevlakt en geactiveerd." @@ -149,6 +103,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Aangesloten via USB" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -171,6 +130,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Gecomprimeerd G-code-bestand" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -193,7 +157,7 @@ msgid "Save to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Er zijn geen bestandsindelingen beschikbaar om te schrijven!" @@ -232,7 +196,7 @@ msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Fout" @@ -261,8 +225,8 @@ msgstr "Verwisselbaar station {0} uitwerpen" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Waarschuwing" @@ -289,212 +253,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Verwisselbaar Station" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Printen via netwerk" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Printen via netwerk" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Via het netwerk verbonden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Via het netwerk verbonden. Keur de aanvraag goed op de printer." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Via het netwerk verbonden. Kan de printer niet beheren." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Er is een toegangsaanvraag voor de printer verstuurd. Keur de aanvraag goed op de printer" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Verificatiestatus" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Verificatiestatus" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Opnieuw proberen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "De toegangsaanvraag opnieuw verzenden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Toegang tot de printer is geaccepteerd" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Kan geen toegang verkrijgen om met deze printer te printen. Kan de printtaak niet verzenden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Toegang aanvragen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Toegangsaanvraag naar de printer verzenden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Er kan geen nieuwe taak worden gestart." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Er is een probleem met de configuratie van de Ultimaker waardoor het niet mogelijk is het printen te starten. Los het probleem op voordat u verder gaat." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "De configuratie komt niet overeen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Weet u zeker dat u met de geselecteerde configuratie wilt printen?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "De configuratie of kalibratie van de printer komt niet overeen met de configuratie van Cura. Slice voor het beste resultaat altijd voor de PrintCores en materialen die in de printer zijn ingevoerd." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Het verzenden van nieuwe taken is (tijdelijk) geblokkeerd. Nog bezig met het verzenden van de vorige printtaak." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "De gegevens worden naar de printer verzonden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Gegevens Verzenden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuleren" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Er is geen PrintCore geladen in de sleuf {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Er is geen materiaal geladen in de sleuf {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "Er is een afwijkende PrintCore (Cura: {cura_printcore_name}, printer: {remote_printcore_name}) geselecteerd voor de extruder {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Afwijkend materiaal (Cura: {0}, Printer: {1}) geselecteerd voor de extruder {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Synchroniseren met de printer" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Wilt u uw huidige printerconfiguratie gebruiken in Cura?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "De PrintCores en/of materialen in de printer wijken af van de PrintCores en/of materialen in uw huidige project. Slice voor het beste resultaat altijd voor de PrintCores en materialen die in de printer zijn ingevoerd." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Via het netwerk verbonden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "De printtaak is naar de printer verzonden." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Gegevens verzonden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "In monitor weergeven" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "Printer '{printer_name}' is klaar met het printen van '{job_name}'." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "De printtaak '{job_name}' is voltooid." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Print klaar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Verbinding Maken via Netwerk" @@ -504,24 +483,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controleren" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "Er zijn nieuwe functies beschikbaar voor uw {machine_name}! Het wordt aanbevolen de firmware van uw printer bij te werken." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, 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/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Instructies voor bijwerken" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Geen toegang tot update-informatie." @@ -531,17 +510,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Laagweergave" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "Als draadprinten is ingeschakeld, geeft Cura lagen niet nauwkeurig weer" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Simulatieweergave" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "G-code wijzigen" @@ -555,32 +534,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Maak een volume waarin supportstructuren niet worden geprint." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura verzamelt geanonimiseerde gebruiksstatistieken." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Gegevens verzamelen" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Meer informatie" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Lees meer over welke gegevens Cura verzendt." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Toestaan" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Cura toestaan geanonimiseerde gebruiksstatistieken te verzenden om toekomstige verbeteringen aan Cura te helpen prioriteren. Onder de verzonden gegevens bevindt zich informatie over uw voorkeuren en instellingen, de Cura-versie en een selectie van de modellen die u slicet." @@ -590,18 +569,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Cura 15.04-profielen" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Blender-bestand" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "Kan niet exporteren met de kwaliteit \"{}\"!\nInstelling teruggezet naar \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -627,49 +594,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF-afbeelding" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Kan niet slicen" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Er valt niets te slicen omdat geen van de modellen in het bouwvolume past. Schaal of roteer de modellen totdat deze passen." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Lagen verwerken" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Informatie" @@ -696,18 +670,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Aangepast" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-bestand" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Nozzle" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -718,18 +703,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "G-bestand" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "G-code parseren" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "Details van de G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -740,16 +725,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-profiel" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Profielassistent" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Profielassistent" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MF-bestand" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-project 3MF-bestand" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -831,19 +831,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Onbekend" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Vooraf geslicet bestand {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "Het Bestand Bestaat Al" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -855,23 +855,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Niet overschreven" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "Het geselecteerde materiaal is niet compatibel met de geselecteerde machine of configuratie." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Niet-compatibel materiaal" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van de extruders: [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "De instellingen zijn bijgewerkt" @@ -954,13 +954,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Er ontbreekt een kwaliteitstype in het profiel." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Kan geen kwaliteitstype {0} vinden voor de huidige configuratie." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -987,42 +987,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Bestanden (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Aangepast materiaal" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Aangepast" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Werkvolume" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kan geen archief maken van gegevensmap van gebruiker: {}" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Back-up" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 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/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "Geprobeerd een Cura-back-up te herstellen die niet overeenkomt met uw huidige versie." @@ -1033,32 +1033,32 @@ msgid "Multiplying and placing objects" msgstr "Objecten verveelvoudigen en plaatsen" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Object plaatsen" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Nieuwe locatie vinden voor objecten" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Locatie vinden" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Kan locatie niet vinden" @@ -1076,7 +1076,12 @@ msgid "" "

Backups can be found in the configuration folder.

\n" "

Please send us this Crash Report to fix the problem.

\n" " " -msgstr "

Oeps, Ultimaker Cura heeft een probleem gedetecteerd.

\n

Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

\n

Back-ups bevinden zich in de configuratiemap.

\n

Stuur ons dit crashrapport om het probleem op te lossen.

\n " +msgstr "" +"

Oeps, Ultimaker Cura heeft een probleem gedetecteerd.

\n" +"

Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

\n" +"

Back-ups bevinden zich in de configuratiemap.

\n" +"

Stuur ons dit crashrapport om het probleem op te lossen.

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102 msgctxt "@action:button" @@ -1109,7 +1114,10 @@ msgid "" "

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

\n" "

Please use the \"Send report\" button to post a bug report automatically to our servers

\n" " " -msgstr "

Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen

\n

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

\n " +msgstr "" +"

Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177 msgctxt "@title:groupbox" @@ -1189,223 +1197,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Rapport verzenden" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Machines laden..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Scene instellen..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Interface laden..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "Het geselecteerde model is te klein om te laden." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Machine-instellingen" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Printer" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Printerinstellingen" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (Breedte)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Diepte)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Hoogte)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Vorm van het platform" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Centraal oorsprongpunt" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Verwarmd bed" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Versie G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Instellingen Printkop" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Afstand van de linkerkant van de printkop tot het midden van de nozzle. Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en de printkop te voorkomen." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Afstand van de voorkant van de printkop tot het midden van de nozzle. Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en de printkop te voorkomen." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X max" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Afstand van de rechterkant van de printkop tot het midden van de nozzle. Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en de printkop te voorkomen." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y max" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Afstand van de achterkant van de printkop tot het midden van de nozzle. Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en de printkop te voorkomen." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Hoogte rijbrug" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as). Wordt tijdens \"een voor een\"-printen gebruikt om botsingen tussen eerder geprinte voorwerpen en het rijbrugsysteem te voorkomen" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Aantal extruders" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "Start G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "G-code-opdrachten die aan het begin worden uitgevoerd." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "Eind G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "G-code-opdrachten die aan het eind worden uitgevoerd." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Nozzle-instellingen" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Maat nozzle" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Compatibele materiaaldiameter" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "De nominale diameter van het filament dat wordt ondersteund door de printer. De exacte diameter wordt overschreven door het materiaal en/of het profiel." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Nozzle-offset X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Nozzle-offset Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "Start-G-code van Extruder" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "Eind-G-code van Extruder" @@ -1425,29 +1433,42 @@ 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Invoegtoepassingen" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materialen" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Versie" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Laatst bijgewerkt" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Auteur" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Onbekend" @@ -1480,16 +1501,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Terug" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Cura sluiten" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1521,7 +1582,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "Deze invoegtoepassing bevat een licentie.\nU moet akkoord gaan met deze licentie om deze invoegtoepassing te mogen installeren.\nGaat u akkoord met de onderstaande voorwaarden?" +msgstr "" +"Deze invoegtoepassing bevat een licentie.\n" +"U moet akkoord gaan met deze licentie om deze invoegtoepassing te mogen installeren.\n" +"Gaat u akkoord met de onderstaande voorwaarden?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1533,12 +1597,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Nee, ik ga niet akkoord" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "Functies" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Compatibiliteit" @@ -1548,10 +1612,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "Packages ophalen..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "Contact" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1565,9 +1634,9 @@ msgstr "Wijzigingenlogboek" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1615,356 +1684,365 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Gebruikersovereenkomst" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Bestaande verbinding" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Deze printer/groep is al aan Cura toegevoegd. Selecteer een andere printer/groep." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Verbinding Maken met Printer in het Netwerk" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" "\n" "Select your printer from the list below:" -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.\n\nSelecteer uw printer in de onderstaande lijst:" +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.\n" +"\n" +"Selecteer uw printer in de onderstaande lijst:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Toevoegen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Bewerken" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Verwijderen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Vernieuwen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Type" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Firmwareversie" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Adres" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Deze printer is niet opgezet om een groep Ultimaker 3 printers te hosten." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Deze printer is de host voor een groep van %1 Ultimaker 3 printers." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "De printer op dit adres heeft nog niet gereageerd." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Verbinden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Printeradres" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Voer het IP-adres of de hostnaam van de printer in het netwerk in." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Printen via netwerk" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Printerselectie" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Printen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 is niet ingesteld voor het hosten van een groep aangesloten Ultimaker 3-printers" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Printers toevoegen/verwijderen" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Hiermee opent u de pagina met printtaken in uw standaard webbrowser." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Printtaken weergeven" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Printen voorbereiden" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Printen" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Beschikbaar" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Verbinding met de printer is verbroken" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Niet beschikbaar" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Onbekend" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Gereserveerd" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Gereed" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Voorbereiden om te printen" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Handeling nodig" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "Gepauzeerd" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Hervatten" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Print afgebroken" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Accepteert geen printtaken" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Klaar om: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Platform leegmaken" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "Wacht op wijziging van configuratie" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Printtaken" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Printen" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "In wachtrij" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Printers" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Printen" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Printers weergeven" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Printen afbreken" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Gereed" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Voorbereiden" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "Gepauzeerd" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Hervatten" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Handeling nodig" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Verbinding maken met een printer" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "De configuratie van de printer in Cura laden" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Configuratie Activeren" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Kleurenschema" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Materiaalkleur" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Lijntype" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Doorvoersnelheid" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Laagdikte" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Compatibiliteitsmodus" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Bewegingen weergeven" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Helpers weergeven" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Shell weergeven" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Vulling weergeven" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Alleen bovenlagen weergegeven" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "5 gedetailleerde lagen bovenaan weergeven" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Boven-/onderkant" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Binnenwand" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "min." -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "max." @@ -2084,53 +2162,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Effenen" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Rastertype" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Normaal model" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Printen als supportstructuur" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Supportstructuur niet laten overlappen met andere modellen" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Instellingen aanpassen voor overlapping met andere modellen" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Instellingen aanpassen voor vulling van andere modellen" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Instellingen selecteren" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Instellingen Selecteren om Dit Model Aan te Passen" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filteren..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Alles weergeven" @@ -2152,13 +2230,13 @@ msgid "Create new" msgstr "Nieuw maken" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Samenvatting - Cura-project" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Printerinstellingen" @@ -2175,7 +2253,7 @@ msgid "Update" msgstr "Bijwerken" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Type" @@ -2186,7 +2264,7 @@ msgid "Printer Group" msgstr "Printergroep" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Profielinstellingen" @@ -2198,19 +2276,19 @@ msgstr "Hoe dient het conflict in het profiel te worden opgelost?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Naam" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Niet in profiel" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2240,7 +2318,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Hoe dient het materiaalconflict te worden opgelost?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Zichtbaarheid instellen" @@ -2251,13 +2329,13 @@ msgid "Mode" msgstr "Modus" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Zichtbare instellingen:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 van %2" @@ -2272,6 +2350,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Openen" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Exporteren" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00u 00min" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Kostenspecificatie" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Totaal:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1 m / ~ %2 g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1 m / ~ %2 g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2490,26 +2644,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Verwijder de print" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Pauzeren" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Hervatten" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Printen Afbreken" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Printen afbreken" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2526,7 +2664,9 @@ msgctxt "@text:window" msgid "" "You have customized some profile settings.\n" "Would you like to keep or discard those settings?" -msgstr "U hebt enkele profielinstellingen aangepast.\nWilt u deze instellingen behouden of verwijderen?" +msgstr "" +"U hebt enkele profielinstellingen aangepast.\n" +"Wilt u deze instellingen behouden of verwijderen?" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110 msgctxt "@title:column" @@ -2544,19 +2684,17 @@ msgid "Customized" msgstr "Aangepast" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Altijd vragen" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Verwijderen en nooit meer vragen" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Behouden en nooit meer vragen" @@ -2576,101 +2714,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Nieuw profiel maken" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Informatie" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Diameterwijziging bevestigen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Naam" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Merk" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Type Materiaal" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Kleur" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Eigenschappen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Dichtheid" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Diameter" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Kostprijs Filament" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Gewicht filament" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Lengte filament" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Kostprijs per meter" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Materiaal ontkoppelen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Beschrijving" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Gegevens Hechting" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Instellingen voor printen" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Activeren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Maken" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Dupliceren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Importeren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Printer" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Verwijderen Bevestigen" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Materiaal Importeren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Materiaal %1 is geïmporteerd" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Materiaal Exporteren" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Materiaal is geëxporteerd naar %1" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2707,7 +2917,7 @@ msgid "Unit" msgstr "Eenheid" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Algemeen" @@ -2899,8 +3109,8 @@ msgstr "Standaardgedrag tijdens het openen van een projectbestand: " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Altijd vragen" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2919,77 +3129,75 @@ msgstr "Wanneer u wijzigingen hebt aangebracht aan een profiel en naar een ander #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Profiel overschrijven" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Privacy" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Bij starten op updates controleren" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(Anonieme) printgegevens verzenden" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Meer informatie" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Experimenteel" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Functionaliteit voor meerdere platformen gebruiken" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Functionaliteit voor meerdere platformen gebruiken (opnieuw opstarten vereist)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "Moeten nieuw geladen modellen op het platform worden geschikt? Gebruikt in combinatie met meerdere platformen (EXPERIMENTEEL)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Objecten niet schikken na laden" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Printers" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activeren" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3033,7 +3241,7 @@ msgid "Aborting print..." msgstr "Printen afbreken..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Profielen" @@ -3048,18 +3256,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Dupliceren" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Importeren" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Exporteren" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3070,18 +3266,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Profiel Dupliceren" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Verwijderen Bevestigen" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3102,96 +3286,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Printer: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Beschermde profielen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Aangepaste profielen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Profiel bijwerken met huidige instellingen/overschrijvingen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Huidige wijzigingen verwijderen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Uw huidige instellingen komen overeen met het geselecteerde profiel." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Algemene Instellingen" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materialen" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Maken" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Dupliceren" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Materiaal Importeren" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiaal %1 is geïmporteerd" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Materiaal Exporteren" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiaal is geëxporteerd naar %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Printer" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Printer Toevoegen" @@ -3206,6 +3337,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Printer Toevoegen" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3226,7 +3362,9 @@ 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 is ontwikkeld door Ultimaker B.V. in samenwerking met de community.\nCura maakt met trots gebruik van de volgende opensourceprojecten:" +msgstr "" +"Cura is ontwikkeld door Ultimaker B.V. in samenwerking met de community.\n" +"Cura maakt met trots gebruik van de volgende opensourceprojecten:" #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118 msgctxt "@label" @@ -3339,7 +3477,10 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen.\n\nKlik om het profielbeheer te openen." +msgstr "" +"Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen.\n" +"\n" +"Klik om het profielbeheer te openen." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3356,33 +3497,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Alle gewijzigde waarden naar alle extruders kopiëren" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Deze instelling verbergen" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Deze instelling verbergen" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Deze instelling zichtbaar houden" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Zichtbaarheid Instelling Configureren..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Alles samenvouwen" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Alles uitvouwen" @@ -3393,7 +3534,10 @@ 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\nKlik om deze instellingen zichtbaar te maken." +msgstr "" +"Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde.\n" +"\n" +"Klik om deze instellingen zichtbaar te maken." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3421,7 +3565,10 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "Deze instelling heeft een andere waarde dan in het profiel.\n\nKlik om de waarde van het profiel te herstellen." +msgstr "" +"Deze instelling heeft een andere waarde dan in het profiel.\n" +"\n" +"Klik om de waarde van het profiel te herstellen." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3429,7 +3576,10 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde.\n\nKlik om de berekende waarde te herstellen." +msgstr "" +"Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde.\n" +"\n" +"Klik om de berekende waarde te herstellen." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3467,7 +3617,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Verzend een aangepaste G-code-opdracht naar de verbonden printer. Druk op Enter om de opdracht te verzenden." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Extruder" @@ -3520,7 +3670,7 @@ msgid "The nozzle inserted in this extruder." msgstr "De nozzle die in deze extruder geplaatst is." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Platform" @@ -3545,6 +3695,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3639,40 +3804,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "Instelling voor printen uitgeschakeld\nG-code-bestanden kunnen niet worden aangepast" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00u 00min" +msgstr "" +"Instelling voor printen uitgeschakeld\n" +"G-code-bestanden kunnen niet worden aangepast" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Tijdspecificatie" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Kostenspecificatie" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Totaal:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3683,30 +3823,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Aangepaste instellingen voor printen

Print met uiterst precieze controle over elk detail van het slice-proces." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Actieve print" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Taaknaam" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Printtijd" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Geschatte resterende tijd" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "Vo&lledig Scherm In-/Uitschakelen" +msgid "Toggle Full Screen" +msgstr "Volledig Scherm In-/Uitschakelen" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3725,28 +3865,28 @@ msgstr "&Afsluiten" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "&3D-weergave" +msgid "3D View" +msgstr "3D-weergave" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "Weergave &voorzijde" +msgid "Front View" +msgstr "Weergave voorzijde" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "Weergave &bovenzijde" +msgid "Top View" +msgstr "Weergave bovenzijde" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "Weergave &linkerzijde" +msgid "Left Side View" +msgstr "Weergave linkerzijde" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "Weergave &rechterzijde" +msgid "Right Side View" +msgstr "Weergave rechterzijde" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3800,188 +3940,187 @@ msgstr "Een &Bug Rapporteren" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "&Over..." +msgid "About..." +msgstr "Over..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "Ge&selecteerd model verwijderen" -msgstr[1] "Ge&selecteerde modellen verwijderen" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Geselecteerd model verwijderen" +msgstr[1] "Geselecteerde modellen verwijderen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Geselecteerd model centreren" msgstr[1] "Geselecteerde modellen centreren" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Geselecteerd model verveelvoudigen" msgstr[1] "Geselecteerde modellen verveelvoudigen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Model Verwijderen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Model op Platform Ce&ntreren" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Modellen &Groeperen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Groeperen van Modellen Opheffen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Modellen Samen&voegen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Model verveelvoudigen..." +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Alle Modellen Selecteren" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "Alle Modellen &Selecteren" +msgid "Clear Build Plate" +msgstr "Platform Leegmaken" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&Platform Leegmaken" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "Alle Modellen Opnieuw &Laden" +msgid "Reload All Models" +msgstr "Alle Modellen Opnieuw Laden" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "Alle modellen schikken op alle platformen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Alle modellen schikken" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Selectie schikken" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Alle Modelposities Herstellen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "Alle Model&transformaties Herstellen" +msgid "Reset All Model Transformations" +msgstr "Alle Modeltransformaties Herstellen" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Bestand(en) &openen..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nieuw project..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Engine-&logboek Weergeven..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Open Configuratiemap" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Door packages bladeren..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Zijbalk uitbreiden/samenvouwen" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Laad een 3D-model" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Gereed om te slicen" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicen..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Gereed voor %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Kan Niet Slicen" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Slicen is niet beschikbaar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Huidige printtaak slicen" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Slicen annuleren" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Voorbereiden" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Annuleren" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Actief Uitvoerapparaat Selecteren" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Bestand(en) openen" @@ -4001,129 +4140,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Bestand" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "&Selectie Opslaan naar Bestand" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Opslaan &als..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "&Project opslaan..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "B&ewerken" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "Beel&d" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "In&stellingen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Printer" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Materiaal" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Instellen als Actieve Extruder" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Extruder inschakelen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Extruder uitschakelen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "&Platform" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Profiel" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensies" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "Werkse&t" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Voo&rkeuren" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Help" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Dit package wordt na opnieuw starten geïnstalleerd." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Bestand Openen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Instellingen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Nieuw project" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Package installeren" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Bestand(en) openen" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4133,112 +4288,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Project opslaan" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Platform" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extruder %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 &materiaal" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Bij opnieuw opslaan projectsamenvatting niet weergeven" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Opslaan" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Laaghoogte" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Dit kwaliteitsprofiel is niet beschikbaar voor uw huidige materiaal- en nozzleconfiguratie. Breng hierin wijzigingen aan om gebruik van dit kwaliteitsprofiel mogelijk te maken" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "Er is momenteel een aangepast profiel actief. Als u de kwaliteitsschuifregelaar wilt gebruiken, kiest u een standaard kwaliteitsprofiel op het tabblad Aangepast" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Printsnelheid" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Langzamer" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Sneller" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Vulling" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Geleidelijke vulling" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Support genereren" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Selecteren welke extruder voor support wordt gebruikt. Deze optie zorgt ervoor dat onder het model ondersteuning wordt geprint, om te voorkomen dat dit doorzakt of dat er midden in de lucht moet worden geprint." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Hechting aan platform" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Hebt u hulp nodig om betere prints te krijgen?
Lees de Ultimaker Troubleshooting Guides (Handleiding voor probleemoplossing)" @@ -4285,23 +4440,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Type printer" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Materiaal" -# Added after the string freeze. -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Gebruik een hechtingsvel of lijm met deze materiaalcombinatie" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Compatibiliteit controleren" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Klik om de materiaalcompatibiliteit te controleren op Ultimaker.com." @@ -4391,16 +4545,6 @@ msgctxt "name" msgid "God Mode" msgstr "Godmodus" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Accepteert G-code en verzendt deze code via wifi naar een Doodle3D WiFi-Box." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4481,16 +4625,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Stadium voorbereiden" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Deze optie biedt een bewerkingsvenster voor rechtstreeks bewerken van scripts." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Gereedschap voor live uitvoeren van scripts" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4601,16 +4735,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Lezer voor Profielen van oudere Cura-versies" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Hiermee kunnen Blender-bestanden rechtstreeks in Cura worden geopend." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Blender-integratie (experimenteel)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4661,6 +4785,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Versie-upgrade van 2.7 naar 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4771,6 +4905,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura-profielschrijver" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Maakt het fabrikanten mogelijk nieuwe materiaal- en kwaliteitsprofielen aan te maken met behulp van een drop-in-gebruikersinterface." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Profielassistent afdrukken" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4801,6 +4945,219 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Cura-profiellezer" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Printen via Doodle3D WiFi-Box" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Printen via Doodle3D WiFi-Box" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Verbinding maken met Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "De gegevens worden naar Doodle3D Connect verzonden" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Kan geen gegevens naar Doodle3D Connect verzenden. Is er nog een andere taak actief?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Gegevens op Doodle3D Connect opslaan" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Het bestand is naar Doodle3D Connect verzonden" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Connect openen..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "De Doodle3D Connect-webinterface openen" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Blender-bestand" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "Kan niet exporteren met de kwaliteit \"{}\"!\n" +#~ "Instelling teruggezet naar \"{}\"." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "Contact" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Deze printer is niet opgezet om een groep Ultimaker 3 printers te hosten." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Deze printer is de host voor een groep van %1 Ultimaker 3 printers." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 is niet ingesteld voor het hosten van een groep aangesloten Ultimaker 3-printers" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Printers toevoegen/verwijderen" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Hiermee opent u de pagina met printtaken in uw standaard webbrowser." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Printtaken weergeven" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Printen voorbereiden" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Printen" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Beschikbaar" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Verbinding met de printer is verbroken" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Niet beschikbaar" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Onbekend" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Uitgeschakeld" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Gereserveerd" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Voorbereiden om te printen" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Print afgebroken" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Accepteert geen printtaken" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Klaar om: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Platform leegmaken" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "Wacht op wijziging van configuratie" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Printtaken" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Printers" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Printers weergeven" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Pauzeren" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Hervatten" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Printen Afbreken" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Altijd vragen" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Profiel overschrijven" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "Moeten nieuw geladen modellen op het platform worden geschikt? Gebruikt in combinatie met meerdere platformen (EXPERIMENTEEL)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Objecten niet schikken na laden" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "&Selectie Opslaan naar Bestand" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Opslaan &als..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "&Project opslaan..." + +# Added after the string freeze. +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Gebruik een hechtingsvel of lijm met deze materiaalcombinatie" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Accepteert G-code en verzendt deze code via wifi naar een Doodle3D WiFi-Box." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Deze optie biedt een bewerkingsvenster voor rechtstreeks bewerken van scripts." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Gereedschap voor live uitvoeren van scripts" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Hiermee kunnen Blender-bestanden rechtstreeks in Cura worden geopend." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Blender-integratie (experimenteel)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Waarschuwing modelcontrole" @@ -5068,10 +5425,6 @@ msgstr "Cura-profiellezer" #~ msgid "Browse plugins..." #~ msgstr "Door invoegtoepassingen bladeren..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Platform" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "&Plugins" @@ -5297,14 +5650,6 @@ msgstr "Cura-profiellezer" #~ "\n" #~ "Sorry." -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Profielassistent" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Profielassistent" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "Geen materiaal ingevoerd" @@ -5435,14 +5780,6 @@ msgstr "Cura-profiellezer" #~ msgid "Configure setting visiblity..." #~ msgstr "Zichtbaarheid van instelling configureren..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 m / ~ %2 g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Automatisch: %1" @@ -5479,14 +5816,6 @@ msgstr "Cura-profiellezer" #~ msgid "GCode Profile Reader" #~ msgstr "G-code-profiellezer" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Maakt het fabrikanten mogelijk nieuwe materiaal- en kwaliteitsprofielen aan te maken met behulp van een drop-in-gebruikersinterface." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Profielassistent afdrukken" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "Er zijn fouten opgetreden tijdens het openen van het SolidWorks-bestand. Controleer of u het bestand zonder problemen in SolidWorks kunt openen." @@ -5683,10 +6012,6 @@ msgstr "Cura-profiellezer" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "Deze printer is de host voor een groep van %1 aaneengesloten Ultimaker 3-printers" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Voorbereiden" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Voltooid op: " diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index 80241171ac..24c5abae55 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\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 038b2a4e56..73c9023c88 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Dutch\n" @@ -56,7 +56,9 @@ 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" @@ -68,7 +70,9 @@ 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" @@ -80,6 +84,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1055,6 +1069,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Zigzag" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1135,6 +1159,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Hiermee wordt de doorvoer gecompenseerd voor delen van binnenwanden die worden geprint op een plek waar zich al een wanddeel bevindt." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1500,11 +1544,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Concentrisch" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrisch 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1530,6 +1569,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Verbindt de uiteinden waar het vulpatroon bij de binnenwand komt, met een lijn die de vorm van de binnenwand volgt. Als u deze instelling inschakelt, kan de vulling beter hechten aan de wanden en wordt de invloed van de vulling op de kwaliteit van de verticale oppervlakken kleiner. Als u deze instelling uitschakelt, wordt er minder materiaal gebruikt." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1560,6 +1609,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de Y-as." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1870,16 +1941,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "De temperatuur van het verwarmde platform voor de eerste laag." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2717,8 +2778,8 @@ msgstr "Combing-modus" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "Met combing blijft de nozzle tijdens bewegingen binnen eerder geprinte delen. Hierdoor zijn de bewegingen iets langer, maar hoeft het filament minder vaak te worden ingetrokken. Als combing is uitgeschakeld, wordt het materiaal ingetrokken en beweegt de nozzle in een rechte lijn naar het volgende punt. Het is ook mogelijk om combing over boven-/onderskingedeelten te voorkomen door alleen combing te gebruiken over de vulling." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2735,6 +2796,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "Niet in skin" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3115,11 +3181,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Concentrisch" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrisch 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3180,6 +3241,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "De afstand tussen de geprinte lijnen van de supportstructuur. Deze instelling wordt berekend op basis van de dichtheid van de supportstructuur." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3470,11 +3551,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Concentrisch" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrisch 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3510,11 +3586,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Concentrisch" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrisch 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3550,16 +3621,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Concentrisch" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concentrisch 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Zigzag" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3710,7 +3796,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "De horizontale afstand tussen de skirt en de eerste laag van de print.\nDit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." +msgstr "" +"De horizontale afstand tussen de skirt en de eerste laag van de print.\n" +"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -3884,8 +3972,8 @@ msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moet #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Tussenruimte Lijnen Raft" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4102,16 +4190,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Het minimale volume voor elke laag van de primepijler om voldoende materiaal te zuiveren." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Dikte primepijler" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "De dikte van de holle primepijler. Een dikte groter dan de helft van het minimale volume van de primepijler leidt tot een primepijler met een hoge dichtheid." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4152,26 +4230,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Veeg na het printen van de primepijler met één nozzle het doorgevoerde materiaal van de andere nozzle af aan de primepijler." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Nozzle vegen na wisselen" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Veeg na het wisselen van de extruder het doorgevoerde materiaal van de nozzle af aan het eerste dat wordt geprint. Hiermee wordt met een langzame beweging het doorgevoerde materiaal veilig afgeveegd op een plek waar dit het minste kwaad kan voor de oppervlaktekwaliteit van de print." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Zuiveringsvolume primepijler" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "De hoeveelheid filament die wordt gezuiverd tijdens afvegen aan de primepijler. Zuiveren wordt gebruikt om filament te compenseren dat tijdens inactiviteit van de nozzle wordt verloren via uitloop." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4657,6 +4715,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Grafiek om de materiaaldoorvoer (in mm3 per seconde) te koppelen aan de temperatuur (graden Celsius)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5167,7 +5235,9 @@ msgctxt "wireframe_up_half_speed description" msgid "" "Distance of an upward move which is extruded with half speed.\n" "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "De afstand van een opwaartse beweging waarbij de doorvoersnelheid wordt gehalveerd.\nHierdoor ontstaat een betere hechting aan voorgaande lagen, zonder dat het materiaal in die lagen te zeer wordt verwarmd. Alleen van toepassing op Draadprinten." +msgstr "" +"De afstand van een opwaartse beweging waarbij de doorvoersnelheid wordt gehalveerd.\n" +"Hierdoor ontstaat een betere hechting aan voorgaande lagen, zonder dat het materiaal in die lagen te zeer wordt verwarmd. Alleen van toepassing op Draadprinten." #: fdmprinter.def.json msgctxt "wireframe_top_jump label" @@ -5314,6 +5384,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "De drempel of er al dan niet een kleinere laag moet worden gebruikt. Deze waarde wordt vergeleken met de waarde van de steilste helling in een laag." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5344,16 +5434,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Als voor een skinregio minder supportstructuur wordt geprint dan dit percentage van zijn oppervlakte, print u dit met de bruginstellingen. Anders wordt er geprint met de normale skininstellingen." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Maximale overhang brugwand" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "De maximaal toegestane breedte van de vrije ruimte onder een wandlijn voordat de wand wordt geprint met de bruginstellingen. Dit wordt uitgedrukt in een percentage van de lijnbreedte van de wand. Als de vrije ruimte breder is dan deze waarde, wordt de wandlijn geprint met de bruginstellingen. Anders wordt de wandlijn geprint met de normale instellingen. Hoe lager de waarde, hoe meer kans dat de overhangende wandlijnen met bruginstellingen worden geprint." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5574,6 +5654,66 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrisch 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "Met combing blijft de nozzle tijdens bewegingen binnen eerder geprinte delen. Hierdoor zijn de bewegingen iets langer, maar hoeft het filament minder vaak te worden ingetrokken. Als combing is uitgeschakeld, wordt het materiaal ingetrokken en beweegt de nozzle in een rechte lijn naar het volgende punt. Het is ook mogelijk om combing over boven-/onderskingedeelten te voorkomen door alleen combing te gebruiken over de vulling." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrisch 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrisch 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrisch 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concentrisch 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Tussenruimte Lijnen Raft" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Dikte primepijler" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "De dikte van de holle primepijler. Een dikte groter dan de helft van het minimale volume van de primepijler leidt tot een primepijler met een hoge dichtheid." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Nozzle vegen na wisselen" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Veeg na het wisselen van de extruder het doorgevoerde materiaal van de nozzle af aan het eerste dat wordt geprint. Hiermee wordt met een langzame beweging het doorgevoerde materiaal veilig afgeveegd op een plek waar dit het minste kwaad kan voor de oppervlaktekwaliteit van de print." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Zuiveringsvolume primepijler" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "De hoeveelheid filament die wordt gezuiverd tijdens afvegen aan de primepijler. Zuiveren wordt gebruikt om filament te compenseren dat tijdens inactiviteit van de nozzle wordt verloren via uitloop." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Maximale overhang brugwand" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "De maximaal toegestane breedte van de vrije ruimte onder een wandlijn voordat de wand wordt geprint met de bruginstellingen. Dit wordt uitgedrukt in een percentage van de lijnbreedte van de wand. Als de vrije ruimte breder is dan deze waarde, wordt de wandlijn geprint met de bruginstellingen. Anders wordt de wandlijn geprint met de normale instellingen. Hoe lager de waarde, hoe meer kans dat de overhangende wandlijnen met bruginstellingen worden geprint." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Optimaliseer de volgorde waarin wanden worden geprint om het aantal intrekbewegingen en de afgelegde afstand te verkleinen. Deze instelling is gunstig voor de meeste onderdelen. Bij sommige onderdelen duurt het printen echter langer. Controleer daarom de verwachte printtijd met en zonder optimalisatie." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 3c9db61d59..bab972db8c 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-14 14:35+0200\n" "Last-Translator: 'Jaguś' Paweł Jagusiak and Andrzej 'anraf1001' Rafalski\n" "Language-Team: reprapy.pl\n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Pliki G-code" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -55,78 +66,17 @@ msgid "" "

View print quality guide

" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Drukuj z Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Drukuj z Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Łączenie z Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Anuluj" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Wysyłanie danych do Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Nie można wysłać danych do Doodle3D Connect. Czy inne zadanie jest aktywne?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Przetrzymywanie danych na Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Plik wysłany do Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Otwórz Connect..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Otwórz interfejs Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Pokaż Dziennik" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Spłaszczyć aktywne ustawienia" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "Profil został spłaszczony i aktywowany." @@ -151,6 +101,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Połączono przez USB" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -173,6 +128,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Skompresowany Plik G-code" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -195,7 +155,7 @@ msgid "Save to Removable Drive {0}" msgstr "Zapisz na dysk wymienny {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Nie ma żadnych formatów plików do zapisania!" @@ -234,7 +194,7 @@ msgstr "Nie można zapisać na wymiennym dysku {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Błąd" @@ -263,8 +223,8 @@ msgstr "Wyjmij urządzenie wymienne {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Ostrzeżenie" @@ -291,212 +251,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Dysk wymienny" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Drukuj przez sieć" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Drukuj przez sieć" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Połączono przez sieć." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Połączono przez sieć. Proszę zatwierdzić żądanie dostępu na drukarce." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Połączono przez sieć. Brak dostępu do sterowania drukarką." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Wymagany dostęp do drukarki. Proszę zatwierdzić prośbę na drukarce" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Status uwierzytelniania" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Status Uwierzytelniania" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Spróbuj ponownie" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Prześlij ponownie żądanie dostępu" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Dostęp do drukarki został zaakceptowany" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Brak dostępu do tej drukarki. Nie można wysłać zadania drukowania." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Poproś o dostęp" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Wyślij żądanie dostępu do drukarki" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Nie można uruchomić nowego zadania drukowania." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Wystąpił problem z konfiguracją twojego Ultimaker'a, przez który nie można rozpocząć wydruku. Proszę rozwiąż te problemy przed kontynuowaniem." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Niedopasowana konfiguracja" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Czy na pewno chcesz drukować z wybraną konfiguracją?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Występuje niezgodność między konfiguracją lub kalibracją drukarki a Curą. Aby uzyskać najlepszy rezultat, zawsze tnij dla Print core'ów i materiałów włożonych do drukarki." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Wysyłanie nowych zadań (tymczasowo) zostało zablokowane, dalej wysyłane jest poprzednie zadanie." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Wysyłanie danych do drukarki" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Wysyłanie danych" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Anuluj" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Brak Printcore'a w slocie {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Brak załadowanego materiału w slocie {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "Inny PrintCore (Cura: {cura_printcore_name}, Drukarka: {remote_printcore_name}) wybrany dla extrudera {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Różne materiały (Cura: {0}, Drukarka: {1}) wybrane do dzyszy {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Synchronizuj się z drukarką" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Czy chcesz używać bieżącej konfiguracji drukarki w programie Cura?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "PrintCore'y i/lub materiały w drukarce różnią się od tych w obecnym projekcie. Dla najlepszego rezultatu, zawsze tnij dla wybranych PrinCore'ów i materiałów, które są umieszczone w drukarce." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Połączone przez sieć" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Zadanie drukowania zostało pomyślnie wysłane do drukarki." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Dane Wysłane" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "Zobacz w Monitorze" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "{printer_name} skończyła drukowanie '{job_name}'." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "Zadanie '{job_name}' zostało zakończone." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Drukowanie zakończone" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Połącz przez sieć" @@ -506,24 +481,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Monitor" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "Nowe funkcje są dostępne dla twojej {machine_name}! Rekomendowane jest zaktualizowanie oprogramowania drukarki." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, 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/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Jak zaktualizować" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Nie można uzyskać dostępu do informacji o aktualizacji" @@ -533,17 +508,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Widok warstwy" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "Cura nie wyświetla dokładnie warstw kiedy drukowanie przewodowe jest włączone" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Widok symulacji" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "Modyfikuj G-Code" @@ -557,32 +532,32 @@ 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/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura zbiera anonimowe dane statystyczne." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Zbieranie Danych" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Zezwól" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Zezwól Cura na wysyłanie anonimowych danych statystycznych, aby pomóc w wyborze przyszłych usprawnień Cura. Część twoich ustawień i preferencji jest wysyłana, a także wersja Cury i kod modelu który tniesz." @@ -592,20 +567,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Profile Cura 15.04 " -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Plik Blender" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "" -"Nie można wyeksportować używając \"{}\" jakości!\n" -"Powrócono do \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -631,49 +592,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Obraz GIF" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Nie można pociąć" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Nic do pocięcia, ponieważ żaden z modeli nie pasuje do obszaru roboczego. Proszę o przeskalowanie lub obrócenie modelu, żeby pasował." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Przetwarzanie warstw" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Informacja" @@ -700,18 +668,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Niestandardowe" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Plik 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Dysza" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -722,18 +701,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "Plik G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "Analizowanie G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "Szczegóły G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -744,16 +723,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profile Cura" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Asystent Profilu" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Asystent Profilu" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "Plik 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Plik Cura Project 3MF" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -835,19 +829,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Nieznany" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Plik pocięty wcześniej {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "Plik już istnieje" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -859,23 +853,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Nie zastąpione" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "Wybrany materiał jest niezgodny z wybranym urządzeniem lub konfiguracją." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Niekompatybilny Materiał" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "Ustawienia został zmienione, aby pasowały do obecnej dostępności extruderów: [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Ustawienia zostały zaaktualizowane" @@ -958,13 +952,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profilowi brakuje typu jakości." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Nie można znaleźć typu jakości {0} dla bieżącej konfiguracji." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -991,42 +985,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Wszystkie Pliki (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Niestandardowy materiał" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Niestandardowy" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Obszar Roboczy" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "" @@ -1037,32 +1031,32 @@ msgid "Multiplying and placing objects" msgstr "Zwielokrotnienie i umieszczanie przedmiotów" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Rozmieszczenie Obiektów" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Znajdowanie nowej lokalizacji obiektów" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Szukanie Lokalizacji" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nie można Znaleźć Lokalizacji" @@ -1201,223 +1195,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Wyślij raport" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Ładowanie drukarek..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Ustawianie sceny ..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Ładowanie interfejsu ..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "Wybrany model był zbyta mały do załadowania." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Ustawienia Drukarki" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Drukarka" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Ustawienia drukarki" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (Szerokość)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Głębokość)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Wysokość)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Kształt stołu roboczego" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Początek na środku" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Podgrzewany stół" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Wersja G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Ustawienia głowic drukujących" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Odległość od lewej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Odległość od przedniej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X max" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Odległość od prawej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y max" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Odległość od tylnej strony głowicy do środka dyszy. Używane do unikania kolizji pomiędzy poprzednimi wydrukami a głowicą podczas drukowania \"Jeden na Raz\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Wysokość ramy" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "Różnica w wysokości pomiędzy końcówką dyszy i systemem suwnym (osie X i Y). Używane do unikania kolizji z poprzednimi wydrukami podczas drukowania \"Jeden na Raz\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Liczba ekstruderów" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "Początkowy G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "Komedy G-code, które są wykonywane na samym początku." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "Końcowy G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Komendy G-code, które są wykonywane na samym końcu." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Ustawienia dyszy" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Rozmiar dyszy" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Kompatybilna średnica materiału" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "Nominalna średnica filamentu wspierana przez drukarkę. Dokładna średnica będzie nadpisana przez materiał i/lub profil." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Korekcja dyszy X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Korekcja dyszy Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "Początkowy G-code Ekstrudera" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "Końcowy G-code Ekstrudera" @@ -1437,29 +1431,42 @@ msgctxt "@info" msgid "Could not connect to the Cura Package database. Please check your connection." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Wtyczki" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiał" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Nieznany" @@ -1492,16 +1499,56 @@ msgctxt "@action:button" msgid "Back" msgstr "" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 msgctxt "@info" msgid "You will need to restart Cura before changes in packages have effect." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1548,12 +1595,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Odrzuć" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "" @@ -1563,9 +1610,14 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 @@ -1580,9 +1632,9 @@ msgstr "Dziennik" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1630,22 +1682,22 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Zgoda Użytkownika" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Istniejące Połączenie" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Ta drukarka/grupa jest już dodana do Cura. Proszę wybierz inną drukarkę/grupę." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Połącz się z drukarką sieciową" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" @@ -1656,333 +1708,339 @@ msgstr "" "\n" "Wybierz drukarkę z poniższej listy:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Dodaj" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Edycja" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Usunąć" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Odśwież" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Rodzaj" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Wersja oprogramowania" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Adres" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Ta drukarka nie jest skonfigurowana do zarządzania grupą drukarek Ultimaker 3." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Ta drukarka jest gospodarzem grupy %1 drukarek Ultimaker 3." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Połącz" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Adres drukarki" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Wpisz adres IP lub nazwę hosta drukarki w sieci." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Drukuj przez sieć" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Wybór drukarki" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Drukuj" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 nie została ustawiona do hostowania grupy podłączonych drukarek Ultimaker 3" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Dodaj/Usuń drukarki" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Otwiera stronę zadań drukowania w twojej domyślnej przeglądarce sieciowej." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Zobacz zadania drukowania" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Przygotowywanie do drukowania" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Drukowanie" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Dostępna" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Utracono połączenie z drukarką" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Niedostępne" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Nieznane" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Wyłączona" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Zajęta" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Zakończono" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Przygotowywanie do druku" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Konieczne są działania" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "Wstrzymana" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Wznawianie" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Drukowanie zostaje przerwane" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Nie akceptuje zadań drukowania" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Wykończenia na: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Oczyść platformę roboczą" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "Oczekuje na zmianę konfiguracji" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Zadania drukowania" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Drukowanie" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "W kolejce" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Drukarki" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Drukowanie" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Zobacz drukarki" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Przerwij wydruk" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Zakończono" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Przygotowywanie" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "Wstrzymana" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Wznawianie" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Konieczne są działania" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Podłącz do drukarki" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Załaduj konfigurację drukarki do Cura" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Uaktywnij konfigurację" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Schemat kolorów" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Kolor materiału" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Rodzaj linii" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Szybkość Posuwu" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Grubość warstwy" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Tryb zgodności" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Pokaż ruch jałowy" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Pokaż pomocnik" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Pokaż powłokę" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Pokaż wypełnienie" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Pokaż tylko najwyższe warstwy" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Pokaż 5 Szczegółowych Warstw" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Góra/ Dół" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Wewnętrzna ściana" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "min" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "max" @@ -2102,53 +2160,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Wygładzanie" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Typ siatki" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Normalny model" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Drukuj jako podpora" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Nie wspieraj nałożeń z innymi modelami" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Modyfikuj ustawienia nakładania z innymi modelami" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Modyfikuj ustawienia wypełnienia innych modeli" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Wybierz ustawienia" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Wybierz Ustawienia, aby dostosować ten model" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtr..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Pokaż wszystko" @@ -2170,13 +2228,13 @@ msgid "Create new" msgstr "Utwórz nowy" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Podsumowanie - Projekt Cura" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Ustawienia drukarki" @@ -2193,7 +2251,7 @@ msgid "Update" msgstr "Aktualizacja" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Typ" @@ -2204,7 +2262,7 @@ msgid "Printer Group" msgstr "Grupa drukarek" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Ustawienia profilu" @@ -2216,19 +2274,19 @@ msgstr "Jak powinien zostać rozwiązany problem z profilem?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Nazwa" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Nie w profilu" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2258,7 +2316,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Jak powinien zostać rozwiązany problem z materiałem?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Ustawienie widoczności" @@ -2269,13 +2327,13 @@ msgid "Mode" msgstr "Tryb" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Widoczne ustawienie:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 poza %2" @@ -2290,6 +2348,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Otwórz" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Eksportuj" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00godz. 00min." + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Szacowanie kosztów" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Razem:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2508,26 +2642,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Usuń wydruk" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Wstrzymaj" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Wznów" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Przerwij wydruk" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Przerwij wydruk" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2564,19 +2682,17 @@ msgid "Customized" msgstr "Dostosowane" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Zawsze pytaj o to" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Odrzuć i nigdy nie pytaj" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Zachowaj i nigdy nie pytaj" @@ -2596,101 +2712,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Utwórz nowy profil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Informacja" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Potwierdź Zmianę Średnicy" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Wyświetlana nazwa" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Marka" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Typ Materiału" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Kolor" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Właściwości" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Gęstość" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Średnica" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Koszt Filamentu" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Waga filamentu" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Długość Filamentu" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Koszt na metr" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Odłącz materiał" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Opis" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Informacje dotyczące przyczepności" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Ustawienia druku" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Aktywuj" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Stwórz" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplikuj" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Importuj" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Drukarka" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Potwierdź Usunięcie" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importuj Materiał" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Udało się zaimportować materiał %1" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Eksportuj Materiał" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Udało się wyeksportować materiał do %1" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2727,7 +2915,7 @@ msgid "Unit" msgstr "Jednostka" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Ogólny" @@ -2919,8 +3107,8 @@ msgstr "Domyślne zachowanie podczas otwierania pliku projektu: " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Zawsze pytaj" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2939,77 +3127,75 @@ msgstr "Kiedy dokonasz zmian w profilu i przełączysz się na inny, zostanie wy #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Nadpisz profil" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Prywatność" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Sprawdź, dostępność aktualizacji podczas uruchamiania" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Wyślij (anonimowe) informacje o drukowaniu" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Eksperymentalne" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Użyj funkcji wielu pól roboczych" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Użyj funkcji wielu pól roboczych (wymagany restart)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "Czy nowo załadowane modele powinny zostać rozłożone na platformie roboczej? Używane w połączeniu z multi platformą roboczą (EKSPERYMENTALNE)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Nie układaj obiektów podczas ładowania" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Drukarki" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktywuj" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3053,7 +3239,7 @@ msgid "Aborting print..." msgstr "Przerywanie drukowania..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Profile" @@ -3068,18 +3254,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Duplikuj" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Importuj" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Eksportuj" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3090,18 +3264,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplikuj profil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Potwierdź Usunięcie" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3122,96 +3284,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Drukarka: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Chronione profile" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Profile niestandardowe" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Aktualizuj profil z bieżącymi ustawieniami" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Odrzuć bieżące zmiany" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Aktualne ustawienia odpowiadają wybranemu profilowi." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Ustawienia ogólne" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiał" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Stwórz" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplikuj" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importuj Materiał" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Udało się zaimportować materiał %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Eksportuj Materiał" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Udało się wyeksportować materiał do %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Drukarka" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Dodaj drukarkę" @@ -3226,6 +3335,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Dodaj drukarkę" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3381,33 +3495,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Skopiuj wszystkie zmienione wartości do wszystkich ekstruderów" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ukryj tę opcję" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Nie pokazuj tej opcji" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Pozostaw tę opcję widoczną" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Skonfiguruj widoczność ustawień ..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "" @@ -3501,7 +3615,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Wyślij niestandardową komendę G-code do podłączonej drukarki. Naciśnij 'enter', aby wysłać komendę." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Ekstruder" @@ -3554,7 +3668,7 @@ msgid "The nozzle inserted in this extruder." msgstr "Dysza włożona do tego ekstrudera." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Stół roboczy" @@ -3579,6 +3693,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3602,7 +3731,7 @@ msgstr "&Pozycja kamery" #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:54 msgctxt "@action:inmenu menubar:view" msgid "&Build plate" -msgstr "&Pole robocze" +msgstr "P&ole robocze" #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13 msgctxt "@action:inmenu" @@ -3677,38 +3806,11 @@ msgstr "" "Konfiguracja wydruku jest wyłączona\n" "Pliki G-code nie mogą zostać zmodyfikowane" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00godz. 00min." - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Specyfikacja czasu" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Szacowanie kosztów" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Razem:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3719,29 +3821,29 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Niestandardowa konfiguracja wydruku

Drukowanie z precyzyjną kontrolą nad każdym elementem procesu cięcia." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Aktywny wydruk" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Nazwa pracy" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Czas druku" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Szacowany czas pozostały" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" +msgid "Toggle Full Screen" msgstr "Przełącz tryb pełnoekranowy" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 @@ -3761,28 +3863,28 @@ msgstr "&Zamknij" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "&Widok 3D" +msgid "3D View" +msgstr "Widok 3D" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "&Widok z przodu" +msgid "Front View" +msgstr "Widok z przodu" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "&Widok z góry" +msgid "Top View" +msgstr "Widok z góry" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "&Widok z lewej strony" +msgid "Left Side View" +msgstr "Widok z lewej strony" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "&Widok z prawej strony" +msgid "Right Side View" +msgstr "Widok z prawej strony" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3836,188 +3938,187 @@ msgstr "Zgłoś błąd" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "&O..." +msgid "About..." +msgstr "O..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "Usuń &wybrany model" -msgstr[1] "Usuń &wybrane modele" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Usuń wybrany model" +msgstr[1] "Usuń wybrane modele" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Wyśrodkuj wybrany model" msgstr[1] "Wyśrodkuj wybrane modele" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Rozmnóż wybrany model" msgstr[1] "Rozmnóż wybrane modele" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Usuń model" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Wyśrodkuj model na platformie" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Grupuj modele" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Rozgrupuj modele " -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" -msgstr "&Połącz modele" +msgstr "Połącz modele" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Powiel model..." +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Wybierz wszystkie modele" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "&Wybierz wszystkie modele" +msgid "Clear Build Plate" +msgstr "Wyczyść stół" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&Wyczyść stół" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" +msgid "Reload All Models" msgstr "Przeładuj wszystkie modele" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "Rozłóż Wszystkie Modele na Wszystkie Platformy Robocze." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Ułóż wszystkie modele" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Wybór ułożenia" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Zresetuj wszystkie pozycje modelu" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" +msgid "Reset All Model Transformations" msgstr "Zresetuj wszystkie przekształcenia modelu" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Otwórz plik(i)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nowy projekt..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Pokaż &dziennik silnika..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Pokaż folder konfiguracji" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Rozłóż/Schowaj Pasek Boczny" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Proszę załaduj model 3D" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Gotowy do cięcia" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Cięcie..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Gotowy do %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Nie można pociąć" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Cięcie niedostępne" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Potnij aktualny wydruk" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Przerwij proces cięcia" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Przygotuj" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Anuluj" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Wybierz aktywne urządzenie wyjściowe" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Otwórz plik(i)" @@ -4037,129 +4138,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Cura Ultimaker" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Plik" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "&Zapisz wybór w pliku" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Zapisz &jako..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "Zapisz &Project..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Edytuj" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Widok" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "&Ustawienia" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Drukarka" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Materiał" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Ustaw jako aktywną głowicę" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Włącz Ekstruder" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Wyłącz Ekstruder" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "&Pole robocze" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Profil" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "&Rozszerzenia" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Preferencje" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" -msgstr "&Pomoc" +msgstr "P&omoc" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Otwórz plik" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Ustawienia" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Nowy projekt" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Otwórz plik(i)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4169,112 +4286,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Zapisz projekt" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Pole robocze" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Ekstruder %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & materiał" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Nie pokazuj podsumowania projektu podczas ponownego zapisywania" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Zapisz" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Wysokość warstwy" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Ten profil jakości nie jest dostępny dla wybranego materiału i konfiguracji dyszy. Proszę to zmienić, aby włączyć ten profil jakości" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "Niestandardowy profil jest obecnie aktywny. Aby włączyć pasek jakości, wybierz domyślny profil w zakładce Niestandardowe" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Prędkość Druku" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Wolniej" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Szybciej" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Wypełnienie" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Włącz stopniowane" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Generuj podpory" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Wybierz, który ekstruder ma służyć do drukowania podpór. Powoduje to tworzenie podpór poniżej modelu, aby zapobiec spadaniu lub drukowaniu modelu w powietrzu." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Popraw przycz. modelu" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Potrzebujesz pomocy w ulepszaniu wydruków?
Przeczytaj instrukcje dotyczące rozwiązywania problemów" @@ -4321,22 +4438,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Typ drukarki" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Materiał" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" +msgid "Use glue with this material combination" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Sprawdź kompatybilność" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Kliknij, aby sprawdzić zgodność materiału na Ultimaker.com." @@ -4426,16 +4543,6 @@ msgctxt "name" msgid "God Mode" msgstr "Tryb Boga" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Akceptuje G-Code i wysyła go przez WiFi do Doodle3D WiFi-Box." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4516,16 +4623,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Etap Przygotowania" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Zapewnia okno edycji dla bezpośredniego edytowania skryptów." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Narzędzie pisania skryptów na żywo." - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4636,16 +4733,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Czytnik Profili Starszej Cura" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Pomaga w otwieraniu plików Blender bezpośrednio w Cura." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Integracja z Blenderem (eksperymentalny)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4696,6 +4783,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Ulepszenie Wersji 2.7 do 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4806,6 +4903,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura Profile Writer" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Pozwala twórcą materiałów na tworzenie nowych profili materiałów i jakości używając rozwijanego menu." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Asystent Profilów Druku" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4836,6 +4943,210 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Czytnik Profili Cura" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Drukuj z Doodle3D WiFi-Box" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Drukuj z Doodle3D WiFi-Box" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Łączenie z Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Wysyłanie danych do Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Nie można wysłać danych do Doodle3D Connect. Czy inne zadanie jest aktywne?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Przetrzymywanie danych na Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Plik wysłany do Doodle3D Connect" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Otwórz Connect..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Otwórz interfejs Doodle3D Connect" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Plik Blender" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "Nie można wyeksportować używając \"{}\" jakości!\n" +#~ "Powrócono do \"{}\"." + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Ta drukarka nie jest skonfigurowana do zarządzania grupą drukarek Ultimaker 3." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Ta drukarka jest gospodarzem grupy %1 drukarek Ultimaker 3." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 nie została ustawiona do hostowania grupy podłączonych drukarek Ultimaker 3" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Dodaj/Usuń drukarki" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Otwiera stronę zadań drukowania w twojej domyślnej przeglądarce sieciowej." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Zobacz zadania drukowania" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Przygotowywanie do drukowania" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Drukowanie" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Dostępna" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Utracono połączenie z drukarką" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Niedostępne" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Nieznane" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Wyłączona" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Zajęta" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Przygotowywanie do druku" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Drukowanie zostaje przerwane" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Nie akceptuje zadań drukowania" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Wykończenia na: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Oczyść platformę roboczą" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "Oczekuje na zmianę konfiguracji" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Zadania drukowania" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Drukarki" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Zobacz drukarki" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Wstrzymaj" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Wznów" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Przerwij wydruk" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Zawsze pytaj" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Nadpisz profil" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "Czy nowo załadowane modele powinny zostać rozłożone na platformie roboczej? Używane w połączeniu z multi platformą roboczą (EKSPERYMENTALNE)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Nie układaj obiektów podczas ładowania" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "Z&apisz wybór w pliku" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Zapisz &jako..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "Zapisz &Project..." + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Akceptuje G-Code i wysyła go przez WiFi do Doodle3D WiFi-Box." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Zapewnia okno edycji dla bezpośredniego edytowania skryptów." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Narzędzie pisania skryptów na żywo." + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Pomaga w otwieraniu plików Blender bezpośrednio w Cura." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Integracja z Blenderem (eksperymentalny)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Ostrzeżenie Sprawdzacza Modelu" @@ -5102,10 +5413,6 @@ msgstr "Czytnik Profili Cura" #~ msgid "Browse plugins..." #~ msgstr "Przeglądaj wtyczki..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Pole robocze" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "W&tyczki" @@ -5331,14 +5638,6 @@ msgstr "Czytnik Profili Cura" #~ "\n" #~ "Przepraszamy!" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Asystent Profilu" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Asystent Profilu" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "Nie załadowano materiału" @@ -5469,14 +5768,6 @@ msgstr "Czytnik Profili Cura" #~ msgid "Configure setting visiblity..." #~ msgstr "Skonfiguruj widoczność ustawień..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Automatyczny: %1" @@ -5513,14 +5804,6 @@ msgstr "Czytnik Profili Cura" #~ msgid "GCode Profile Reader" #~ msgstr "Czytnik Profili GCode" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Pozwala twórcą materiałów na tworzenie nowych profili materiałów i jakości używając rozwijanego menu." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Asystent Profilów Druku" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "Wystąpił błąd podczas otwierania pliku SolidWorks! Proszę sprawdź, czy możesz otworzyć plik SolidWorks bez żadnych problemów!" @@ -5717,10 +6000,6 @@ msgstr "Czytnik Profili Cura" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "Ta drukarka nie została ustawiona do hostowania grupy %1 podłączonych drukarek Ultimaker 3" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Przygotowywanie" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Zakończono:" diff --git a/resources/i18n/pl_PL/fdmextruder.def.json.po b/resources/i18n/pl_PL/fdmextruder.def.json.po index eda4694124..80605978ce 100644 --- a/resources/i18n/pl_PL/fdmextruder.def.json.po +++ b/resources/i18n/pl_PL/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-03-30 20:33+0200\n" "Last-Translator: 'Jaguś' Paweł Jagusiak and Andrzej 'anraf1001' Rafalski\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 88634c37ab..caff3d9438 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-17 16:45+0200\n" "Last-Translator: 'Jaguś' Paweł Jagusiak and Andrzej 'anraf1001' Rafalski\n" "Language-Team: reprapy.pl\n" @@ -85,6 +85,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "GUID materiału. To jest ustawiana automatycznie " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Średnica" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Dostosowuje średnicę stosowanego filamentu. Dopasuj tę wartość do średnicy stosowanego filamentu." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1060,6 +1070,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Zygzak" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1140,6 +1160,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Kompensuje przepływ dla części, których wewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1505,11 +1545,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Koncentryczny" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Koncentryczny 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1535,6 +1570,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Łączy końce gdzie wzór wypełnienia spotyka się z wewn. ścianą używając linii, która podąża za kształtem wewn. ściany. Włączenie tego ustawienia może spowodować lepszą przyczepność wypełnienia do ścian i zredukować efekty wypełnienia w jakości powierzchni. Wyłączenie tego ustawienia redukuje ilość potrzebnego materiału." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1565,6 +1610,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi Y." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1875,16 +1942,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "Temperatura stosowana przy podgrzewanym stole na pierwszej warstwie." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Średnica" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Dostosowuje średnicę stosowanego filamentu. Dopasuj tę wartość do średnicy stosowanego filamentu." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2722,8 +2779,8 @@ msgstr "Tryb Kombinowania" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach skóry przez kombinowanie tylko wewnątrz wypełnienia." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2740,6 +2797,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3120,11 +3182,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Koncentryczny" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Koncentryczny 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3185,6 +3242,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Odległość między drukowanymi liniami struktury podpory. To ustawienie jest obliczane przez gęstość podpory." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3475,11 +3552,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Koncentryczny" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Koncentryczny 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3515,11 +3587,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Koncentryczny" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Koncentryczny 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3555,16 +3622,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Koncentryczny" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Koncentryczny 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Zygzak" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3891,8 +3973,8 @@ msgstr "Szerokość linii na podstawowej warstwie tratwy. Powinny być to grube #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Rozstaw Linii Tratwy" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4109,16 +4191,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Minimalna objętość każdej warstwy wieży czyszczącej w celu oczyszczenia wystarczającej ilości materiału." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Grubość Wieży Czyszcz." - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "Grubość pustej wieży czyszczącej. Grubość większa niż połowa minimalnej objętości wieży czyszczącej spowoduje, że wieża będzie miała dużą gęstość." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4159,26 +4231,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Po wydrukowaniu podstawowej wieży jedną dyszą, wytrzyj wytłoczony materiał z drugiej dyszy o wieżę czyszczącą." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Wytrzyj Dyszę po Przełączeniu" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Po przełączeniu ekstrudera, wytrzyj materiał wyciekający z dyszy na pierwszą drukowaną część. powoduje to bezpieczny, powolny ruch wycierania w miejscu gdzie wyciekający materiał nie spowoduje dużej szkody dla powierzchni modelu." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Pole Czyszczące Wieży Czyszcz." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Ilość filamentu, która jest czyszczona podczas wycierania na wieży czyszczącej. Czyszczenie jest użyteczne do kompensowania utraty filamentu przez wypływanie z nieużywanej dyszy." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4664,6 +4716,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Dane łączące przepływ materiału (w mm3 na sekundę) z temperaturą (stopnie Celsjusza)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5323,6 +5385,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "Opóźnienie w wyborze, czy użyć mniejszej warstwy, czy nie. Ta liczba jest porównywana do najbardziej stromego nachylenia na warstwie." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5353,16 +5435,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Jeśli obszar skóry jest podpierany w mniejszym procencie jego powierzchni, drukuj to według ustawień mostu. W przeciwnym wypadku użyj normalnych ustawień skóry." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Maks. Nachylenie Ściany Mostu" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "Maksymalna dozwolona szerokość obszaru powietrza pod linią ściany zanim zostanie wydrukowana ściana używająca ustawień mostu. Wyrażona w procentach szerokości linii ściany. Kiedy przestrzeń powietrza jest szersza od tego, linia ściany jest drukowana używając ustawień mostu. W przeciwnym wypadku linia ściany jest drukowana z normalnymi ustawieniami. Tym niższa wartość, tym większa szansa, że linie ściany na nawisach będą drukowane z ustawieniami mostu." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5583,6 +5655,66 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Koncentryczny 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach skóry przez kombinowanie tylko wewnątrz wypełnienia." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Koncentryczny 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Koncentryczny 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Koncentryczny 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Koncentryczny 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Rozstaw Linii Tratwy" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Grubość Wieży Czyszcz." + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "Grubość pustej wieży czyszczącej. Grubość większa niż połowa minimalnej objętości wieży czyszczącej spowoduje, że wieża będzie miała dużą gęstość." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Wytrzyj Dyszę po Przełączeniu" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Po przełączeniu ekstrudera, wytrzyj materiał wyciekający z dyszy na pierwszą drukowaną część. powoduje to bezpieczny, powolny ruch wycierania w miejscu gdzie wyciekający materiał nie spowoduje dużej szkody dla powierzchni modelu." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Pole Czyszczące Wieży Czyszcz." + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Ilość filamentu, która jest czyszczona podczas wycierania na wieży czyszczącej. Czyszczenie jest użyteczne do kompensowania utraty filamentu przez wypływanie z nieużywanej dyszy." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Maks. Nachylenie Ściany Mostu" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "Maksymalna dozwolona szerokość obszaru powietrza pod linią ściany zanim zostanie wydrukowana ściana używająca ustawień mostu. Wyrażona w procentach szerokości linii ściany. Kiedy przestrzeń powietrza jest szersza od tego, linia ściany jest drukowana używając ustawień mostu. W przeciwnym wypadku linia ściany jest drukowana z normalnymi ustawieniami. Tym niższa wartość, tym większa szansa, że linie ściany na nawisach będą drukowane z ustawieniami mostu." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Optymalizuj kolejność, według której drukowane są ściany, aby zredukować ilość retrakcji i długości ruchu jałowego. Większość części powinno na tym zyskać, ale niektóre mogą drukować się dłużej, dlatego prosimy o porównaniu czasu drukowania z i bez włączonej opcji." diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 741ec379c1..f79850003a 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-06-23 02:20-0300\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -39,6 +39,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Arquivo G-Code" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -58,78 +69,17 @@ msgstr "" "

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

\n" "

Ver guia de qualidade de impressão

" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Imprimir com a WiFi-Box do Doodle3D" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Imprimir com a WiFi-Box do Doodle3D" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Conectando ao Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Enviando dados ao Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Incapaz de enviar dados ao Doodle3D Connect. Há outro trabalho ainda ativo?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Armazenando dados no Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Arquivo enviado ao Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Abrir Connect..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Abrir a interface web do Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Exibir registro de alterações" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Achatar os ajustes ativos" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "O perfil foi achatado & ativado." @@ -154,6 +104,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Conectado via USB" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -176,6 +131,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Arquivo de G-Code Comprimido" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -198,7 +158,7 @@ msgid "Save to Removable Drive {0}" msgstr "Salvar em Unidade Removível {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Há formatos de arquivo disponíveis com os quais escrever!" @@ -237,7 +197,7 @@ msgstr "Não foi possível salvar em unidade removível {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Erro" @@ -266,8 +226,8 @@ msgstr "Ejetar dispositivo removível {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Aviso" @@ -294,212 +254,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unidade Removível" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Imprimir pela rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Imprime pela rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Conectado pela rede." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Conectado pela rede. Por favor aprove a requisição de acesso na impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Conectado pela rede. Sem acesso para controlar a impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Acesso à impressora solicitado. Por favor aprove a requisição na impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Status da autenticação" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Status da Autenticação" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Tentar novamente" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Reenvia o pedido de acesso" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Acesso à impressora confirmado" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Sem acesso para imprimir por esta impressora. Incapaz de enviar o trabalho de impressão." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Solicitar acesso" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Envia pedido de acesso à impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Incapaz de iniciar novo trabalho de impressão." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Há um problema com a configuração de sua Ultimaker que torna impossível iniciar a impressão. Por favor resolva este problema antes de continuar." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Configuração divergente" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Tem certeza que quer imprimir com a configuração selecionada?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Há divergências entre a configuração ou calibração da impressora e do Cura. Para melhores resultados, sempre fatie com os PrintCores e materiais que estão carregados em sua impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Envio de novos trabalhos (temporariamente) bloqueado, ainda enviando o trabalho de impressão anterior." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Enviando dados à impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Enviando Dados" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Printcore não carregado no slot {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Nenhum material carregado no slot {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "PrintCore Diferente (Cura: {cure_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Sincronizar com a impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Deseja usar a configuração atual de sua impressora no Cura?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Os PrintCores e/ou materiais da sua impressora diferem dos que estão dentro de seu projeto atual. Para melhores resultados, sempre fatie para os PrintCores e materiais que estão na sua impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Conectado pela rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Trabalho de impressão enviado à impressora com sucesso." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Dados Enviados" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "Ver no Monitor" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "{printer_name} acabou de imprimir '{job_name}'." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "O trabalho de impressão '{job_name}' terminou." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Impressão Concluída" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Conectar pela rede" @@ -509,24 +484,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Monitor" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "Novos recursos estão disponível para sua {machine_name}! Recomenda-se atualizar o firmware da impressora." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, 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/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Como atualizar" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Não foi possível acessar informação de atualização." @@ -536,17 +511,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Visão de Camadas" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "O Cura não mostra as camadas corretamente quando Impressão em Arame estiver habilitada" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Visão Simulada" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "Modificar G-Code" @@ -560,32 +535,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Cria um volume em que suportes não são impressos." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "O Cura coleta estatísticas anônimas de uso." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Coletando Dados" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Mais informações" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Ver mais informações em que dados o Cura envia." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Permitir" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Permite que o Cura envie estatísticas anônimas de uso para ajudar a priorizar futuras melhorias ao software. Algumas de suas preferências e ajustes são enviados junto à versão atual do Cura e um hash dos modelos que estão sendo fatiados." @@ -595,20 +570,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Perfis do Cura 15.04" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Arquivo do Blender" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "" -"Não foi possível exportar usando qualidade \"{}\"!\n" -"Foi usada a \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -634,49 +595,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Imagem GIF" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Incapaz de fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Incapaz de fatiar" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Incapaz de fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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 "Incapaz de fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um ou mais dos modelos: {error_labels}" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Incapaz de fatiar porque a torre de purga ou posição de purga são inválidas." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de impressão. Por favor redimensione ou rotacione os modelos para caberem." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Processando Camadas" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Informação" @@ -703,18 +671,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Personalizado" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Arquivo 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Bico" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -725,18 +704,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "Arquivo G" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "Interpretando G-Code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "Detalhes do G-Code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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 "Assegure-se 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." @@ -747,16 +726,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil do Cura" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Assistente de Perfil" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Assistente de Perfil" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "Arquivo 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Arquivo de Projeto 3MF do Cura" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -838,19 +832,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Desconhecido" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Arquivo pré-fatiado {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "O Arquivo Já Existe" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -862,23 +856,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Não sobrepujado" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "O material selecionado é incompatível com a máquina ou configuração selecionada." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Material Incompatível" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "Os ajustes foram mudados para atender à atual disponibilidade de extrusores: [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Ajustes atualizados" @@ -961,13 +955,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Falta um tipo de qualidade ao Perfil." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Não foi possível encontrar tipo de qualidade {0} para a configuração atual." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -994,42 +988,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos Os Arquivos (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Material Personalizado" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Personalizado" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Volume de Impressão" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 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/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Backup" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 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/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "Tentativa de restauração de backup do Cura que não corresponde à versão atual." @@ -1040,32 +1034,32 @@ msgid "Multiplying and placing objects" msgstr "Multiplicando e colocando objetos" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Colocando Objeto" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Incapaz de achar um lugar dentro do volume de construção para todos os objetos" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Achando novos lugares para objetos" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Buscando Localização" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Não Foi Encontrada Localização" @@ -1204,223 +1198,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Carregando máquinas..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Configurando cena..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Carregando interface..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "O modelo selecionado é pequenos demais para carregar." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Ajustes da Máquina" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Impressora" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Ajustes da Impressora" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (largura)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profundidade)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Altura)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Forma da plataforma de impressão" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Origem no centro" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Mesa aquecida" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Sabor de G-Code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Ajustes da Cabeça de Impressão" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X mín." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distância da esquerda da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y mín." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distância da frente da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X máx." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distância da direita da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y máx." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distância da traseira da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Altura do eixo" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "A diferença de altura entre a ponta do bico e o sistema de eixos X e Y. Usado para prevenir colisões entre impressões e a cabeça ao imprimir \"Um de cada Vez\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Número de Extrusores" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "G-Code Inicial" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "Comandos de G-Code a serem executados no início da impressão." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "G-Code Final" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Comandos de G-Code a serem executados no final da impressão." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Ajustes do Bico" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Tamanho do bico" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Diâmetro de material compatível" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será sobrepujado pelo material e/ou perfil." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Deslocamento X do Bico" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Deslocamento Y do Bico" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "G-Code Inicial do Extrusor" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "G-Code Final do Extrusor" @@ -1440,29 +1434,42 @@ 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Complementos" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiais" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Versão" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Última atualização" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Autor" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Desconhecido" @@ -1495,16 +1502,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Voltar" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Sair do Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1551,12 +1598,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Recusar" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "Em destaque" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Compatibilidade" @@ -1566,10 +1613,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "Obtendo pacotes..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "Contato" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1583,9 +1635,9 @@ msgstr "Registro de alterações" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1633,22 +1685,22 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Termos de Acordo do Usuário" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Conexão Existente" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Esta impressora ou grupo já foi adicionada ao Cura. Por favor selecione outra impressora ou grupo." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Conectar a Impressora de Rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" @@ -1659,333 +1711,339 @@ msgstr "" "\n" "Selecione sua impressora da lista abaixo:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Adicionar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Editar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Remover" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Atualizar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Tipo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Versão do firmware" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Endereço" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "A impressora neste endereço ainda não respondeu." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Conectar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Endereço da Impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Introduza o endereço IP ou hostname da sua impressora na rede." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "Ok" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Imprimir pela rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Seleção de impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Imprimir" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 não está configurada para hospedar um grupo de impressora Ultimaker 3 conectadas" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Adicionar/Remover impressoras" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Abre a página de trabalhos de impressão com seu navegador default." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Visualizar trabalhos de impressão" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Preparando para imprimir" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimindo" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Disponível" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Conexão à impressora perdida" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Desconhecido" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Desabilitado" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Reservado" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Finalizado" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Preparando para imprimir" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Necessária uma ação" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausado" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Continuando" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "A impressão foi interrompida" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Não aceitando trabalhos de impressão" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Termina em: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Esvaziar a mesa de impressão" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "Esperando alteração de configuração" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Imprimindo" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "Enfileirados" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Impressoras" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Imprimindo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Visualizar impressoras" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abortar impressão" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Finalizado" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Preparando" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausado" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Continuando" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Necessária uma ação" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Conecta a uma impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Carrega a configuração da impressora no Cura" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Ativar Configuração" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Esquema de Cores" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Cor do Material" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Tipo de Linha" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Taxa de alimentação" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Largura de camada" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Modo de Compatibilidade" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Exibir Percursos" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Exibir Assistentes" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Exibir Perímetro" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Exibir Preenchimento" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Somente Exibir Camadas Superiores" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Exibir 5 Camadas Superiores Detalhadas" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Topo / Base" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Parede Interna" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "mín" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "máx" @@ -2105,53 +2163,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Tipo de Malha" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Modelo normal" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Imprimir como suporte" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Não suportar sobreposição com outros modelos" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Modificar ajustes para sobrepor com outros modelos" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Modificar ajustes para preenchimento de outros modelos" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Selecionar ajustes" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Selecionar Ajustes a Personalizar para este modelo" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtrar..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Exibir tudo" @@ -2173,13 +2231,13 @@ msgid "Create new" msgstr "Criar novo" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumo - Projeto do Cura" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Ajustes da impressora" @@ -2196,7 +2254,7 @@ msgid "Update" msgstr "Atualizar" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Tipo" @@ -2207,7 +2265,7 @@ msgid "Printer Group" msgstr "Grupo de Impressora" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Ajustes de perfil" @@ -2219,19 +2277,19 @@ msgstr "Como o conflito no perfil deve ser resolvido?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Nome" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Ausente no perfil" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2261,7 +2319,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Como o conflito no material deve ser resolvido?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Visibilidade dos ajustes" @@ -2272,13 +2330,13 @@ msgid "Mode" msgstr "Modo" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Ajustes visíveis:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 de %2" @@ -2293,6 +2351,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Abrir" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00h 00min" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Especificação de custo" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Total:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2511,26 +2645,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Por favor remova a impressão" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Pausar" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Continuar" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Abortar Impressão" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abortar impressão" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2567,19 +2685,17 @@ msgid "Customized" msgstr "Personalizado" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Sempre perguntar" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar e não perguntar novamente" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Manter e não perguntar novamente" @@ -2599,101 +2715,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Criar Novo Perfil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Informação" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar Mudança de Diâmetro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Exibir Nome" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Marca" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Tipo de Material" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Cor" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Propriedades" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Densidade" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Diâmetro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Custo do Filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Peso do Filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Comprimento do Filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Custo por Metro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Desvincular Material" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Descrição" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Informação sobre Aderência" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Ajustes de impressão" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Ativar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Criar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Impressora" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar Material" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material %1 importado com sucesso" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material exportado para %1 com sucesso" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2730,7 +2918,7 @@ msgid "Unit" msgstr "Unidade" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Geral" @@ -2922,8 +3110,8 @@ msgstr "Comportamento default ao abrir um arquivo de projeto" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Sempre perguntar" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2942,77 +3130,75 @@ msgstr "Quando você faz alterações em um perfil e troca para um diferent, um #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Sobrepujar Perfil" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Privacidade" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Verificar atualizações na inicialização" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Enviar informação (anônima) de impressão." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Mais informações" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Experimental" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Usar funcionalidade de plataforma múltipla de impressão" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Usar funcionalidade de plataforma múltipla de impressão (reinício requerido)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "Novos modelos carregados devem ser posicionados na plataforma de impressão? Usado em conjunção com plataforma múltipla de impressão (EXPERIMENTAL)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Não posicionar objetos ao carregar." - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Impressoras" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3056,7 +3242,7 @@ msgid "Aborting print..." msgstr "Abortando impressão..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Perfis" @@ -3071,18 +3257,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Duplicar" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3093,18 +3267,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplicar Perfil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3125,96 +3287,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Impressora: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Perfis Protegidos" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Perfis personalizados" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Atualizar perfil com ajustes atuais" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Descartar ajustes atuais" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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 e sobrepujanças na lista abaixo." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Seus ajustes atuais coincidem com o perfil selecionado." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globais" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Criar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar Material" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com sucesso" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado para %1 com sucesso" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impressora" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Adicionar Impressora" @@ -3229,6 +3338,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Adicionar Impressora" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3384,33 +3498,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos os valores alterados para todos os extrusores" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Não exibir este ajuste" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Manter este ajuste visível" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar a visibilidade dos ajustes..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Encolher Todos" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Expandir Todos" @@ -3504,7 +3618,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -3557,7 +3671,7 @@ msgid "The nozzle inserted in this extruder." msgstr "O bico inserido neste extrusor." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Mesa de Impressão" @@ -3582,6 +3696,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3680,38 +3809,11 @@ msgstr "" "Configuração de Impressão desabilitada\n" "Arquivos G-Code não podem ser modificados" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00h 00min" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Especificação de tempo" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Especificação de custo" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Total:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3722,30 +3824,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Configuração de Impressão Personalizada

Imprimir com controle fino sobre cada parte do processo de fatiamento." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Impressão ativa" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Nome do Trabalho" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Tempo de Impressão" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo restante estimado" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "A<ernar Tela Cheia" +msgid "Toggle Full Screen" +msgstr "Alternar Tela Cheia" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3764,28 +3866,28 @@ msgstr "Sair (&Q)" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" +msgid "3D View" msgstr "Visão &3D" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "Visão &Frontal" +msgid "Front View" +msgstr "Visão Frontal" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "Visão Superior (&T)" +msgid "Top View" +msgstr "Visão Superior" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "Visão do Lado Esquerdo (&L)" +msgid "Left Side View" +msgstr "Visão do Lado Esquerdo" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "Visão do Lado Direito (&R)" +msgid "Right Side View" +msgstr "Visão do Lado Direito" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3839,188 +3941,187 @@ msgstr "Relatar um &Bug" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "Sobre (&A)..." +msgid "About..." +msgstr "Sobre..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "Remover Modelo &Selecionado" -msgstr[1] "Remover Modelos &Selecionados" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Remover Modelo Selecionado" +msgstr[1] "Remover Modelos Selecionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Centralizar Modelo Selecionado" msgstr[1] "Centralizar Modelos Selecionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar Modelo Selecionado" msgstr[1] "Multiplicar Modelos Selecionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Remover Modelo" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntralizar Modelo na Mesa" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "A&grupar Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Co&mbinar Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar Modelo..." +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Selecionar Todos Os Modelos" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "&Selecionar Todos Os Modelos" +msgid "Clear Build Plate" +msgstr "Esvaziar a Mesa de Impressão" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "Esvaziar a Mesa de Impressão (&C)" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "Recarregar Todos Os Mode&los" +msgid "Reload All Models" +msgstr "Recarregar Todos Os Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 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/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Posicionar Todos os Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Posicionar Seleção" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Reestabelecer as Posições de Todos Os Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "Remover as &Transformações de Todos Os Modelos" +msgid "Reset All Model Transformations" +msgstr "Remover as Transformações de Todos Os Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Abrir Arquiv&o(s)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Novo Projeto..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Exibir o Registro do Motor de Fatiamento (&L)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Exibir Pasta de Configuração" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Navegar pacotes..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Expandir/Encolher Barra Lateral" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Por favor carregue um modelo 3D" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Pronto para fatiar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Fatiando..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Pronto para %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Incapaz de Fatiar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Fatiamento indisponível" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Fatiar trabalho de impressão atual" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Cancelar processo de fatiamento" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Preparar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Cancelar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Selecione o dispositivo de saída ativo" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Abrir arquivo(s)" @@ -4040,129 +4141,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "Arquivo (&F)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "Salvar &Seleção em Arquivo" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "S&alvar Como..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "Salvar &Projeto..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Editar" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Ver" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "Aju&stes" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "Im&pressora" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Material" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Definir Como Extrusor Ativo" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Habilitar Extrusor" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Desabilitar Extrusor" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "Plataforma de Impressão (&B)" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Perfil" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensões" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "Ferramen&tas" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&referências" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "Ajuda (&H)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Este pacote será instalado após o reinício." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Abrir arquivo" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Ajustes" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Novo projeto" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Instalar Pacote" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Abrir Arquivo(s)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4172,112 +4289,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Salvar Projeto" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Plataforma de Impressão" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrusor %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & material" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Não exibir resumo do projeto ao salvar novamente" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Salvar" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Altura de Camada" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Este perfil de qualidade não está disponível para seu material e sua configuração de bicos atuais. Por favor altere-os para abilitar este perfil de qualidade" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "Um perfil personalizado está atualmente ativo. Para habilitar o controle deslizante de qualidade, escolha um perfil de qualidade default na aba Personalizado" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Velocidade de Impressão" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Mais Lento" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Mais Rápido" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Preenchimento:" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Habilitar gradual" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Gerar Suportes" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Selecione qual extrusor a usar para o suporte. Isto construirá estruturas de suportes abaixo do modelo para prevenir que o modelo desabe ou seja impresso no ar." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Aderência à Mesa de Impressão" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Precisa de ajuda para melhorar sua impressões?
Leia os Guias de Resolução de Problema da Ultimaker" @@ -4324,22 +4441,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Tipo de impressora" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Material" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Use camada de aderência ou cola com esta combinação de material" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Verificar compatibilidade" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Clique para verificar a compatibilidade do material em Ultimaker.com." @@ -4429,16 +4546,6 @@ msgctxt "name" msgid "God Mode" msgstr "Modo Deus" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Aceita G-Code e o envia através da WiFi para uma WiFi-Box Doodle3D." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "WiFi-Box Doodle3D" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4519,16 +4626,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Estágio de Preparação" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Provê uma janela de edição para edição direta de script." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Ferramenta de scripting integrada" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4639,16 +4736,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Leitor de Perfis de Cura Legado" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Ajuda a abrir arquivos do Blender diretamente no Cura." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Integração ao Blender (experimental)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4699,6 +4786,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Atualização de Versão de 2.7 para 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4809,6 +4906,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Gravador de Perfis do Cura" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Permite que fabricantes de material criem novos perfis de material e qualidade usando uma interface drop-in." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Assistente de Perfil de Impressão" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4839,6 +4946,218 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Leitor de Perfis do Cura" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Imprimir com a WiFi-Box do Doodle3D" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Imprimir com a WiFi-Box do Doodle3D" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Conectando ao Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Enviando dados ao Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Incapaz de enviar dados ao Doodle3D Connect. Há outro trabalho ainda ativo?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Armazenando dados no Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Arquivo enviado ao Doodle3D Connect" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Abrir Connect..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Abrir a interface web do Doodle3D Connect" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Arquivo do Blender" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "Não foi possível exportar usando qualidade \"{}\"!\n" +#~ "Foi usada a \"{}\"." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "Contato" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 não está configurada para hospedar um grupo de impressora Ultimaker 3 conectadas" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Adicionar/Remover impressoras" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Abre a página de trabalhos de impressão com seu navegador default." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Visualizar trabalhos de impressão" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Preparando para imprimir" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Imprimindo" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Disponível" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Conexão à impressora perdida" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Indisponível" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Desconhecido" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Desabilitado" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Reservado" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Preparando para imprimir" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "A impressão foi interrompida" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Não aceitando trabalhos de impressão" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Termina em: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Esvaziar a mesa de impressão" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "Esperando alteração de configuração" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Trabalhos de impressão" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Impressoras" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Visualizar impressoras" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Pausar" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Continuar" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Abortar Impressão" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Sempre perguntar" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Sobrepujar Perfil" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "Novos modelos carregados devem ser posicionados na plataforma de impressão? Usado em conjunção com plataforma múltipla de impressão (EXPERIMENTAL)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Não posicionar objetos ao carregar." + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "Salvar &Seleção em Arquivo" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "S&alvar Como..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "Salvar &Projeto..." + +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Use camada de aderência ou cola com esta combinação de material" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Aceita G-Code e o envia através da WiFi para uma WiFi-Box Doodle3D." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "WiFi-Box Doodle3D" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Provê uma janela de edição para edição direta de script." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Ferramenta de scripting integrada" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Ajuda a abrir arquivos do Blender diretamente no Cura." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Integração ao Blender (experimental)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Alerta de Verificador de Modelo" @@ -5106,10 +5425,6 @@ msgstr "Leitor de Perfis do Cura" #~ msgid "Browse plugins..." #~ msgstr "Navegar complementos..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "Plataforma de Impressão (&B)" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "Comp&lementos" @@ -5335,14 +5650,6 @@ msgstr "Leitor de Perfis do Cura" #~ "\n" #~ "Desculpe!" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente de Perfil" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Assistente de Perfil" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "Não há material carregado" @@ -5473,14 +5780,6 @@ msgstr "Leitor de Perfis do Cura" #~ msgid "Configure setting visiblity..." #~ msgstr "Configurar a visibilidade dos ajustes..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Automático: %1" @@ -5517,14 +5816,6 @@ msgstr "Leitor de Perfis do Cura" #~ msgid "GCode Profile Reader" #~ msgstr "Leitor de Perfis de G-Code" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Permite que fabricantes de material criem novos perfis de material e qualidade usando uma interface drop-in." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Assistente de Perfil de Impressão" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "Erros apareceram ao abrir seu arquivo SolidWorks! Por favor verifique se é possível abrir seu arquivo no próprio SolidWorks sem problema também!" @@ -5721,10 +6012,6 @@ msgstr "Leitor de Perfis do Cura" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3 conectadas" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Preparando" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Completado em: " diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index d1d9bebbd2..66a9aa7d3d 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-06-23 05:00-0300\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 e6df9e6b39..68543a2aef 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-23 05:20-0300\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -85,6 +85,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "GUID do material. Este valor é ajustado automaticamente. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1060,6 +1070,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Ziguezague" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1140,6 +1160,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1505,11 +1545,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1535,6 +1570,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1565,6 +1610,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1875,16 +1942,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "A temperatura usada para a mesa aquecida na primeira camada." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2722,8 +2779,8 @@ msgstr "Modo de Combing" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2740,6 +2797,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "Não no Contorno" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3120,11 +3182,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3185,6 +3242,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3475,11 +3552,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3515,11 +3587,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3555,16 +3622,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3891,8 +3973,8 @@ msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para aux #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Espaçamento de Linhas do Raft" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4109,16 +4191,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Espessura da Torre de Purga" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4159,26 +4231,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Limpar Bico Depois da Troca" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Volume de Purga da Torre de Purga" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4664,6 +4716,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5323,6 +5385,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5353,16 +5435,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Se uma região do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Seção Pendente Máxima da Parede de Ponte" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5583,6 +5655,66 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Espaçamento de Linhas do Raft" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Espessura da Torre de Purga" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Limpar Bico Depois da Troca" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume de Purga da Torre de Purga" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Seção Pendente Máxima da Parede de Ponte" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index cb52613320..f77df4d932 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-06-21 14:30+0100\n" "Last-Translator: Paulo Miranda \n" "Language-Team: Paulo Miranda , Portuguese \n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Ficheiro G-code" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -60,68 +71,7 @@ msgstr "" "

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

\n" "

Ver o guia de qualidade da impressão

" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Imprimir com a Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Imprimir com a Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "A ligar ao Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "A enviar dados para o Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Não é possível enviar dados para o Doodle3D Connect. Será que há outro trabalho ainda ativo?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "A guardar dados no Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Ficheiro enviado para o Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Abrir Connect..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Abrir a interface web do Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Mostrar Lista das Alterações de cada Versão" @@ -129,12 +79,12 @@ msgstr "Mostrar Lista das Alterações de cada Versão" # rever! # flatten -ver contexto! # nivelar? -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Nivelar Definições Ativas" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "O perfil foi nivelado & ativado." @@ -159,6 +109,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Ligado via USB" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -181,6 +136,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Ficheiro G-code comprimido" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -205,7 +165,7 @@ msgstr "Guardar no Disco Externo {0}" # rever! # contexto #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 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!" @@ -244,7 +204,7 @@ msgstr "Não foi possível guardar no Disco Externo {0}: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Erro" @@ -276,8 +236,8 @@ msgstr "Ejetar Disco Externo {0}" # Atenção? #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Aviso" @@ -304,97 +264,97 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Disco Externo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Imprimir através da rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Imprimir através da rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Ligado através da rede." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Ligado através da rede. Por favor aprove o pedido de acesso, na impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Ligado através da rede. Sem autorização para controlar a impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Acesso à impressora solicitado. Por favor aprove o pedido de acesso, na impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Estado da autenticação" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Estado da autenticação" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Tentar de Novo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Reenviar a solicitação de acesso" # rever! # aceite? -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Acesso à impressora confirmado" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Sem autorização para imprimir com esta impressora. Não foi possível enviar o trabalho de impressão." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Solicitar Acesso" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Enviar pedido de acesso para a impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Não é possível iniciar um novo trabalho de impressão." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Existe um problema com a configuração da sua Ultimaker, o qual impede o inicio da impressão. Por favor resolva este problema antes de continuar." @@ -402,110 +362,125 @@ msgstr "Existe um problema com a configuração da sua Ultimaker, o qual impede # rever! # ver contexto! pode querer dizer # Configuração incompatível -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Divergência de Configuração" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Tem a certeza de que deseja imprimir com a configuração selecionada?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Existe uma divergência entre a configuração ou calibração da impressora e o Cura. Para se obter os melhores resultados, o seccionamento (no Cura) deve ser sempre feito para os núcleos de impressão e para os materiais que estão introduzidos na impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "O envio de novos trabalhos está (temporariamente) bloqueado; o trabalho de impressão anterior ainda está a ser enviado." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "A enviar dados para a impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "A Enviar Dados" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Nenhum PrintCore instalado na ranhura {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Nenhum material carregado na ranhura {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "PrintCore diferente (Cura: {cura_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Sincronizar com a impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Deseja utilizar a configuração atual da impressora no Cura?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Os núcleos de impressão e/ou materiais na sua impressora são diferentes dos definidos no seu projeto atual. Para se obter os melhores resultados, o seccionamento (no Cura) deve ser sempre feito para os núcleos de impressão e para os materiais que estão introduzidos na impressora." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Ligado através da rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Dados Enviados" # rever! # contexto -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "Ver no Monitor" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "A impressora {printer_name} terminou a impressão de \"{job_name}\"." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." @@ -513,12 +488,12 @@ msgstr "O trabalho de impressão '{job_name}' terminou." # rever! # Concluída? -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Impressão terminada" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Ligar Através da Rede" @@ -528,24 +503,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Monitorizar" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "Estão disponíveis novas funcionalidades para a impressora {machine_name}! É recomendado atualizar o firmware da impressora." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, 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/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Como atualizar" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Não foi possível aceder às informações de atualização." @@ -555,17 +530,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vista Camadas" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 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/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Visualização por Camadas" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "Modificar G-code" @@ -579,32 +554,32 @@ 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/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "O Cura recolhe, de forma anónima, estatísticas sobre as opções usadas." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "A Recolher Dados" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Mais informação" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Saiba mais sobre que informação o Cura envia." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Permitir" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Permitir que o Cura envie de forma anónima, estatísticas sobre as opções usadas, para nos ajudar a estabelecer as prioridades para os futuros desenvolvimentos do Cura. São enviadas apenas algumas das preferências e definições usadas, a versão do Cura e um valor \"hash\" dos modelos que está a seccionar." @@ -614,20 +589,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Perfis Cura 15.04" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Ficheiro Blender" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "" -"Não foi possível exportar utilizando a qualidade \"{}\"!\n" -"Foi revertido para \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -653,55 +614,62 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Imagem GIF" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Não é possível Seccionar" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + # rever! # models fit the # dentro do? # contido pelo # se adapta? # cabem no...? -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Sem conteúdo para seccionar porque nenhum dos modelos está dentro do volume de construção. Por favor redimensione, mova ou rode os modelos para os adaptar ao volume de construção." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "A Processar Camadas" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Informações" @@ -728,18 +696,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Personalizado" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Ficheiro 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Nozzle" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -750,18 +729,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "Ficheiro G" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "A analisar G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "Detalhes do G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -772,16 +751,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil Cura" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "Ficheiro 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Ficheiro 3MF de Projeto Cura" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -863,19 +857,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Desconhecido" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Ficheiro pré-seccionado {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "O Ficheiro Já Existe" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -887,23 +881,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Manter" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "O material selecionado é incompatível com a máquina ou a configuração selecionada." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Material incompatível" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento: [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Definições atualizadas" @@ -986,13 +980,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "O perfil não inclui qualquer tipo de qualidade." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Não foi possível encontrar um tipo de qualidade {0} para a configuração atual." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -1021,42 +1015,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos os Ficheiros (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Material Personalizado" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Personalizado" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Volume de construção" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 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/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Backup" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 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/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "Tentou restaurar um Cura backup que não corresponde á sua versão actual." @@ -1067,33 +1061,33 @@ msgid "Multiplying and placing objects" msgstr "Multiplicar e posicionar objetos" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "A Posicionar Objeto" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "A Procurar Posição" # rever! #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Não é Possível Posicionar" @@ -1236,223 +1230,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "A carregar máquinas..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "A configurar cenário..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "A carregar interface..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "O modelo selecionado era demasiado pequeno para carregar." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Definições da máquina" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Impressora" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Definições da Impressora" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (Largura)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profundidade)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Altura)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Forma da base de construção" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Origem no centro" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Base aquecida" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Variante do G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Definições Cabeça de Impressão" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X mín" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distância desde a parte esquerda da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y mín" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distância desde a parte frontal da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X máx" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distância desde a parte direita da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y máx" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Distância desde a parte posterior da cabeça de impressão até ao centro do nozzle. Utilizado para impedir colisões entre as impressões anteriores e a cabeça de impressão ao imprimir \"Individualmente\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Altura do pórtico" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y). Utilizado para impedir colisões entre as impressões anteriores e o pórtico ao imprimir \"Individualmente\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Número de Extrusores" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "G-code Inicial" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "Comandos G-code a serem executados no início." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "G-code Final" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Comandos G-code a serem executados no final." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Definições do Nozzle" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Tamanho do nozzle" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Diâmetro do material compatível" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será substituído pelo material e/ou perfil." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Desvio X do Nozzle" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Desvio Y do Nozzle" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "G-code Inicial do Extrusor" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "G-code Final do Extrusor" @@ -1472,29 +1466,42 @@ 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Plug-ins" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiais" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Versão" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Actualizado em" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Autor" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Desconhecido" @@ -1527,16 +1534,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Anterior" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Sair do Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1583,12 +1630,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Rejeitar" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "Em Destaque" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Compatibilidade" @@ -1598,10 +1645,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "A obter pacotes..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "Contacto" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1615,9 +1667,9 @@ msgstr "Lista das Alterações" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1665,22 +1717,22 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Contrato de Utilizador" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Ligação Existente" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Esta impressora/grupo já foi adicionada ao Cura. Por favor selecione outra impressora/grupo." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Ligar a uma Impressora em Rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" @@ -1691,285 +1743,291 @@ msgstr "" "\n" "Selecione a sua impressora na lista em baixo:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Adicionar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Editar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Remover" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Atualizar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Tipo" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Versão de Firmware" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Endereço" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Esta impressora não está configurada para ser Host de um grupo de impressoras Ultimaker 3." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Esta impressora é o Host de um grupo de %1 impressoras Ultimaker 3." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "A impressora neste endereço ainda não respondeu." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Ligar" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Endereço da Impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Introduza o endereço IP ou o hostname da sua impressora na rede." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Imprimir Através da Rede" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Seleção de Impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Imprimir" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 não está configurada para ser Host de um grupo de impressoras Ultimaker 3 ligadas em rede" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Adicionar / Remover Impressoras" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Abre a página com a lista dos trabalhos de impressão, no seu browser predefinido." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Ver Trabalhos em Impressão" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "A preparar para imprimir" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "A Imprimir" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Disponível" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Perdeu-se a ligação com a impressora" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Desconhecida" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Desativada" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Reservada" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Impressão terminada" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "A preparar para imprimir" - -# rever! -# ver contexto! -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Ação necessária" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "Em Pausa" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "A Recomeçar" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Impressão cancelada" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Não são aceites trabalhos de impressão" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Termina às: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Limpar base de construção" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "A aguardar pela alteração de configuração" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Trabalhos em Impressão" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "A Imprimir" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "Em fila" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Impressoras" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "A Imprimir" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Ver Impressoras" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Cancelar impressão" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Impressão terminada" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "Em Pausa" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "A Recomeçar" + +# rever! +# ver contexto! +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Ação necessária" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Ligar a uma impressora" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Importar a configuração da impressora para o Cura" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Ativar Configuração" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Esquema de cores" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Cor do Material" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Tipo de Linha" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Velocidade de Alimentação" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Espessura da Camada" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Modo Compatibilidade" @@ -1977,32 +2035,32 @@ msgstr "Modo Compatibilidade" # rever! # Mostrar...? # Ver...? -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Deslocações" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Auxiliares" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Invólucro" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Enchimento" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Só Camadas Superiores" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "5 Camadas Superiores Detalhadas" @@ -2010,22 +2068,22 @@ msgstr "5 Camadas Superiores Detalhadas" # rever! # todas as strings com a frase # Topo / Base ?? -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Superior / Inferior" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Parede Interior" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "mín" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "máx" @@ -2146,53 +2204,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Tipo de Objecto" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Modelo normal" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Imprimir como suporte" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Retirar suportes na intercepção com outros modelos" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Alterar as definições dos objetos que intercepta" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Modificar definições do enchimento de outros modelos" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Selecionar definições" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Selecionar definições a personalizar para este modelo" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtrar..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Mostrar tudo" @@ -2214,13 +2272,13 @@ msgid "Create new" msgstr "Criar nova" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumo – Projeto Cura" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Definições da impressora" @@ -2237,7 +2295,7 @@ msgid "Update" msgstr "Atualizar" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Tipo" @@ -2248,7 +2306,7 @@ msgid "Printer Group" msgstr "Grupo da Impressora" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Definições do perfil" @@ -2260,13 +2318,13 @@ msgstr "Como deve ser resolvido o conflito no perfil?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Nome" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Inexistente no perfil" @@ -2274,7 +2332,7 @@ msgstr "Inexistente no perfil" # rever! # contexto?! #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2304,7 +2362,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Como deve ser resolvido o conflito no material?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Visibilidade das definições" @@ -2315,13 +2373,13 @@ msgid "Mode" msgstr "Modo" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Definições visíveis:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 de %2" @@ -2336,6 +2394,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Abrir" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00h00min" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Especificação de custos" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Total:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2562,26 +2696,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Remova a impressão" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Colocar em pausa" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Retomar" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Cancelar impressão" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Cancelar impressão" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2618,19 +2736,17 @@ msgid "Customized" msgstr "Personalizado" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Perguntar sempre isto" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Descartar e não perguntar novamente" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Manter e não perguntar novamente" @@ -2650,101 +2766,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Criar novo perfil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Informações" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar Alteração de Diâmetro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Nome" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Marca" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Tipo de Material" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Cor" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Propriedades" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Densidade" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Diâmetro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Custo do Filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Peso do Filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Comprimento do filamento" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Custo por Metro" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Desassociar Material" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Descrição" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Informações de Aderência" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Definições de impressão" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Ativar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Criar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Impressora" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar material" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material %1 importado com êxito" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material exportado com êxito para %1" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2781,7 +2969,7 @@ msgid "Unit" msgstr "Unidade" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Geral" @@ -2975,8 +3163,8 @@ msgstr "Comportamento predefinido ao abrir um ficheiro de projeto: " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Perguntar sempre" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2995,79 +3183,77 @@ msgstr "Quando tiver realizado alterações a um perfil e mudado para outro, ser #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Substituir perfil" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Privacidade" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Procurar atualizações ao iniciar" # rever! # legal wording -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Enviar dados (anónimos) sobre a impressão" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Mais informação" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Experimental" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Usar a funcionalidade de múltiplas bases de construção" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Usar a funcionalidade de múltiplas bases de construção (é necessário reiniciar)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "Devem os novos modelos abertos ser dispostos na base de construção? Utilizado em conjunto com múltiplas bases de construção (EXPERIMENTAL)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Não dispor os objectos ao abrir" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Impressoras" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3111,7 +3297,7 @@ msgid "Aborting print..." msgstr "A cancelar impressão..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Perfis" @@ -3126,18 +3312,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Duplicar" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3148,18 +3322,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Duplicar Perfil" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3180,96 +3342,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Impressora: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Perfis protegidos" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Perfis personalizados" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Atualizar perfil com as definições/substituições atuais" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Descartar alterações atuais" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "As suas definições atuais correspondem ao perfil selecionado." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Definições Globais" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Criar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar material" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com êxito" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado com êxito para %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impressora" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Adicionar Impressora" @@ -3284,6 +3393,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Adicionar Impressora" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3442,33 +3556,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Copiar todos os valores alterados para todos os extrusores" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Esconder esta definição" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Não mostrar esta definição" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Manter esta definição visível" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar visibilidade das definições..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Esconder Tudo" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Mostrar Tudo" @@ -3581,7 +3695,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Enviar um comando G-code personalizado para a impressora ligada. Prima \"Enter\" para enviar o comando." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -3634,7 +3748,7 @@ msgid "The nozzle inserted in this extruder." msgstr "O nozzle inserido neste extrusor." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Base de construção" @@ -3659,6 +3773,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3759,38 +3888,11 @@ msgstr "" "Configuração da Impressão desativada\n" "Os ficheiros G-code não podem ser modificados" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00h00min" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Especificação de tempo" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Especificação de custos" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Total:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3801,30 +3903,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Configuração de Impressão Personalizada

Imprimir com um controlo detalhado de todas as definições específicas de cada uma das etapas do processo de seccionamento." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Impressão ativa" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Nome do trabalho" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Tempo de Impressão" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Tempo restante estimado" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "Alternar para e&crã inteiro" +msgid "Toggle Full Screen" +msgstr "Alternar para ecrã inteiro" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3843,28 +3945,28 @@ msgstr "&Sair" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "Vista &3D" +msgid "3D View" +msgstr "Vista 3D" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "Vista &Frente" +msgid "Front View" +msgstr "Vista Frente" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "Vista &Cima" +msgid "Top View" +msgstr "Vista Cima" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "Vista Lado &Esquerdo" +msgid "Left Side View" +msgstr "Vista Lado Esquerdo" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "Vista Lado &Direito" +msgid "Right Side View" +msgstr "Vista Lado Direito" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3918,134 +4020,133 @@ msgstr "Reportar um &erro" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "&Sobre..." +msgid "About..." +msgstr "Sobre..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "Apagar Modelo &Selecionado" -msgstr[1] "Apagar Modelos &Selecionados" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Apagar Modelo Selecionado" +msgstr[1] "Apagar Modelos Selecionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Centrar modelo selecionado" msgstr[1] "Centrar modelos selecionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar modelo selecionado" msgstr[1] "Multiplicar modelos selecionados" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Apagar Modelo" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrar Modelo na Base" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Agrupar Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Combinar Modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar Modelo..." +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Selecionar todos os modelos" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "&Selecionar todos os modelos" +msgid "Clear Build Plate" +msgstr "Limpar base de construção" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&Limpar base de construção" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "Re&carregar todos os modelos" +msgid "Reload All Models" +msgstr "Recarregar todos os modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 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/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Dispor todos os modelos" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Dispor seleção" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Repor todas as posições de modelos" # rever! # Cancelar todas? -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "Repor Todas as &Transformações do Modelo" +msgid "Reset All Model Transformations" +msgstr "Repor Todas as Transformações do Modelo" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Abrir Ficheiro(s)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Novo Projeto..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Mostrar ®isto de motor..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostrar pasta de configuração" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Procurar pacotes..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Mostrar/Esconder Barra Lateral" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Por favor abra um Modelo 3D ou Projeto" @@ -4053,12 +4154,12 @@ msgstr "Por favor abra um Modelo 3D ou Projeto" # rever! # Pronto para? # Preparado para? -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Disponível para seccionar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "A Seccionar..." @@ -4067,48 +4168,48 @@ msgstr "A Seccionar..." # Pronto para? # Preparado para? # Disponível para? -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Pronto para %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Não é possível Seccionar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Seccionamento indisponível" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Seccionar o trabalho de impressão atual" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Cancelar o processo de seccionamento" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Preparar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Cancelar" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Selecione o dispositivo de saída" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Abrir ficheiro(s)" @@ -4128,129 +4229,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Ficheiro" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "&Guardar seleção para ficheiro" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Guardar &como..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "Guardar &Projeto..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "&Editar" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Visualizar" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "&Definições" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Impressora" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Material" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Definir como Extrusor Ativo" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Ativar Extrusor" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Desativar Extrusor" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "&Base de construção" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Perfil" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "E&xtensões" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&Toolbox" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "P&referências" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Ajuda" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Este pacote será instalado após reiniciar." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Abrir ficheiro" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Definições" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Novo projeto" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Instalar Pacote" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Abrir ficheiro(s)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4260,87 +4377,87 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Guardar projeto" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Base de construção" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrusor %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & material" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Não mostrar novamente o resumo do projeto ao guardar" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Guardar" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Espessura da Camada" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Este perfil de qualidade não está disponível para a sua atual configuração de nozzle e material. Por favor altere-a para poder ativar este perfil de qualidade" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "De momento está ativo um perfil personalizado. Para poder ativar o controlo de qualidade, por favor selecione um dos perfis de qualidade predefinidos no modo Personalizado" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Velocidade Impressão" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Mais Lenta" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Mais Rápida" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Enchimento" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Enchimento Gradual" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Criar Suportes" @@ -4348,7 +4465,7 @@ msgstr "Criar Suportes" # rever! # collapse ? # desmoronar? desabar? -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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." @@ -4358,22 +4475,22 @@ msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliê # sagging? deformar? # Isto irá construir estruturas de suporte debaixo do modelo para impedir a deformação de partes suspensas do modelo ou que a impressão seja feita no ar. # a utilizar? usado? -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Selecionar qual o extrusor usado para imprimir os suportes. Isto irá construir estruturas de suporte por debaixo do modelo para impedir que as partes suspensas do modelo se deformem ou que sejam impressas no ar." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Aderência à Base" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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 (Brim) ou Raft. Isto irá adicionar, respectivamente, uma área plana em torno ou sob a base do seu objeto, que são fáceis de retirar posteriormente." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Precisa de ajuda para melhorar as suas impressões?
Por favor leia os Guias Ultimaker de Resolução de Problemas" @@ -4425,22 +4542,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Tipo de impressora" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Material" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Use folhas de adesão ou cola, com estes materiais" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Compatibilidade entre Materiais" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Clique para verificar a compatibilidade entre os materiais em Ultimaker.com." @@ -4530,16 +4647,6 @@ msgctxt "name" msgid "God Mode" msgstr "Modo God" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Recebe ficheiros G-code e envia-os por Wi-Fi para uma Doodle3D Wi-Fi Box." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D Wi-Fi Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4628,16 +4735,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Fase de preparação" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Fornece uma janela de edição para a edição direta de scripts." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Ferramenta de scripting em direto" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4749,16 +4846,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Leitor de perfis antigos do Cura" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Ajuda a abrir ficheiros do Blender diretamente no Cura." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Integração com o Blender (experimental)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4809,6 +4896,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Atualização da versão 2.7 para 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4921,6 +5018,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Gravador de perfis Cura" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "" + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4951,6 +5058,218 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Leitor de Perfis Cura" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Imprimir com a Doodle3D WiFi-Box" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Imprimir com a Doodle3D WiFi-Box" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "A ligar ao Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "A enviar dados para o Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Não é possível enviar dados para o Doodle3D Connect. Será que há outro trabalho ainda ativo?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "A guardar dados no Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Ficheiro enviado para o Doodle3D Connect" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Abrir Connect..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Abrir a interface web do Doodle3D Connect" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Ficheiro Blender" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "Não foi possível exportar utilizando a qualidade \"{}\"!\n" +#~ "Foi revertido para \"{}\"." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "Contacto" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Esta impressora não está configurada para ser Host de um grupo de impressoras Ultimaker 3." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Esta impressora é o Host de um grupo de %1 impressoras Ultimaker 3." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 não está configurada para ser Host de um grupo de impressoras Ultimaker 3 ligadas em rede" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Adicionar / Remover Impressoras" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Abre a página com a lista dos trabalhos de impressão, no seu browser predefinido." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Ver Trabalhos em Impressão" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "A preparar para imprimir" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "A Imprimir" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Disponível" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Perdeu-se a ligação com a impressora" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Indisponível" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Desconhecida" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Desativada" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Reservada" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "A preparar para imprimir" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Impressão cancelada" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Não são aceites trabalhos de impressão" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Termina às: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Limpar base de construção" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "A aguardar pela alteração de configuração" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Trabalhos em Impressão" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Impressoras" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Ver Impressoras" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Colocar em pausa" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Retomar" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Cancelar impressão" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Perguntar sempre" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Substituir perfil" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "Devem os novos modelos abertos ser dispostos na base de construção? Utilizado em conjunto com múltiplas bases de construção (EXPERIMENTAL)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Não dispor os objectos ao abrir" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "&Guardar seleção para ficheiro" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Guardar &como..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "Guardar &Projeto..." + +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Use folhas de adesão ou cola, com estes materiais" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Recebe ficheiros G-code e envia-os por Wi-Fi para uma Doodle3D Wi-Fi Box." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D Wi-Fi Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Fornece uma janela de edição para a edição direta de scripts." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Ferramenta de scripting em direto" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Ajuda a abrir ficheiros do Blender diretamente no Cura." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Integração com o Blender (experimental)" + # rever! #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" @@ -5223,10 +5542,6 @@ msgstr "Leitor de Perfis Cura" #~ msgid "Browse plugins..." #~ msgstr "Procurar plug-ins..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Base de construção" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "P&lug-ins" diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index db86214140..8486de3f69 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-06-21 14:30+0100\n" "Last-Translator: Paulo Miranda \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 6b573364cb..f56cc56345 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-06-21 14:30+0100\n" "Last-Translator: Paulo Miranda \n" "Language-Team: Paulo Miranda , Portuguese \n" @@ -86,6 +86,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "GUID do material. Este é definido automaticamente. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1081,6 +1091,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Ziguezague" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1170,6 +1190,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Compensar o fluxo em partes de uma parede interior a ser impressa, onde já exista uma parede." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1574,11 +1614,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1604,6 +1639,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Ligar as extremidades onde o padrão de enchimento entra em contacto com a parede interior utilizando uma linha que acompanha a forma da parede interior. Ativar esta definição pode melhorar a adesão do enchimento às paredes e reduzir os efeitos do enchimento na qualidade das superfícies verticais. Desativar esta definição reduz a quantidade de material utilizado." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1637,6 +1682,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1952,16 +2019,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2843,8 +2900,8 @@ msgstr "Modo de Combing" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "\"Combing\" mantém o nozzle dentro das áreas já impressas durante o movimento. Isto resulta em movimentos ligeiramente mais longos, mas reduz a necessidade de retrações. Se o \"Combing\" estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha recta para o próximo ponto. Também é possível evitar o \"Combing\" em áreas de revestimento superiores/inferiores efetuando o \"Combing\" apenas dentro do enchimento." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2861,6 +2918,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "Não no Revestimento" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3256,11 +3318,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3324,6 +3381,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3614,11 +3691,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3654,11 +3726,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3697,16 +3764,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Concêntrico 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -4037,8 +4119,8 @@ msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linh #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Espaçamento Linhas Base Raft" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4255,16 +4337,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Espessura da torre de preparação" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "A espessura da torre de preparação oca. Uma espessura superior a metade do Volume mínimo da torre de preparação irá resultar numa torre de preparação densa." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4305,33 +4377,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Após a impressão da torre de preparação com um nozzle, limpe o material que vazou do nozzle para a torre de preparação." -# rever! -# mudança? -# troca? -# substituição? -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Limpar nozzle após mudança" - -# rever! -# vazou? vazado? -# escorreu? escorrido? -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Após a mudança de extrusor, limpar o material que escorreu do nozzle na primeira \"coisa\" impressa. Isto executa um movimento lento de limpeza num local onde o material que tenha escorrido seja menos prejudicial para a qualidade da superfície da sua impressão." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Volume Purga Torre Preparação" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Quantidade de filamento a ser purgado ao limpar na torre de preparação. A purga é útil para compensar o filamento perdido por escorrimento durante a inatividade do nozzle." - # rever! #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" @@ -4844,6 +4889,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5368,7 +5423,9 @@ msgctxt "wireframe_up_half_speed description" msgid "" "Distance of an upward move which is extruded with half speed.\n" "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "A distância de um movimento ascendente que é extrudido a metade da velocidade.\nIsto pode causar melhor aderência às camadas anteriores, sendo que o material nessas camadas não é demasiado aquecido. Aplica-se apenas à impressão de fios." +msgstr "" +"A distância de um movimento ascendente que é extrudido a metade da velocidade.\n" +"Isto pode causar melhor aderência às camadas anteriores, sendo que o material nessas camadas não é demasiado aquecido. Aplica-se apenas à impressão de fios." #: fdmprinter.def.json msgctxt "wireframe_top_jump label" @@ -5515,6 +5572,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "O limiar em que se deve usar, ou não, uma menor espessura de camada. Este número é comparado com a tangente da inclinação mais acentuada numa camada." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5545,16 +5622,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Se uma região de revestimento for suportada por menos do que esta percentagem da sua área, imprima-a utilizando as definições de Bridge. Caso contrário, será impressa utilizando as definições de revestimento normais." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Saliências máx. da parede de Bridge" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "A largura máxima permitida para a região de ar sob uma linha de parede, antes de a parede ser impressa utilizando as definições de Bridge. Expressa como uma percentagem da largura da linha de parede. Quando a folga de ar é mais larga do que este valor, a linha de parede é impressa utilizando as definições de Bridge. Caso contrário, a linha de parede é impressa utilizando as definições normais. Quanto mais baixo for o valor, mais provável é que as linhas de parede das saliências sejam impressas utilizando definições de Bridge." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5775,6 +5842,73 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "\"Combing\" mantém o nozzle dentro das áreas já impressas durante o movimento. Isto resulta em movimentos ligeiramente mais longos, mas reduz a necessidade de retrações. Se o \"Combing\" estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha recta para o próximo ponto. Também é possível evitar o \"Combing\" em áreas de revestimento superiores/inferiores efetuando o \"Combing\" apenas dentro do enchimento." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Espaçamento Linhas Base Raft" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Espessura da torre de preparação" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "A espessura da torre de preparação oca. Uma espessura superior a metade do Volume mínimo da torre de preparação irá resultar numa torre de preparação densa." + +# rever! +# mudança? +# troca? +# substituição? +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Limpar nozzle após mudança" + +# rever! +# vazou? vazado? +# escorreu? escorrido? +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Após a mudança de extrusor, limpar o material que escorreu do nozzle na primeira \"coisa\" impressa. Isto executa um movimento lento de limpeza num local onde o material que tenha escorrido seja menos prejudicial para a qualidade da superfície da sua impressão." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume Purga Torre Preparação" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantidade de filamento a ser purgado ao limpar na torre de preparação. A purga é útil para compensar o filamento perdido por escorrimento durante a inatividade do nozzle." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Saliências máx. da parede de Bridge" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "A largura máxima permitida para a região de ar sob uma linha de parede, antes de a parede ser impressa utilizando as definições de Bridge. Expressa como uma percentagem da largura da linha de parede. Quando a folga de ar é mais larga do que este valor, a linha de parede é impressa utilizando as definições de Bridge. Caso contrário, a linha de parede é impressa utilizando as definições normais. Quanto mais baixo for o valor, mais provável é que as linhas de parede das saliências sejam impressas utilizando definições de Bridge." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem otimização." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index b1e85bec74..3151acbd34 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Ruslan Popov , Russian \n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Файл G-code" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -53,80 +64,23 @@ msgid "" "

{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

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

" +msgstr "" +"

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

\n" +"

{model_names}

\n" +"

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

\n" +"

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

" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Печать через Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Печать через Doodle3D WiFi-Box" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Соединение с Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Отмена" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Отправка данных через Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Невозможно отправить данные через Doodle3D Connect. Другое задание активно?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Сохранение данных на Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Файл отправлен через Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Открыть Connect..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Открыть Doodle3D Connect web интерфейс" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Показать журнал изменений" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Сбросить текущие параметры к стандартным значениям" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "Профиль был нормализован и активирован." @@ -151,6 +105,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "Подключено через USB" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -173,6 +132,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Сжатый файл с G-кодом" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -195,7 +159,7 @@ msgid "Save to Removable Drive {0}" msgstr "Сохранить на внешний носитель {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Ни один из форматов файлов не доступен для записи!" @@ -234,7 +198,7 @@ msgstr "Невозможно сохранить на внешний носите #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Ошибка" @@ -263,8 +227,8 @@ msgstr "Извлекает внешний носитель {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Внимание" @@ -291,212 +255,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Внешний носитель" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Печать через сеть" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Печать через сеть" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Подключен по сети." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Подключен по сети. Пожалуйста, подтвердите запрос на принтере." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Подключен по сети. Нет доступа к управлению принтером." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "Запрошен доступ к принтеру. Пожалуйста, подтвердите запрос на принтере" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Состояние аутентификации" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Состояние аутентификации" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Повторить" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Послать запрос доступа ещё раз" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Доступ к принтеру получен" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Нет доступа к использованию этого принтера. Невозможно отправить задачу на печать." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Запросить доступ" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Отправить запрос на доступ к принтеру" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Не удалось начать новое задание печати." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Возникла проблема конфигурации Ultimaker, из-за которой невозможно начать печать. Перед продолжением работы решите возникшую проблему." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Несовпадение конфигурации" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Вы уверены, что желаете печатать с использованием выбранной конфигурации?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Есть несовпадение между конфигурацией или калибровкой принтера и Cura. Для лучшего результата, всегда производите слайсинг для PrintCore и материала, которые установлены в вашем принтере." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Отправка новых заданий (временно) заблокирована, идёт отправка предыдущего задания." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Отправка данных на принтер" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Отправка данных" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Отмена" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Модуль экструдера PrintCore не загружен в слот {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Материал не загружен в слот {slot_number}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "Другой модуль экструдера PrintCore (Cura: {cura_printcore_name}, принтер: {remote_printcore_name}) выбран для экструдера {extruder_id}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Разный материал (Cura: {0}, Принтер: {1}) выбран для экструдера {2}" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Синхронизация с вашим принтером" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Желаете использовать текущую конфигурацию принтера в Cura?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Модуль PrintCore и/или материал в вашем принтере отличается от тех, что вы используете в текущем проекте. Для наилучшего результата всегда указывайте правильный модуль PrintCore и материалы, которые вставлены в ваш принтер." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Подключен по сети." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "Задание печати успешно отправлено на принтер." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Данные отправлены" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "Просмотр на мониторе" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "{printer_name} завершил печать '{job_name}'." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "Задание печати '{job_name}' выполнено." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Печать завершена" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Подключиться через сеть" @@ -506,24 +485,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Монитор" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "Для {machine_name} доступны новые функции! Рекомендуется обновить встроенное программное обеспечение принтера." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "Доступна новая прошивка %s" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Порядок обновления" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Не могу получить информацию об обновлениях." @@ -533,17 +512,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Просмотр слоёв" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "Cura не аккуратно отображает слои при использовании печати через кабель" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Вид моделирования" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "Изменить G-код" @@ -557,32 +536,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Создание объема без печати элементов поддержки." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura собирает анонимизированную статистику об использовании." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Сбор данных" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Дополнительно" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Ознакомьтесь с дополнительной информацией о данных, отправляемых Cura." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "Разрешить" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Разрешить Cura отправлять анонимизированную статистику об использовании, чтобы помочь назначить приоритеты будущим улучшениям в Cura. Отправлены некоторые ваши настройки и параметры, включая версию Cura и хэш моделей, разделяемых на слои." @@ -592,18 +571,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Профили Cura 15.04" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Файл Blender" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "Не удалось выполнить экспорт с использованием качества \"{}\"!\nВыполнен возврат к \"{}\"." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -629,49 +596,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF изображение" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Невозможно нарезать" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Нечего нарезать, так как ни одна модель не попадает в объём принтера. Пожалуйста, отмасштабируйте или поверните модель." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Обработка слоёв" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Информация" @@ -698,18 +672,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Своя" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Файл 3MF" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Сопло" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -720,18 +705,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "Файл G" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "Обработка G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "Параметры G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -742,16 +727,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Профиль Cura" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Помощник по профилю" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Помощник по профилю" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MF файл" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "3MF файл проекта Cura" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -833,19 +833,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Неизвестно" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Предообратка файла {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "Файл уже существует" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -857,23 +857,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Не переопределен" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "Выбранный материал несовместим с выбранным принтером или конфигурацией." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Несовместимый материал" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров: [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Настройки обновлены" @@ -956,13 +956,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "У профайла отсутствует тип качества." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Невозможно найти тип качества {0} для текущей конфигурации." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -989,42 +989,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Все файлы (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Собственный материал" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Своё" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Объём печати" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Не удалось создать архив из каталога с данными пользователя: {}" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Резервное копирование" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных." -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "Попытка восстановить резервную копию Cura, не совпадающую с вашей текущей версией." @@ -1035,32 +1035,32 @@ msgid "Multiplying and placing objects" msgstr "Размножение и размещение объектов" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Размещение объекта" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Невозможно разместить все объекты внутри печатаемого объёма" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Поиск места для новых объектов" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Поиск места" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Не могу найти место" @@ -1078,7 +1078,12 @@ msgid "" "

Backups can be found in the configuration folder.

\n" "

Please send us this Crash Report to fix the problem.

\n" " " -msgstr "

В ПО Ultimaker Cura обнаружена ошибка.

\n

Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.

\n

Резервные копии хранятся в папке конфигурации.

\n

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

\n " +msgstr "" +"

В ПО Ultimaker Cura обнаружена ошибка.

\n" +"

Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.

\n" +"

Резервные копии хранятся в папке конфигурации.

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102 msgctxt "@action:button" @@ -1111,7 +1116,10 @@ msgid "" "

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

\n" "

Please use the \"Send report\" button to post a bug report automatically to our servers

\n" " " -msgstr "

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

\n

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

\n " +msgstr "" +"

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

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177 msgctxt "@title:groupbox" @@ -1191,223 +1199,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Отправить отчёт" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Загрузка принтеров..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Настройка сцены..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Загрузка интерфейса..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "Выбранная модель слишком мала для загрузки." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Параметры принтера" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Принтер" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Параметры принтера" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (Ширина)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "мм" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Глубина)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Высота)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Форма стола" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Начало координат в центре" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Нагреваемый стол" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "Вариант G-кода" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Параметры головы" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X минимум" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Расстояние от левого края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y минимум" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Расстояние от переднего края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X максимум" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Расстояние от правого края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y максимум" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Расстояние от заднего края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Высота портала" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "Разница в высоте от кончика сопла до портала (по осям X и Y). Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Количество экструдеров" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "Стартовый G-код" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "Команды в G-коде, которые будут выполнены в самом начале." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "Завершающий G-код" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Команды в G-коде, которые будут выполнены в самом конце." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Параметры сопла" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Диаметр сопла" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Диаметр совместимого материала" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "Номинальный диаметр материала, поддерживаемый принтером. Точный диаметр будет указан в материале и/или в профиле." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Смещение сопла по оси X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Смещение сопла по оси Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "Стартовый G-код экструдера" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "Завершающий G-код экструдера" @@ -1427,29 +1435,42 @@ msgctxt "@info" msgid "Could not connect to the Cura Package database. Please check your connection." msgstr "Не удалось подключиться к базе данных пакета Cura. Проверьте свое подключение." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Плагины" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Материалы" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Версия" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Последнее обновление" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Автор" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Неизвестно" @@ -1482,16 +1503,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Назад" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 msgctxt "@info" msgid "You will need to restart Cura before changes in packages have effect." msgstr "Вам потребуется перезапустить Cura для активации изменений в пакетах." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Выйти из Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1523,7 +1584,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "Этот плагин содержит лицензию.\nЧтобы установить этот плагин, необходимо принять условия лицензии.\nПринять приведенные ниже условия?" +msgstr "" +"Этот плагин содержит лицензию.\n" +"Чтобы установить этот плагин, необходимо принять условия лицензии.\n" +"Принять приведенные ниже условия?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1535,12 +1599,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Отклонить" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "Рекомендуемые" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Совместимость" @@ -1550,10 +1614,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "Выборка пакетов..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "Контакт" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1567,9 +1636,9 @@ msgstr "Журнал изменений" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1617,356 +1686,365 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Пользовательское соглашение" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Текущее подключение" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Этот принтер/группа уже добавлен (-а) в Cura. Выберите другой (-ую) принтер/группу." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Подключение к сетевому принтеру" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" "\n" "Select your printer from the list below:" -msgstr "Для печати на вашем принтере через сеть, пожалуйста, удостоверьтесь, что ваш принтер подключен к сети с помощью кабеля или через WiFi. Если вы не подключили Cura к вашему принтеру, вы по-прежнему можете использовать USB флешку для переноса G-Code файлов на ваш принтер.\n\nУкажите ваш принтер в списке ниже:" +msgstr "" +"Для печати на вашем принтере через сеть, пожалуйста, удостоверьтесь, что ваш принтер подключен к сети с помощью кабеля или через WiFi. Если вы не подключили Cura к вашему принтеру, вы по-прежнему можете использовать USB флешку для переноса G-Code файлов на ваш принтер.\n" +"\n" +"Укажите ваш принтер в списке ниже:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Добавить" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Правка" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Удалить" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Обновить" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Тип" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Версия прошивки" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Адрес" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Данный принтер не настроен для управления группой принтеров Ultimaker 3." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Данный принтер управляет группой из %1 принтеров Ultimaker 3." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "Принтер по этому адресу ещё не отвечал." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Подключить" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Адрес принтера" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "Введите IP-адрес принтера или его имя в сети." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "OK" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Печать через сеть" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Выбор принтера" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Печать" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 не настроен для управления группой подключенных принтеров Ultimaker 3" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Добавить/удалить принтеры" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Открытие страницы заданий печати в веб-браузере по умолчанию." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Просмотреть задания на печать" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Подготовка к печати" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Печать" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Доступен" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Потеряно соединение с принтером" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Недоступен" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Неизвестно" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Отключено" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Занят" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Завершено" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Подготовка к печати" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Необходимое действие" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "Приостановлено" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Возобновляется" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Печать прервана" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Не принимает задания на печать" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Заканчивается на: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Очистите стол" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "Ожидание изменения конфигурации" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Задания на печать" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Печать" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "Запланировано" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Принтеры" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Печать" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Просмотреть принтеры" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Прекращение печати" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Завершено" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Подготовка" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "Приостановлено" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Возобновляется" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Необходимое действие" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Подключение к принтеру" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Загрузка конфигурации принтера в Cura" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Активировать конфигурацию" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Цветовая схема" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Цвет материала" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Тип линии" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Скорость подачи" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Толщина слоя" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Режим совместимости" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Показать движения" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Показать поддержку" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Показать стенки" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Показать заполнение" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Показать только верхние слои" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "Показать 5 детализированных слоёв сверху" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Дно / крышка" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "Внутренняя стенка" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "мин." -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "макс." @@ -2086,53 +2164,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Сглаживание" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Тип объекта" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Нормальная модель" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Печать в качестве поддержки" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Не поддерживать перекрытие с другими моделями" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Изменять настройки для перекрытия с другими моделями" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Изменять настройки для заполнения других моделей" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Выберите параметры" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Выберите параметр для изменения этой модели" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Фильтр..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Показать всё" @@ -2154,13 +2232,13 @@ msgid "Create new" msgstr "Создать новый" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Сводка - Проект Cura" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Параметры принтера" @@ -2177,7 +2255,7 @@ msgid "Update" msgstr "Обновить" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Тип" @@ -2188,7 +2266,7 @@ msgid "Printer Group" msgstr "Группа принтеров" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Параметры профиля" @@ -2200,19 +2278,19 @@ msgstr "Как следует решать конфликт в профиле?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "Название" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Вне профиля" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2244,7 +2322,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Как следует решать конфликт в материале?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Видимость параметров" @@ -2255,13 +2333,13 @@ msgid "Mode" msgstr "Режим" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Видимые параметры:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 из %2" @@ -2276,6 +2354,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Открыть" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Экспорт" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00 ч 00 мин" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Настройка расчета стоимости" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 м" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 г" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Итого:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1 м / ~ %2 г / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1 м / ~ %2 г" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2494,26 +2648,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Пожалуйста, удалите напечатанное" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Пауза" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Продолжить" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Прервать печать" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Прекращение печати" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2530,7 +2668,9 @@ msgctxt "@text:window" msgid "" "You have customized some profile settings.\n" "Would you like to keep or discard those settings?" -msgstr "Вы изменили некоторые параметры профиля.\nЖелаете сохранить их или вернуть к прежним значениям?" +msgstr "" +"Вы изменили некоторые параметры профиля.\n" +"Желаете сохранить их или вернуть к прежним значениям?" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110 msgctxt "@title:column" @@ -2548,19 +2688,17 @@ msgid "Customized" msgstr "Свой" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Всегда спрашивать меня" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Сбросить и никогда больше не спрашивать" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Сохранить и никогда больше не спрашивать" @@ -2580,101 +2718,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Создать новый профиль" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Информация" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Подтвердить изменение диаметра" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Отображаемое имя" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Брэнд" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Тип материала" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Цвет" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Свойства" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Плотность" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Диаметр" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Стоимость материала" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Вес материала" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Длина материала" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Стоимость метра" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "Данный материал привязан к %1 и имеет ряд его свойств." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Отвязать материал" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Описание" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Информация об адгезии" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Параметры печати" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Активировать" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Создать" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Дублировать" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "Импорт" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Принтер" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Подтвердите удаление" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Импортировать материал" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Не могу импортировать материал %1: %2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Успешно импортированный материал %1" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Экспортировать материал" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Не могу экспортировать материал %1: %2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Материал успешно экспортирован в %1" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2711,7 +2921,7 @@ msgid "Unit" msgstr "Единица" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Общее" @@ -2903,8 +3113,8 @@ msgstr "Стандартное поведение при открытии фай #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Всегда спрашивать" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2923,77 +3133,75 @@ msgstr "При внесении изменений в профиль и пере #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Переопределение профиля" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Приватность" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "Должна ли Cura проверять обновления программы при старте?" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Проверять обновления при старте" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "Отправлять (анонимно) информацию о печати" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Дополнительная информация" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Экспериментальное" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Использовать функционал нескольких рабочих столов" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Использовать функционал нескольких рабочих столов (требуется перезапуск)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "Должны ли новые загруженные модели выравниваться на рабочем столе? Используется в сочетании с несколькими рабочими столами (ЭКСПЕРИМЕНТАЛЬНАЯ ОПЦИЯ)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Не выравнивать объекты под нагрузкой" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Принтеры" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Активировать" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3037,7 +3245,7 @@ msgid "Aborting print..." msgstr "Прерывание печати…" #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Профили" @@ -3052,18 +3260,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Дублировать" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "Импорт" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Экспорт" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3074,18 +3270,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Скопировать профиль" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Подтвердите удаление" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3106,96 +3290,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Принтер: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Защищённые профили" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Собственные профили" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Обновить профиль текущими параметрами" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Сбросить текущие параметры" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Ваши текущие параметры совпадают с выбранным профилем." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Общие параметры" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Материалы" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Создать" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Дублировать" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Импортировать материал" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Не могу импортировать материал %1: %2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Успешно импортированный материал %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Экспортировать материал" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Не могу экспортировать материал %1: %2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Материал успешно экспортирован в %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Принтер" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Добавление принтера" @@ -3210,6 +3341,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Добавить принтер" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3230,7 +3366,9 @@ 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. совместно с сообществом.\nCura использует следующие проекты с открытым исходным кодом:" +msgstr "" +"Cura разработана компанией Ultimaker B.V. совместно с сообществом.\n" +"Cura использует следующие проекты с открытым исходным кодом:" #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118 msgctxt "@label" @@ -3343,7 +3481,10 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "Значения некоторых параметров отличаются от значений профиля.\n\nНажмите для открытия менеджера профилей." +msgstr "" +"Значения некоторых параметров отличаются от значений профиля.\n" +"\n" +"Нажмите для открытия менеджера профилей." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3360,33 +3501,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Копировать все измененные значения для всех экструдеров" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Спрятать этот параметр" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Не показывать этот параметр" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Оставить этот параметр видимым" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Видимость параметров…" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Свернуть все" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Развернуть все" @@ -3397,7 +3538,10 @@ msgid "" "Some hidden settings use values different from their normal calculated value.\n" "\n" "Click to make these settings visible." -msgstr "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n\nЩёлкните, чтобы сделать эти параметры видимыми." +msgstr "" +"Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n" +"\n" +"Щёлкните, чтобы сделать эти параметры видимыми." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3425,7 +3569,10 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "Значение этого параметра отличается от значения в профиле.\n\nЩёлкните для восстановления значения из профиля." +msgstr "" +"Значение этого параметра отличается от значения в профиле.\n" +"\n" +"Щёлкните для восстановления значения из профиля." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3433,7 +3580,10 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n\nЩёлкните для восстановления вычисленного значения." +msgstr "" +"Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n" +"\n" +"Щёлкните для восстановления вычисленного значения." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3471,7 +3621,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Отправить свою команду в G-коде подключенному принтеру. Нажмите Enter (Ввод) для отправки команды." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Экструдер" @@ -3524,7 +3674,7 @@ msgid "The nozzle inserted in this extruder." msgstr "Сопло, вставленное в данный экструдер." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Стол" @@ -3549,6 +3699,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3645,40 +3810,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "Настройка принтера отключена\nG-code файлы нельзя изменять" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00 ч 00 мин" +msgstr "" +"Настройка принтера отключена\n" +"G-code файлы нельзя изменять" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Настройка расчета времени" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Настройка расчета стоимости" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 м" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 г" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Итого:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3689,29 +3829,29 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Свои параметры печати

Печатайте с полным контролем над каждой особенностью процесса слайсинга." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Идёт печать" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "Имя задачи" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Время печати" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Осталось примерно" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" +msgid "Toggle Full Screen" msgstr "Полный экран" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 @@ -3731,27 +3871,27 @@ msgstr "Выход" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" +msgid "3D View" msgstr "Трехмерный вид" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" +msgid "Front View" msgstr "Вид спереди" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" +msgid "Top View" msgstr "Вид сверху" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" +msgid "Left Side View" msgstr "Вид слева" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" +msgid "Right Side View" msgstr "Вид справа" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 @@ -3806,19 +3946,18 @@ msgstr "Отправить отчёт об ошибке" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." +msgid "About..." msgstr "О Cura..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" msgstr[0] "Удалить выбранную модель" msgstr[1] "Удалить выбранные модели" msgstr[2] "Удалить выбранные модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" @@ -3826,7 +3965,7 @@ msgstr[0] "Центрировать выбранную модель" msgstr[1] "Центрировать выбранные модели" msgstr[2] "Центрировать выбранные модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -3834,163 +3973,163 @@ msgstr[0] "Размножить выбранную модель" msgstr[1] "Размножить выбранные модели" msgstr[2] "Размножить выбранные модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Удалить модель" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Поместить модель по центру" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Сгруппировать модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Разгруппировать модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Объединить модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Дублировать модель..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" +msgid "Select All Models" msgstr "Выбрать все модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" +msgid "Clear Build Plate" msgstr "Очистить стол" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" +msgid "Reload All Models" msgstr "Перезагрузить все модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "Выровнять все модели по всем рабочим столам" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Выровнять все модели" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Выровнять выбранные" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Сбросить позиции всех моделей" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" +msgid "Reset All Model Transformations" msgstr "Сбросить преобразования всех моделей" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Открыть файл(ы)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "Новый проект..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Показать журнал движка..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Показать конфигурационный каталог" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Обзор пакетов..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Развернуть/свернуть боковую панель" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Пожалуйста, загрузите 3D модель" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Готов к нарезке" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Нарезка на слои..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "Готов к %1" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Невозможно нарезать" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Нарезка недоступна" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Разделить на слои текущее задание на печать" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Отмена разделения на слои" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Подготовка" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "Отмена" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Выберите активное целевое устройство" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Открыть файл(ы)" @@ -4010,129 +4149,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "Файл" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "Сохранить выделенное в файл" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "Сохранить как..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "Сохранить проект..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "Правка" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "Вид" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "Параметры" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "Принтер" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "Материал" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Установить как активный экструдер" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Включить экструдер" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Отключить экструдер" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "Рабочий стол" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "Профиль" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Расширения" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&Панель инструментов" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Настройки" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "Справка" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Этот пакет будет установлен после перезапуска." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Открыть файл" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Параметры" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Новый проект" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Установить пакет" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Открыть файл(ы)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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-кодом. Вы можете открыть только один файл за раз. Измените свой выбор, пожалуйста." @@ -4142,112 +4297,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Сохранить проект" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Рабочий стол" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Экструдер %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 и материал" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Больше не показывать сводку по проекту" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Сохранить" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Высота слоя" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Этот профиль качества недоступен для вашей текущей конфигурации материала и сопла. Измените эти настройки для задействования данного профиля качества" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "В настоящее время активен пользовательский профиль. Чтобы включить ползунок качества, на вкладке «Пользовательские» выберите профиль качества по умолчанию" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Скорость печати" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Медленнее" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Быстрее" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "В некоторые настройки профиля были внесены изменения. Если их необходимо изменить, перейдите в пользовательский режим." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Заполнение" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 msgctxt "@label" msgid "Gradual infill will gradually increase the amount of infill towards the top." msgstr "Постепенное заполнение будет постепенно увеличивать объём заполнения по направлению вверх." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Постепенное" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Генерация поддержек" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Выбирает, какой экструдер следует использовать для поддержек. Будут созданы поддерживающие структуры под моделью для предотвращения проседания краёв или печати в воздухе." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Тип прилипания к столу" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Требуется помощь в улучшении вашей печати?
Обратитесь к Руководству Ultimaker по решению проблем" @@ -4295,22 +4450,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Тип принтера" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Материал" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Использовать клейкий лист или клей с этой комбинацией материалов" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Проверить совместимость" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Нажмите для проверки совместимости материала на Ultimaker.com." @@ -4400,16 +4555,6 @@ msgctxt "name" msgid "God Mode" msgstr "Режим бога" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "Принять G-code и отправить его через WiFi на Doodle3D WiFi-Box." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4490,16 +4635,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Подготовительный этап" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Открывает окно редактирования для непосредственного редактирования скриптов." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Интерактивный инструмент для работы со скриптами" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4610,16 +4745,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Чтение устаревших профилей Cura" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Помогает открывать файлы Blender непосредственно в Cura." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Интеграция Blender (экспериментальная опция)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4670,6 +4795,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "Обновление версии с 2.7 до 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4780,6 +4915,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Запись профиля Cura" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Позволяет производителям материалов создавать новые профили материалов и качества с помощью дружественного интерфейса." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Помощник по профилю печати" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4810,6 +4955,218 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Чтение профиля Cura" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Печать через Doodle3D WiFi-Box" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Печать через Doodle3D WiFi-Box" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Соединение с Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Отправка данных через Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Невозможно отправить данные через Doodle3D Connect. Другое задание активно?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Сохранение данных на Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Файл отправлен через Doodle3D Connect" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Открыть Connect..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Открыть Doodle3D Connect web интерфейс" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Файл Blender" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "Не удалось выполнить экспорт с использованием качества \"{}\"!\n" +#~ "Выполнен возврат к \"{}\"." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "Контакт" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Данный принтер не настроен для управления группой принтеров Ultimaker 3." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Данный принтер управляет группой из %1 принтеров Ultimaker 3." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 не настроен для управления группой подключенных принтеров Ultimaker 3" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Добавить/удалить принтеры" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Открытие страницы заданий печати в веб-браузере по умолчанию." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Просмотреть задания на печать" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Подготовка к печати" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Печать" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Доступен" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Потеряно соединение с принтером" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Недоступен" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Неизвестно" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Отключено" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Занят" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Подготовка к печати" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Печать прервана" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Не принимает задания на печать" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Заканчивается на: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Очистите стол" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "Ожидание изменения конфигурации" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Задания на печать" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Принтеры" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Просмотреть принтеры" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Пауза" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Продолжить" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Прервать печать" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Всегда спрашивать" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Переопределение профиля" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "Должны ли новые загруженные модели выравниваться на рабочем столе? Используется в сочетании с несколькими рабочими столами (ЭКСПЕРИМЕНТАЛЬНАЯ ОПЦИЯ)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Не выравнивать объекты под нагрузкой" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "Сохранить выделенное в файл" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "Сохранить как..." + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "Сохранить проект..." + +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Использовать клейкий лист или клей с этой комбинацией материалов" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "Принять G-code и отправить его через WiFi на Doodle3D WiFi-Box." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Открывает окно редактирования для непосредственного редактирования скриптов." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Интерактивный инструмент для работы со скриптами" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Помогает открывать файлы Blender непосредственно в Cura." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Интеграция Blender (экспериментальная опция)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Предупреждение средства проверки моделей" @@ -5077,10 +5434,6 @@ msgstr "Чтение профиля Cura" #~ msgid "Browse plugins..." #~ msgstr "Просмотр плагинов..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "Рабочий стол" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "Плагины" @@ -5306,14 +5659,6 @@ msgstr "Чтение профиля Cura" #~ "\n" #~ "Сожалеем!" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Помощник по профилю" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Помощник по профилю" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "Материал не загружен" @@ -5444,14 +5789,6 @@ msgstr "Чтение профиля Cura" #~ msgid "Configure setting visiblity..." #~ msgstr "Настроить видимость параметров..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 м / ~ %2 г / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 м / ~ %2 г" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Автоматически: %1" @@ -5488,14 +5825,6 @@ msgstr "Чтение профиля Cura" #~ msgid "GCode Profile Reader" #~ msgstr "Чтение профиля из G-Code" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Позволяет производителям материалов создавать новые профили материалов и качества с помощью дружественного интерфейса." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Помощник по профилю печати" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "Возникли ошибки во время открытия файла SolidWorks! Пожалуйста, проверьте может ли SolidWorks открыть этот файл без проблем!" @@ -5691,10 +6020,6 @@ msgstr "Чтение профиля Cura" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "Данный принтер управляет группой из {count} подключенных принтеров Ultimaker 3" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Подготовка" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Выполнено на:" diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 26bb958876..fa8c434d2f 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\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 c5273561ca..17efdcadaf 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Ruslan Popov , Russian \n" @@ -58,7 +58,9 @@ 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" @@ -70,7 +72,9 @@ 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" @@ -82,6 +86,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "Идентификатор материала, устанавливается автоматически. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1057,6 +1071,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Зигзаг" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1137,6 +1161,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Компенсирует поток для печатаемых частей внутренних стен в местах, где уже напечатана стена." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1502,11 +1546,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Концентрическое" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Концентрическое 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1532,6 +1571,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1562,6 +1611,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "Расстояние перемещения шаблона заполнения по оси Y." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1872,16 +1943,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "Температура стола, используемая при печати первого слоя." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2719,8 +2780,8 @@ msgstr "Режим комбинга" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "Комбинг удерживает сопло при перемещении внутри уже напечатанных зон. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой. Также есть возможность не применять комбинг над областями поверхностей крышки/дна, разрешив комбинг только над заполнением." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2737,6 +2798,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "Не в оболочке" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3117,11 +3183,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Концентрические" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Концентрические 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3182,6 +3243,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3472,11 +3553,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Концентрический" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Концентрический 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3512,11 +3588,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Концентрический" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Концентрический 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3552,16 +3623,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Концентрический" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Концентрический 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Зигзаг" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3712,7 +3798,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Горизонтальное расстояние между юбкой и первым слоем печати.\nМинимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." +msgstr "" +"Горизонтальное расстояние между юбкой и первым слоем печати.\n" +"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -3886,8 +3974,8 @@ msgstr "Ширина линий нижнего слоя подложки. Она #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Дистанция между линиями подложки" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4104,16 +4192,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "Толщина черновой башни" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "Толщина полости черновой башни. Если толщина больше половины минимального объёма черновой башни, то результатом будет увеличение плотности башни." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4154,26 +4232,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Очистка сопла после переключения" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "После смены экструдера убираем на первой печатаемой части материал, вытекший из сопла. Выполняется безопасная медленная очистка на месте, где вытекший материал нанесёт наименьший ущерб качеству печатаемой поверхности." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "Объём очистки черновой башни" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "Объём материала, который будет выдавлен при очистке на черновой башне. Очистка полезна для компенсации недостатка материала из-за его вытекания при простое сопла." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4659,6 +4717,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5169,7 +5237,9 @@ msgctxt "wireframe_up_half_speed description" msgid "" "Distance of an upward move which is extruded with half speed.\n" "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "Расстояние движения вверх, при котором выдавливание идёт на половине скорости.\nЭто может улучшить прилипание к предыдущим слоям, не перегревая материал тех слоёв. Применяется только при каркасной печати." +msgstr "" +"Расстояние движения вверх, при котором выдавливание идёт на половине скорости.\n" +"Это может улучшить прилипание к предыдущим слоям, не перегревая материал тех слоёв. Применяется только при каркасной печати." #: fdmprinter.def.json msgctxt "wireframe_top_jump label" @@ -5316,6 +5386,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "Пороговое значение, при достижении которого будет использоваться меньший слой. Это число сравнивается с тангенсом наиболее крутого наклона в слое." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5346,16 +5436,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Максимальное нависание стенки мостика" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "Максимальная разрешенная ширина области воздушного зазора ниже линии стенки перед печатью стенки с использованием настроек мостика. Выражается в процентах от ширины линии стенки. Если ширина воздушного зазора превышает указанное значение, линия стенки печатается с использованием настроек мостика. В противном случае линия стенки печатается с использованием стандартных настроек. Чем меньше это значение, тем вероятнее, что линии стенки с нависанием будут напечатаны с использованием настроек мостика." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5576,6 +5656,66 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Матрица преобразования, применяемая к модели при её загрузки из файла." +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Концентрическое 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "Комбинг удерживает сопло при перемещении внутри уже напечатанных зон. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой. Также есть возможность не применять комбинг над областями поверхностей крышки/дна, разрешив комбинг только над заполнением." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Концентрические 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Концентрический 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Концентрический 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Концентрический 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Дистанция между линиями подложки" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Толщина черновой башни" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "Толщина полости черновой башни. Если толщина больше половины минимального объёма черновой башни, то результатом будет увеличение плотности башни." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Очистка сопла после переключения" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "После смены экструдера убираем на первой печатаемой части материал, вытекший из сопла. Выполняется безопасная медленная очистка на месте, где вытекший материал нанесёт наименьший ущерб качеству печатаемой поверхности." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Объём очистки черновой башни" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Объём материала, который будет выдавлен при очистке на черновой башне. Очистка полезна для компенсации недостатка материала из-за его вытекания при простое сопла." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Максимальное нависание стенки мостика" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "Максимальная разрешенная ширина области воздушного зазора ниже линии стенки перед печатью стенки с использованием настроек мостика. Выражается в процентах от ширины линии стенки. Если ширина воздушного зазора превышает указанное значение, линия стенки печатается с использованием настроек мостика. В противном случае линия стенки печатается с использованием стандартных настроек. Чем меньше это значение, тем вероятнее, что линии стенки с нависанием будут напечатаны с использованием настроек мостика." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Оптимизирует порядок, в котором печатаются стенки для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте печать с оптимизацией и без." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index bea45270fa..8c85d5c456 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Turkish\n" @@ -38,6 +38,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code dosyası" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -51,80 +62,23 @@ msgid "" "

{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

" +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/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box ile yazdır" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box ile yazdır" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "Doodle3D Connect’e bağlanıyor" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "İptal Et" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "Doodle3D Connect’e veri gönderiliyor" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "Doodle3D Connect’e veri gönderilemiyor. Hala etkin olan başka bir iş var mı?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "Doodle3D Connect üzerinde veri depolanıyor" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "Doodle3D Connect’e dosya gönderildi" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "Connect'i aç.." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "Doodle3D Connect web arayüzünü aç" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "Değişiklik Günlüğünü Göster" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "Düzleştirme aktif ayarları" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "Profil düzleştirilmiş ve aktifleştirilmiştir." @@ -149,6 +103,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "USB ile bağlı" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -171,6 +130,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Sıkıştırılmış G-code Dosyası" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -193,7 +157,7 @@ msgid "Save to Removable Drive {0}" msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "Yazılacak dosya biçimleri mevcut değil!" @@ -232,7 +196,7 @@ msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "Hata" @@ -261,8 +225,8 @@ msgstr "Çıkarılabilir aygıtı çıkar {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "Uyarı" @@ -289,212 +253,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Çıkarılabilir Sürücü" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "Ağ üzerinden yazdır" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "Ağ üzerinden yazdır" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "Ağ üzerinden bağlandı." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "Ağ üzerinden bağlandı. Lütfen yazıcıya erişim isteğini onaylayın." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "Ağ üzerinden bağlandı. Yazıcıyı kontrol etmek için erişim yok." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "İstenen yazıcıya erişim. Lütfen yazıcı isteğini onaylayın" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "Kimlik doğrulama durumu" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "Kimlik Doğrulama Durumu" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "Yeniden dene" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "Erişim talebini yeniden gönder" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "Kabul edilen yazıcıya erişim" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "Bu yazıcıyla yazdırmaya erişim yok. Yazdırma işi gönderilemedi." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "Erişim Talep Et" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "Yazıcıya erişim talebi gönder" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "Yeni bir yazdırma işi başlatılamıyor." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Ultimaker’ın yapılandırmasında yazdırmayı başlatmayı imkansız kılan bir sorun var. Devam etmeden önce lütfen bu sorunu çözün." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "Uyumsuz yapılandırma" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "Seçilen yapılandırma ile yazdırmak istediğinizden emin misiniz?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Yazıcı yapılandırması veya kalibrasyonu ile Cura arasında eşleşme sorunu var. En iyi sonucu almak istiyorsanız her zaman PrintCore ve yazıcıya eklenen malzemeler için dilimleme yapın." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "Yeni işlerin gönderilmesi (geçici olarak) engellenmiştir, hala bir önceki yazdırma işi gönderiliyor." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "Veriler yazıcıya gönderiliyor" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "Veri gönderiliyor" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "İptal Et" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "{slot_number} yuvasına Printcore yüklenmedi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "{slot_number} yuvasına malzeme yüklenmedi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "Farklı PrintCore (Cura: {cura_printcore_name}, Yazıcı: ekstruder {extruder_id} için {remote_printcore_name}) seçildi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "Farklı malzeme (Cura: {0}, Yazıcı: {1}), ekstrüder {2} için seçildi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "Yazıcınız ile eşitleyin" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "Cura’da geçerli yazıcı yapılandırmanızı kullanmak istiyor musunuz?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "Yazıcınızda bulunan PrintCore’lar ve/veya malzemeler geçerli projenizde bulunandan farklı. En iyi sonucu almak istiyorsanız, her zaman PrintCore ve yazıcıya eklenen malzemeler için dilimleme yapın." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "Ağ üzerinden bağlandı." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "Veri Gönderildi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "Monitörde Görüntüle" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "{printer_name}, '{job_name}' yazdırmayı tamamladı." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "Yazdırma işi '{job_name}' tamamlandı." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "Baskı tamamlandı" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "Ağ ile Bağlan" @@ -504,24 +483,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Görüntüle" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "{machine_name} adlı cihazınız için yeni özellikler var! Yazıcınızın fabrika yazılımını güncellemeniz önerilir." -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "Yeni %s bellenimi mevcut" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "Nasıl güncellenir" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "Güncelleme bilgilerine erişilemedi." @@ -531,17 +510,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Katman görünümü" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "Tel Yazma etkinleştirildiğinde, Cura katmanları doğru olarak görüntülemez." -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "Simülasyon Görünümü" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "GCode Değiştir" @@ -555,32 +534,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "Desteklerin yazdırılmadığı bir hacim oluşturun." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura anonimleştirilmiş kullanım istatistikleri toplar." -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "Veri Toplanıyor" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "Daha fazla bilgi" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "Cura’nın gönderdiği veriler hakkında daha fazla bilgi alın" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "İzin Verme" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "Programın gelecek sürümlerinin iyileştirilmesine yardımcı olmak için Cura’ya anonimleştirilmiş kullanım istatistikleri gönderme izni verin. Tercih ve ayarlarınızın bazıları, Cura sürümü ve dilimlere ayırdığınız modellerin sağlaması gönderilir." @@ -590,18 +569,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Cura 15.04 profilleri" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Blender dosyası" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "\"{}\" quality!\nFell back to \"{}\" kullanarak dışarı aktarım yapılamadı." - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -627,49 +594,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF Resmi" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "Dilimlenemedi" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "Modeller yapı hacmine sığmadığı için dilimlenecek bir şey yok. Lütfen sığdırmak için modelleri ölçeklendirin veya döndürün." -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "Katmanlar İşleniyor" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "Bilgi" @@ -696,18 +670,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "Özel" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF Dosyası" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "Nozül" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -718,18 +703,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "G Dosyası" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "G-code ayrıştırma" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "G-code Ayrıntıları" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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." @@ -740,16 +725,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura Profili" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "Profil Asistanı" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "Profil Asistanı" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MF dosyası" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura Projesi 3MF dosyası" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -831,19 +831,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "Bilinmiyor" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "Önceden dilimlenmiş dosya {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "Dosya Zaten Mevcut" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -855,23 +855,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "Geçersiz kılınmadı" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "Seçilen malzeme, seçilen makine veya yapılandırma ile uyumlu değil." -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "Uyumsuz Malzeme" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "Ayarlar, ekstruderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi: [%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "Ayarlar güncellendi" @@ -954,13 +954,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profilde eksik bir kalite tipi var." -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "Mevcut yapılandırma için bir kalite tipi {0} bulunamıyor." -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -987,42 +987,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "Özel Malzeme" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "Özel" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "Yapı Disk Bölümü" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "Yedekle" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 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/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "Geçerli sürümünüzle eşleşmeyen bir Cura yedeği geri yüklenmeye çalışıldı." @@ -1033,32 +1033,32 @@ msgid "Multiplying and placing objects" msgstr "Nesneler çoğaltılıyor ve yerleştiriliyor" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Nesne Yerleştiriliyor" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 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/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Nesneler için yeni konum bulunuyor" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "Konumu Buluyor" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Konum Bulunamıyor" @@ -1076,7 +1076,12 @@ msgid "" "

Backups can be found in the configuration folder.

\n" "

Please send us this Crash Report to fix the problem.

\n" " " -msgstr "

Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.

\n

Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.

\n

Yedekler yapılandırma klasöründe bulunabilir.

\n

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

\n " +msgstr "" +"

Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.

\n" +"

Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.

\n" +"

Yedekler yapılandırma klasöründe bulunabilir.

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102 msgctxt "@action:button" @@ -1109,7 +1114,10 @@ msgid "" "

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

\n" "

Please use the \"Send report\" button to post a bug report automatically to our servers

\n" " " -msgstr "

Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

\n

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

\n " +msgstr "" +"

Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

\n" +"

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

\n" +" " #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177 msgctxt "@title:groupbox" @@ -1189,223 +1197,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "Rapor gönder" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "Makineler yükleniyor..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "Görünüm ayarlanıyor..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "Arayüz yükleniyor..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "Seçilen model yüklenemeyecek kadar küçüktü." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "Makine Ayarları" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "Yazıcı" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "Yazıcı Ayarları" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (Genişlik)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Derinlik)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (Yükseklik)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "Yapı levhası şekli" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "Merkez nokta" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "Isıtılmış yatak" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "G-code türü" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "Yazıcı Başlığı Ayarları" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Yazıcı başlığının solundan nozülün ortasına kadar olan mesafe. “Birer birer” çıktı alırken önceki çıktılar ile yazıcı başlığının çakışmasını önlemek için kullanılır." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y min" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Yazıcı başlığının ön kısmından nozülün ortasına kadar olan mesafe. “Birer birer” çıktı alırken önceki çıktılar ile yazıcı başlığının çakışmasını önlemek için kullanılır." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X maks" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Yazıcı başlığının sağından nozülün ortasına kadar olan mesafe. “Birer birer” çıktı alırken önceki çıktılar ile yazıcı başlığının çakışmasını önlemek için kullanılır." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y maks" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "Yazıcı başlığının arkasından nozülün ortasına kadar olan mesafe. “Birer birer” çıktı alırken önceki çıktılar ile yazıcı başlığının çakışmasını önlemek için kullanılır." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "Portal yüksekliği" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı. “Birer birer” çıktı alırken önceki çıktılar ile portalın çakışmasını önlemek için kullanılır." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "Ekstrüder Sayısı" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "G-code’u Başlat" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "Başlangıçta yürütülecek G-code komutları." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "G-code’u Sonlandır" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "Bitişte yürütülecek G-code komutları." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "Nozül Ayarları" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "Nozzle boyutu" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "Uyumlu malzeme çapı" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "Yazıcı tarafından desteklenen nominal filaman çapı. Tam çap malzeme ve/veya profil tarafından etkisiz kılınacaktır." -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "Nozül X ofseti" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "Nozül Y ofseti" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "Ekstruder G-Code'u Başlatma" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "Ekstruder G-Code'u Sonlandırma" @@ -1425,29 +1433,42 @@ 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "Eklentiler" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "Malzemeler" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "Sürüm" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "Son güncelleme" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "Yazar" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "Bilinmiyor" @@ -1480,16 +1501,56 @@ msgctxt "@action:button" msgid "Back" msgstr "Geri" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "Cura’dan Çıkın" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1521,7 +1582,10 @@ msgid "" "This plugin contains a license.\n" "You need to accept this license to install this plugin.\n" "Do you agree with the terms below?" -msgstr "Bu eklenti bir lisans içerir.\nBu eklentiyi yüklemek için bu lisansı kabul etmeniz gerekir.\nAşağıdaki koşulları kabul ediyor musunuz?" +msgstr "" +"Bu eklenti bir lisans içerir.\n" +"Bu eklentiyi yüklemek için bu lisansı kabul etmeniz gerekir.\n" +"Aşağıdaki koşulları kabul ediyor musunuz?" #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54 msgctxt "@action:button" @@ -1533,12 +1597,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "Reddet" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "Öne Çıkan" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "Uyumluluk" @@ -1548,10 +1612,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "Paketler alınıyor..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "İletişim" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1565,9 +1634,9 @@ msgstr "Değişiklik Günlüğü" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1615,356 +1684,365 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "Kullanıcı Anlaşması" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "Mevcut Bağlantı" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "Bu yazıcı/grup Cura’ya zaten eklenmiş. Lütfen başka bir yazıcı/grup seçin." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "Ağ Yazıcısına Bağlan" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" "\n" "Select your printer from the list below:" -msgstr "Yazıcınıza ağ üzerinden doğrudan bağlamak için, lütfen yazıcınızın ağ kablosu kullanan bir ağa bağlı olduğundan emin olun veya yazıcınızı WiFi ağına bağlayın. Cura'ya yazıcınız ile bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz.\n\nAşağıdaki listeden yazıcınızı seçin:" +msgstr "" +"Yazıcınıza ağ üzerinden doğrudan bağlamak için, lütfen yazıcınızın ağ kablosu kullanan bir ağa bağlı olduğundan emin olun veya yazıcınızı WiFi ağına bağlayın. Cura'ya yazıcınız ile bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz.\n" +"\n" +"Aşağıdaki listeden yazıcınızı seçin:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "Ekle" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "Düzenle" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "Kaldır" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "Yenile" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "Tür" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "Üretici yazılımı sürümü" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "Adres" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "Bu yazıcı, Ultimaker 3 yazıcı grubunu barındırmak için ayarlı değildir." +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "Bu yazıcı, %1 Ultimaker 3 yazıcı grubunun ana makinesidir." +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "Bu adresteki yazıcı henüz yanıt vermedi." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "Bağlan" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "Yazıcı Adresi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "IP adresini veya yazıcınızın ağ üzerindeki ana bilgisayar adını girin." -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "Tamam" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "Ağ üzerinden yazdır" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "Yazıcı seçimi" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "Yazdır" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1, bağlı Ultimaker 3 yazıcı grubunu barındırmak için ayarlı değildir" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "Yazıcı Ekle/Kaldır" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "Yazdırma işlerini varsayılan web tarayıcınızda açar." - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "Yazdırma işlerini görüntüle" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "Yazdırmaya hazırlanıyor" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "Yazdırma" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "Mevcut" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "Yazıcı bağlantısı koptu" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Mevcut değil" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "Bilinmiyor" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "Devre dışı" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "Rezerve edildi" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "Tamamlandı" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "Yazdırmaya hazırlanıyor" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "Eylem gerekli" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "Duraklatıldı" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "Devam ediliyor" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "Yazdırma durduruldu" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "Yazdırma işleri kabul edilmiyor" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "Şu tarihlerde bitirir: " - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "Yapı levhasını temizle" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "Yapılandırma değişikliğini bekliyor" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "Yazdırma görevleri" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "Yazdırma" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "Kuyrukta" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "Yazıcılar" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "Yazdırma" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "Yazıcıları görüntüle" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "Yazdırmayı durdur" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "Tamamlandı" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "Hazırlanıyor" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "Duraklatıldı" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "Devam ediliyor" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "Eylem gerekli" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "Yazıcıya Bağlan" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "Yazıcı yapılandırmasını Cura’ya yükle" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "Yapılandırmayı Etkinleştir" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "Renk şeması" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "Malzeme Rengi" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "Çizgi Tipi" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "Besleme hızı" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "Katman kalınlığı" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "Uyumluluk Modu" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "Geçişleri Göster" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "Yardımcıları Göster" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "Kabuğu Göster" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "Dolguyu Göster" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "Yalnızca Üst Katmanları Göster" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "Üst / Alt" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "İç Duvar" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "min" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "maks" @@ -2084,53 +2162,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Düzeltme" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "Ağ Tipi" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "Normal model" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "Destek olarak yazdır" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "Diğer modellerle örtüşmeyi destekleme" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "Diğer modellerle örtüşme ayarlarını değiştir" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "Diğer modellerle doldurma ayarlarını değiştir" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "Ayarları seçin" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "Bu modeli Özelleştirmek için Ayarları seçin" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "Filtrele..." -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "Tümünü göster" @@ -2152,13 +2230,13 @@ msgid "Create new" msgstr "Yeni oluştur" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Özet - Cura Projesi" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "Yazıcı ayarları" @@ -2175,7 +2253,7 @@ msgid "Update" msgstr "Güncelle" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "Tür" @@ -2186,7 +2264,7 @@ msgid "Printer Group" msgstr "Yazıcı Grubu" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "Profil ayarları" @@ -2198,19 +2276,19 @@ msgstr "Profildeki çakışma nasıl çözülmelidir?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "İsim" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "Profilde değil" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2240,7 +2318,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "Malzemedeki çakışma nasıl çözülmelidir?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "Görünürlük ayarı" @@ -2251,13 +2329,13 @@ msgid "Mode" msgstr "Mod" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "Görünür ayarlar:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" @@ -2272,6 +2350,82 @@ msgctxt "@action:button" msgid "Open" msgstr "Aç" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "Dışa Aktar" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00sa 00dk" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "Maliyet koşulları" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1 m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "Toplam:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1 m / ~ %2 g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1 m / ~ %2 g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2490,26 +2644,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "Lütfen yazıcıyı çıkarın " -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "Durdur" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "Devam et" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "Yazdırmayı Durdur" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Yazdırmayı durdur" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2526,7 +2664,9 @@ msgctxt "@text:window" msgid "" "You have customized some profile settings.\n" "Would you like to keep or discard those settings?" -msgstr "Bazı profil ayarlarını özelleştirdiniz.\nBu ayarları kaydetmek veya iptal etmek ister misiniz?" +msgstr "" +"Bazı profil ayarlarını özelleştirdiniz.\n" +"Bu ayarları kaydetmek veya iptal etmek ister misiniz?" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110 msgctxt "@title:column" @@ -2544,19 +2684,17 @@ msgid "Customized" msgstr "Özelleştirilmiş" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Her zaman sor" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "İptal et ve bir daha sorma" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Kaydet ve bir daha sorma" @@ -2576,101 +2714,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "Yeni Profil Oluştur" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "Bilgi" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Çap Değişikliğini Onayla" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "Görünen Ad" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "Marka" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "Malzeme Türü" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "Renk" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "Özellikler" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "Yoğunluk" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "Çap" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "Filaman masrafı" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "Filaman ağırlığı" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "Filaman uzunluğu" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "Metre başına maliyet" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "Malzemeyi Ayır" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "Tanım" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "Yapışma Bilgileri" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "Yazdırma ayarları" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "Etkinleştir" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "Oluştur" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Çoğalt" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "İçe Aktar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "Yazıcı" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Kaldırmayı Onayla" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Malzemeyi İçe Aktar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Malzemeyi Dışa Aktar" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +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/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +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/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2707,7 +2917,7 @@ msgid "Unit" msgstr "Birim" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "Genel" @@ -2899,8 +3109,8 @@ msgstr "Bir proje dosyası açıldığında varsayılan davranış: " #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "Her zaman sor" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2919,77 +3129,75 @@ msgstr "Bir profil üzerinde değişiklik yapıp farklı bir profile geçtiğini #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "Profilin Üzerine Yaz" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "Gizlilik" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "Başlangıçta güncellemeleri kontrol edin" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(Anonim) yazdırma bilgisi gönder" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "Daha fazla bilgi" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "Deneysel" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "Çok yapılı levha fonksiyonelliğini kullan" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "Çok yapılı levha fonksiyonelliğini kullan (yeniden başlatma gerektirir)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "Yeni yüklenen modeller yapılı levhaya mı yerleştirilsin? Çok yapılı levha ile birlikte kullanılır (DENEYSEL)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "Yüklemenin ardından nesneleri yerleştirme" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "Yazıcılar" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "Etkinleştir" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3033,7 +3241,7 @@ msgid "Aborting print..." msgstr "Yazdırma durduruluyor..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "Profiller" @@ -3048,18 +3256,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "Çoğalt" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "İçe Aktar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "Dışa Aktar" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3070,18 +3266,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "Profili Çoğalt" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Kaldırmayı Onayla" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3102,96 +3286,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "Yazıcı: %1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "Korunan profiller" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "Özel profiller" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "Geçerli değişiklikleri iptal et" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "Geçerli ayarlarınız seçilen profille uyumlu." -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "Küresel Ayarlar" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Malzemeler" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "Oluştur" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Çoğalt" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Malzemeyi İçe Aktar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Malzemeyi Dışa Aktar" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -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/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "Yazıcı" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "Yazıcı Ekle" @@ -3206,6 +3337,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "Yazıcı Ekle" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3226,7 +3362,9 @@ 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, topluluk iş birliği ile Ultimaker B.V. tarafından geliştirilmiştir.\nCura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" +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/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118 msgctxt "@label" @@ -3339,7 +3477,10 @@ msgid "" "Some setting/override values are different from the values stored in the profile.\n" "\n" "Click to open the profile manager." -msgstr "Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n\nProfil yöneticisini açmak için tıklayın." +msgstr "" +"Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n" +"\n" +"Profil yöneticisini açmak için tıklayın." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199 msgctxt "@label:textbox" @@ -3356,33 +3497,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "Tüm değiştirilmiş değerleri tüm ekstruderlere kopyala" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "Bu ayarı gizle" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "Bu ayarı gösterme" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "Bu ayarı görünür yap" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Görünürlük ayarını yapılandır..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "Tümünü Daralt" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "Tümünü Genişlet" @@ -3393,7 +3534,10 @@ 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\nBu ayarları görmek için tıklayın." +msgstr "" +"Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.\n" +"\n" +"Bu ayarları görmek için tıklayın." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61 msgctxt "@label Header for list of settings." @@ -3421,7 +3565,10 @@ msgid "" "This setting has a value that is different from the profile.\n" "\n" "Click to restore the value of the profile." -msgstr "Bu ayarın değeri profilden farklıdır.\n\nProfil değerini yenilemek için tıklayın." +msgstr "" +"Bu ayarın değeri profilden farklıdır.\n" +"\n" +"Profil değerini yenilemek için tıklayın." #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286 msgctxt "@label" @@ -3429,7 +3576,10 @@ msgid "" "This setting is normally calculated, but it currently has an absolute value set.\n" "\n" "Click to restore the calculated value." -msgstr "Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n\nHesaplanan değeri yenilemek için tıklayın." +msgstr "" +"Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n" +"\n" +"Hesaplanan değeri yenilemek için tıklayın." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129 msgctxt "@label" @@ -3467,7 +3617,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "Bağlı yazıcıya özel bir G-code komutu gönderin. Komutu göndermek için 'enter' tuşuna basın." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "Ekstrüder" @@ -3520,7 +3670,7 @@ msgid "The nozzle inserted in this extruder." msgstr "Bu ekstrudere takılan nozül." #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "Yapı levhası" @@ -3545,6 +3695,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3639,40 +3804,15 @@ msgctxt "@label:listbox" msgid "" "Print Setup disabled\n" "G-code files cannot be modified" -msgstr "Yazdırma Ayarı devre dışı\nG-code dosyaları üzerinde değişiklik yapılamaz" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00sa 00dk" +msgstr "" +"Yazdırma Ayarı devre dışı\n" +"G-code dosyaları üzerinde değişiklik yapılamaz" #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "Zaman Özellikleri" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "Maliyet koşulları" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "Toplam:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3683,29 +3823,29 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "Özel Yazıcı Ayarları

Dilimleme işleminin her bir bölümünü detaylıca kontrol ederek yazdırın." -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "Geçerli yazdırma" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "İşin Adı" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "Yazdırma süresi" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "Kalan tahmini süre" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" +msgid "Toggle Full Screen" msgstr "Tam Ekrana Geç" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 @@ -3725,28 +3865,28 @@ msgstr "&Çıkış" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "&3 Boyutlu Görünüm" +msgid "3D View" +msgstr "3 Boyutlu Görünüm" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "&Önden Görünüm" +msgid "Front View" +msgstr "Önden Görünüm" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "&Yukarıdan Görünüm" +msgid "Top View" +msgstr "Yukarıdan Görünüm" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "&Sol Taraftan Görünüm" +msgid "Left Side View" +msgstr "Sol Taraftan Görünüm" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "&Sağ Taraftan Görünüm" +msgid "Right Side View" +msgstr "Sağ Taraftan Görünüm" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3781,7 +3921,7 @@ msgstr "&Geçerli değişiklikleri iptal et" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:196 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." -msgstr "&Geçerli ayarlardan/geçersiz kılmalardan profil oluştur..." +msgstr "G&eçerli ayarlardan/geçersiz kılmalardan profil oluştur..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:202 msgctxt "@action:inmenu menubar:profile" @@ -3800,188 +3940,187 @@ msgstr "Hata Bildir" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "&Hakkında..." +msgid "About..." +msgstr "Hakkında..." #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "&Seçili Modeli Sil" -msgstr[1] "&Seçili Modelleri Sil" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "Seçili Modeli Sil" +msgstr[1] "Seçili Modelleri Sil" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "Seçili Modeli Ortala" msgstr[1] "Seçili Modelleri Ortala" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Seçili Modeli Çoğalt" msgstr[1] "Seçili Modelleri Çoğalt" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Modeli Sil" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Modeli Platformda Ortala" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Modelleri Gruplandır" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Model Grubunu Çöz" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Modelleri Birleştir" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Modeli Çoğalt..." +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Tüm modelleri Seç" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "&Tüm modelleri Seç" +msgid "Clear Build Plate" +msgstr "Yapı Levhasını Temizle" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "&Yapı Levhasını Temizle" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" +msgid "Reload All Models" msgstr "Tüm Modelleri Yeniden Yükle" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 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/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Tüm Modelleri Düzenle" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Seçimi Düzenle" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Tüm Model Konumlarını Sıfırla" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" +msgid "Reset All Model Transformations" msgstr "Tüm Model ve Dönüşümleri Sıfırla" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Dosya Aç..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Yeni Proje..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "Motor Günlüğünü Göster..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Yapılandırma Klasörünü Göster" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "Paketlere gözat..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "Kenar Çubuğunu Genişlet/Daralt" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "Lütfen bir 3D model yükleyin" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "Dilimlemeye hazır" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Dilimleniyor..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "%1 Hazır" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "Dilimlenemedi" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "Dilimleme kullanılamıyor" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "Mevcut yazdırma görevini dilimlere ayır" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "Dilimleme sürecini iptal et" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "Hazırla" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "İptal Et" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "Etkin çıkış aygıtını seçin" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "Dosya aç" @@ -4001,129 +4140,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "&Dosya" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "&Seçimi Dosyaya Kaydet" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "&Farklı Kaydet" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "Kaydet&Projelendir..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" -msgstr "&Düzenle" +msgstr "Düz&enle" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "&Görünüm" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "&Ayarlar" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "&Yazıcı" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "&Malzeme" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Etkin Ekstruder olarak ayarla" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "Ekstruderi Etkinleştir" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "Ekstruderi Devre Dışı Bırak" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "&Yapı levhası" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "&Profil" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "Uzantılar" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&Araç kutusu" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "Tercihler" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "&Yardım" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "Bu paket yeniden başlatmanın ardından kurulacak." -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "Dosya Aç" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "Ayarlar" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "Yeni proje" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "Paketi Kur" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "Dosya Aç" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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." @@ -4133,112 +4288,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "Projeyi Kaydet" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "Baskı tepsisi" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "Ekstruder %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & malzeme" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "Kaydederken proje özetini bir daha gösterme" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "Kaydet" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "Katman Yüksekliği" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "Bu kalite profili mevcut malzemeniz ve nozül yapılandırması için kullanılamaz. Bu kalite profilini etkinleştirmek için lütfen bunları değiştirin" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "Özel bir profil şu anda aktif. Kalite kaydırıcısını etkinleştirmek için Özel sekmesinde varsayılan bir kalite seçin" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "Yazdırma Hızı" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "Daha yavaş" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "Daha Hızlı" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "Dolgu" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "Kademeli özelliği etkinleştir" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "Oluşturma Desteği" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "Destek için kullanacağınız ekstruderi seçin. Bu, modelin havadayken düşmesini veya yazdırılmasını önlemek için modelin altındaki destekleyici yapıları güçlendirir." -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "Yapı Levhası Yapıştırması" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "Yazıcı çıktılarınızı iyileştirmek için yardıma mı ihtiyacınız var?
Ultimaker Sorun Giderme Kılavuzlarını okuyun" @@ -4285,22 +4440,22 @@ msgctxt "@label" msgid "Printer type" msgstr "Yazıcı türü" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "Malzeme" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "Bu malzeme kombinasyonuyla yapışkanlı kağıt veya yapışkan kullan" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "Uyumluluğu Kontrol Et" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "Malzemenin uyumluluğunu Ultimaker.com üzerinden kontrol etmek için tıklayın." @@ -4390,16 +4545,6 @@ msgctxt "name" msgid "God Mode" msgstr "Tanrı Modu" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "G-Code’u kabul eder ve WiFi üzerinden Doodle3D WiFi-Box'a gönderir." - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4480,16 +4625,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "Hazırlık Aşaması" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "Doğrudan komut dosyası düzenlemek için düzenleme penceresi sunar." - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "Canlı komut dosyası aracı" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4600,16 +4735,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "Eski Cura Profil Okuyucu" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "Cura’da Blender dosyalarını doğrudan açmanıza yardımcı olur." - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Blender Entegrasyonu (deneysel)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4660,6 +4785,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "2.7’den 3.0’a Sürüm Yükseltme" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4770,6 +4905,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura Profili Yazıcı" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "Malzeme üreticilerine bir drop-in UI kullanarak yeni malzeme ve kalite profili oluşturma imkanı sunar." + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "Baskı Profili Asistanı" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4800,6 +4945,218 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Cura Profil Okuyucu" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box ile yazdır" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box ile yazdır" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "Doodle3D Connect’e bağlanıyor" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "Doodle3D Connect’e veri gönderiliyor" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "Doodle3D Connect’e veri gönderilemiyor. Hala etkin olan başka bir iş var mı?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "Doodle3D Connect üzerinde veri depolanıyor" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "Doodle3D Connect’e dosya gönderildi" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "Connect'i aç.." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "Doodle3D Connect web arayüzünü aç" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Blender dosyası" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "\"{}\" quality!\n" +#~ "Fell back to \"{}\" kullanarak dışarı aktarım yapılamadı." + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "İletişim" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "Bu yazıcı, Ultimaker 3 yazıcı grubunu barındırmak için ayarlı değildir." + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "Bu yazıcı, %1 Ultimaker 3 yazıcı grubunun ana makinesidir." + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1, bağlı Ultimaker 3 yazıcı grubunu barındırmak için ayarlı değildir" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "Yazıcı Ekle/Kaldır" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "Yazdırma işlerini varsayılan web tarayıcınızda açar." + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "Yazdırma işlerini görüntüle" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "Yazdırmaya hazırlanıyor" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "Yazdırma" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "Mevcut" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "Yazıcı bağlantısı koptu" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "Mevcut değil" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "Bilinmiyor" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "Devre dışı" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "Rezerve edildi" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "Yazdırmaya hazırlanıyor" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "Yazdırma durduruldu" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "Yazdırma işleri kabul edilmiyor" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "Şu tarihlerde bitirir: " + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "Yapı levhasını temizle" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "Yapılandırma değişikliğini bekliyor" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "Yazdırma görevleri" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "Yazıcılar" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "Yazıcıları görüntüle" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "Durdur" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "Devam et" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "Yazdırmayı Durdur" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "Her zaman sor" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "Profilin Üzerine Yaz" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "Yeni yüklenen modeller yapılı levhaya mı yerleştirilsin? Çok yapılı levha ile birlikte kullanılır (DENEYSEL)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "Yüklemenin ardından nesneleri yerleştirme" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "&Seçimi Dosyaya Kaydet" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "&Farklı Kaydet" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "Kaydet&Projelendir..." + +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "Bu malzeme kombinasyonuyla yapışkanlı kağıt veya yapışkan kullan" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "G-Code’u kabul eder ve WiFi üzerinden Doodle3D WiFi-Box'a gönderir." + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "Doğrudan komut dosyası düzenlemek için düzenleme penceresi sunar." + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "Canlı komut dosyası aracı" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "Cura’da Blender dosyalarını doğrudan açmanıza yardımcı olur." + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Blender Entegrasyonu (deneysel)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "Model Kontrol Edici Uyarısı" @@ -5067,10 +5424,6 @@ msgstr "Cura Profil Okuyucu" #~ msgid "Browse plugins..." #~ msgstr "Eklentilere göz at..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "&Yapı levhası" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "&Eklentiler" @@ -5296,14 +5649,6 @@ msgstr "Cura Profil Okuyucu" #~ "\n" #~ "Üzgünüz!" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "Profil Asistanı" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "Profil Asistanı" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "Hiçbir malzeme yüklenmedi" @@ -5434,14 +5779,6 @@ msgstr "Cura Profil Okuyucu" #~ msgid "Configure setting visiblity..." #~ msgstr "Görünürlük ayarını yapılandır..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1 m / ~ %2 g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1 m / ~ %2 g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "Otomatik: %1" @@ -5478,14 +5815,6 @@ msgstr "Cura Profil Okuyucu" #~ msgid "GCode Profile Reader" #~ msgstr "GCode Profil Okuyucu" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "Malzeme üreticilerine bir drop-in UI kullanarak yeni malzeme ve kalite profili oluşturma imkanı sunar." - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "Baskı Profili Asistanı" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "SolidWorks dosyanızı açarken hata meydana geldi! Lütfen dosyanızın SolidWorks’te sorunsuz açılıp açılmadığını kontrol edin!" @@ -5682,10 +6011,6 @@ msgstr "Cura Profil Okuyucu" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "Bu yazıcı, %1 bağlı Ultimaker 3 yazıcı grubunun ana makinesidir" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "Hazırlanıyor" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "Tamamlandığı tarih: " diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index d8412d67cb..de8f861922 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\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 c7b62f1da3..d8d7bd6524 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\n" "Last-Translator: Bothof \n" "Language-Team: Turkish\n" @@ -56,7 +56,9 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr " \n ile ayrılan, başlangıçta yürütülecek G-code komutları." +msgstr "" +" \n" +" ile ayrılan, başlangıçta yürütülecek G-code komutları." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -68,7 +70,9 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr " \n ile ayrılan, bitişte yürütülecek G-code komutları." +msgstr "" +" \n" +" ile ayrılan, bitişte yürütülecek G-code komutları." #: fdmprinter.def.json msgctxt "material_guid label" @@ -80,6 +84,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "Malzemedeki GUID Otomatik olarak ayarlanır. " +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1055,6 +1069,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "Zikzak" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1135,6 +1159,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "Halihazırda duvarın olduğu bir yere yazdırılan bir iç duvarın parçaları için akışı telafi eder." +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1500,11 +1544,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Eş merkezli" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Eş merkezli 3D" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1530,6 +1569,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "İç duvarın şeklini takip eden bir hattı kullanarak dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlar. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesinin etkilerini azaltabilir. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır." +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1560,6 +1609,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır." +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1870,16 +1941,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "İlk katmanda ısınan yapı levhası için kullanılan sıcaklık." -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2717,8 +2778,8 @@ msgstr "Tarama Modu" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "Tarama, hareket sırasında nozülü halihazırda yazdırılmış bölgelerde tutar. Bu şekilde biraz daha uzun hareket hamleleri sağlarken geri çekme ihtiyacını azaltır. Tarama kapatıldığında, malzeme geri çekilecek ve nozül bir sonraki noktaya kadar düz bir çizgide hareket edecektir. Sadece dolgunun taratılmasıyla üst/alt yüzey bölgelerinde taramanın engellenmesi de mümkündür." +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2735,6 +2796,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "Yüzey Alanında Değil" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3115,11 +3181,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "Eş merkezli" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Eş merkezli 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3180,6 +3241,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır." +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3470,11 +3551,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "Eş merkezli" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Eş merkezli 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3510,11 +3586,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "Eş Merkezli" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Eş Merkezli 3D" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3550,16 +3621,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "Eş Merkezli" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "Eş Merkezli 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Zikzak" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3710,7 +3796,9 @@ msgctxt "skirt_gap description" msgid "" "The horizontal distance between the skirt and the first layer of the print.\n" "This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\nMinimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." +msgstr "" +"Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\n" +"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." #: fdmprinter.def.json msgctxt "skirt_brim_minimal_length label" @@ -3884,8 +3972,8 @@ msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhas #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Radye Hat Boşluğu" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4102,16 +4190,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim." -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "İlk Direğin Kalınlığı" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "Boş olan ilk direğin kalınlığı Kalınlığın Minimum İlk Direk Hacminin yarısından fazla olması ilk direğin yoğun olmasına neden olur." - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4152,26 +4230,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Bir nozül ile ilk direği yazdırdıktan sonra, diğer nozülden ilk direğe sızdırılan malzemeyi silin." -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "Değişimden Sonra Sürme Nozülü" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "Ekstruderi değiştirdikten sonra ilk nesne yazdırıldığında nozülden sızan malzemeyi temizleyin. Bu, sızdırılan malzemenin yazdırmanın yüzey kalitesine en az zarar verdiği yerlerde güvenli ve yavaş bir temizleme hareketi gerçekleştirir." - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "İlk Direk Temizleme Hacmi" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "İlk direk silinirken temizlenecek olan filaman miktarı. Temizleme işlemi, nozül aktif değilken sızarak kaybolan filamanı dengelemeye yarar." - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4657,6 +4715,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri." +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5167,7 +5235,9 @@ msgctxt "wireframe_up_half_speed description" msgid "" "Distance of an upward move which is extruded with half speed.\n" "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -msgstr "Yarı hızda sıkıştırılmış yukarı doğru hareket mesafesi.\nBu katmanlarda malzemeyi çok fazla ısıtmayarak önceki katmanlarda daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır." +msgstr "" +"Yarı hızda sıkıştırılmış yukarı doğru hareket mesafesi.\n" +"Bu katmanlarda malzemeyi çok fazla ısıtmayarak önceki katmanlarda daha iyi yapışma sağlayabilir. Sadece kablo yazdırmaya uygulanır." #: fdmprinter.def.json msgctxt "wireframe_top_jump label" @@ -5314,6 +5384,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "Daha küçük bir katmanın kullanılıp kullanılmayacağını belirleyen eşik. Bu rakam bir katmandaki en dik eğimin tanjantına eşittir." +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5344,16 +5434,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "Eğer bir yüzey alanı bölgesi, alanının bu yüzdeden daha azı için destekleniyorsa, köprü ayarlarını kullanarak yazdırın. Aksi halde normal yüzey alanı ayarları kullanılarak yazdırılır." -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "Köprü Duvarı Maksimum Çıkıntısı" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "Bir duvar, köprü ayarları kullanılarak yazdırılmadan önce o duvar çizgisinin altındaki hava bölgesinin maksimum izin verilen genişliği. Duvar çizgisi genişliğinin bir yüzdesi olarak ifade edilir. Hava boşluğu bundan daha geniş olduğunda, duvar çizgisi köprü ayarları kullanılarak yazdırılır. Aksi halde duvar çizgisi normal ayarlar kullanılarak yazdırılır. Değer ne kadar düşük olursa, çıkıntı yapan duvar çizgilerinin köprü ayarları kullanılarak yazdırılması ihtimali o kadar yüksek olur." - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5574,6 +5654,66 @@ 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 "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Eş merkezli 3D" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "Tarama, hareket sırasında nozülü halihazırda yazdırılmış bölgelerde tutar. Bu şekilde biraz daha uzun hareket hamleleri sağlarken geri çekme ihtiyacını azaltır. Tarama kapatıldığında, malzeme geri çekilecek ve nozül bir sonraki noktaya kadar düz bir çizgide hareket edecektir. Sadece dolgunun taratılmasıyla üst/alt yüzey bölgelerinde taramanın engellenmesi de mümkündür." + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Eş merkezli 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Eş merkezli 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Eş Merkezli 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Eş Merkezli 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Radye Hat Boşluğu" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "İlk Direğin Kalınlığı" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "Boş olan ilk direğin kalınlığı Kalınlığın Minimum İlk Direk Hacminin yarısından fazla olması ilk direğin yoğun olmasına neden olur." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Değişimden Sonra Sürme Nozülü" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Ekstruderi değiştirdikten sonra ilk nesne yazdırıldığında nozülden sızan malzemeyi temizleyin. Bu, sızdırılan malzemenin yazdırmanın yüzey kalitesine en az zarar verdiği yerlerde güvenli ve yavaş bir temizleme hareketi gerçekleştirir." + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "İlk Direk Temizleme Hacmi" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "İlk direk silinirken temizlenecek olan filaman miktarı. Temizleme işlemi, nozül aktif değilken sızarak kaybolan filamanı dengelemeye yarar." + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Köprü Duvarı Maksimum Çıkıntısı" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "Bir duvar, köprü ayarları kullanılarak yazdırılmadan önce o duvar çizgisinin altındaki hava bölgesinin maksimum izin verilen genişliği. Duvar çizgisi genişliğinin bir yüzdesi olarak ifade edilir. Hava boşluğu bundan daha geniş olduğunda, duvar çizgisi köprü ayarları kullanılarak yazdırılır. Aksi halde duvar çizgisi normal ayarlar kullanılarak yazdırılır. Değer ne kadar düşük olursa, çıkıntı yapan duvar çizgilerinin köprü ayarları kullanılarak yazdırılması ihtimali o kadar yüksek olur." + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun bir süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 3cc29bd7b7..7627e91a91 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-06-22 11:32+0800\n" "Last-Translator: Bothof \n" "Language-Team: PCDotFan , Bothof \n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "GCode 文件" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -59,78 +70,17 @@ msgstr "" "

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

\n" "

查看打印质量指南

" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "使用 Doodle3D WiFi-Box 打印" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "使用 Doodle3D WiFi-Box 打印" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "连接至 Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "取消" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "发送数据至 Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "无法发送数据至 Doodle3D Connect。 是否有另一项作业仍在进行?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "在 Doodle3D Connect 中存储数据" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "已发送至 Doodle3D Connect 的文件" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "打开 链接..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "打开 Doodle3D Connect Web 界面" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "显示更新日志" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "合并有效设置" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "配置文件已被合并并激活。" @@ -155,6 +105,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "通过 USB 连接" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -177,6 +132,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "压缩 G-code 文件" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -199,7 +159,7 @@ msgid "Save to Removable Drive {0}" msgstr "保存到可移动磁盘 {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "没有可进行写入的文件格式!" @@ -238,7 +198,7 @@ msgstr "无法保存到可移动磁盘 {0}:{1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "错误" @@ -267,8 +227,8 @@ msgstr "弹出可移动设备 {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "警告" @@ -295,212 +255,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "可移动磁盘" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "通过网络打印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "通过网络打印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "已通过网络连接。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "已通过网络连接。请在打印机上接受访问请求。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "已通过网络连接,但没有打印机的控制权限。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "已发送打印机访问请求,请在打印机上批准该请求。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "身份验证状态" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "身份验证状态" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "重试" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "重新发送访问请求" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "打印机接受了访问请求" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "无法使用本打印机进行打印,无法发送打印作业。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "请求访问" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "向打印机发送访问请求" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "无法启动新的打印作业。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Ultimaker 配置存在问题,导致无法开始打印。请解决此问题,然后再继续。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "配置不匹配" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "您确定要使用所选配置进行打印吗?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "打印机的配置或校准与 Cura 之间不匹配。为了获得最佳打印效果,请务必切换打印头和打印机中插入的材料。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "发送新作业(暂时)受阻,仍在发送前一份打印作业。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "向打印机发送数据" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "正在发送数据" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "插槽 {slot_number} 中未加载 Printcore" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "插槽 {slot_number} 中未加载材料" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "为挤出机 {extruder_id} 选择了不同的 PrintCore(Cura: {cura_printcore_name},打印机:{remote_printcore_name})" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "您为挤出机 {2} 选择了不同的材料(Cura:{0},打印机:{1})" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "与您的打印机同步" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "您想在 Cura 中使用当前的打印机配置吗?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "打印机上的打印头和/或材料与当前项目中的不同。 为获得最佳打印效果,请始终使用已插入打印机的打印头和材料进行切片。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "已通过网络连接。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "打印作业已成功发送到打印机。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "数据已发送" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "在监控器中查看" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "打印机 '{printer_name}' 完成了打印任务 '{job_name}'。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "打印作业 '{job_name}' 已完成。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "打印完成" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "通过网络连接" @@ -510,24 +485,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "监控" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "您的 {machine_name} 有新功能可用! 建议您更新打印机上的固件。" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "新 %s 固件可用" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "如何更新" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "无法获取更新信息。" @@ -537,17 +512,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "分层视图" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "当单线打印(Wire Printing)功能开启时,Cura 将无法准确地显示打印层(Layers)" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "仿真视图" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "修改 G-Code 文件" @@ -561,32 +536,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "创建一个不打印支撑的体积。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura 将收集匿名的使用统计数据。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "正在收集数据" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "详细信息" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "请参阅更多关于Cura发送的数据的信息。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "允许" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "允许 Cura 发送匿名的使用统计数据,以帮助确定将来 Cura 的改进优先顺序。已发送您的一些偏好和设置,Cura 版本和您正在切片的模型的散列值。" @@ -596,20 +571,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Cura 15.04 配置文件" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Blender 文件" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "" -"无法使用 \"{}\" 导出质量!\n" -"返回 \"{}\"。" - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -635,49 +596,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF 图像" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "无法切片" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "无法切片(原因:主塔或主位置无效)。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "无法执行,因为没有一个模型符合成形空间体积。请缩放或旋转模型以适应打印平台。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "正在处理层" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "信息" @@ -704,18 +672,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "自定义" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 文件" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "喷嘴" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -726,18 +705,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "G 文件" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "解析 G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "G-code 详细信息" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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 文件可能不准确。" @@ -748,16 +727,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 配置文件" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "配置文件助手" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "配置文件助手" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MF 文件" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 项目 3MF 文件" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -839,19 +833,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "未知" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "预切片文件 {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "文件已存在" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -863,23 +857,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "未覆盖" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "所选材料与所选机器或配置不兼容。" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "不兼容材料" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "已根据挤出机的当前可用性更改设置:[%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "设置已更新" @@ -962,13 +956,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "配置文件缺少打印质量类型定义。" -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "无法为当前配置找到质量类型 {0}。" -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -995,42 +989,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有文件 (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "自定义材料" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "自定义" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "成形空间体积" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "不能从用户数据目录创建存档: {}" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "备份" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "试图恢复与您当前版本不匹配的Cura备份。" @@ -1041,32 +1035,32 @@ msgid "Multiplying and placing objects" msgstr "复制并放置模型" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "放置模型" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "无法在成形空间体积内放下全部模型" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "正在为模型寻找新位置" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "正在寻找位置" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "找不到位置" @@ -1205,223 +1199,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "发送报告" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "正在载入打印机..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "正在设置场景..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "正在载入界面…" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "所选模型过小,无法加载。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "打印机设置" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "打印机" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "打印机设置" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (宽度)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (深度)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (高度)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "打印平台形状" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "置中" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "加热床" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "G-code 风格" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "打印头设置" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X 最小值" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "打印头左侧至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y 最小值" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "打印头前端至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X 最大值" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "打印头右侧至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y 最大值" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "打印头后部至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "十字轴高度" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。 用于防止“排队”打印时之前的打印品与十字轴发生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "挤出机数目" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "开始 G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "将在开始时执行的 G-code 命令。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "结束 G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "将在结束时执行的 G-code 命令。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "喷嘴设置" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "喷嘴孔径" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "兼容的材料直径" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "打印机所支持耗材的公称直径。 材料和/或配置文件将覆盖精确直径。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "喷嘴偏移 X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "喷嘴偏移 Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "挤出机的开始 G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "挤出机的结束 G-code" @@ -1441,29 +1435,42 @@ msgctxt "@info" msgid "Could not connect to the Cura Package database. Please check your connection." msgstr "无法连接到Cura包数据库。请检查您的连接。" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "插件" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "材料" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "版本" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "更新日期" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "作者" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "未知" @@ -1496,16 +1503,56 @@ msgctxt "@action:button" msgid "Back" msgstr "背部" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 msgctxt "@info" msgid "You will need to restart Cura before changes in packages have effect." msgstr "在包装更改生效之前,您需要重新启动Cura。" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "退出 Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1552,12 +1599,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "拒绝" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "精选" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "兼容性" @@ -1567,10 +1614,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "获取包……" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "联系方式" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1584,9 +1636,9 @@ msgstr "更新日志" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1634,22 +1686,22 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "用户协议" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "现有连接" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "此打印机/打印机组已添加到 Cura。请选择其他打印机/打印机组。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "连接到网络打印机" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" @@ -1660,333 +1712,339 @@ msgstr "" "\n" "从以下列表中选择您的打印机:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "添加" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "编辑" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "删除" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "刷新" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "类型" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "固件版本" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "地址" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机。" +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "这台打印机是一组共 %1 台已连接 Ultimaker 3 打印机的主机。" +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "该网络地址的打印机尚未响应。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "连接" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "打印机网络地址" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "输入打印机在网络上的 IP 地址或主机名。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "确定" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "通过网络打印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "打印机选择" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "打印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 未设置为运行一组连接的 Ultimaker 3 打印机" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "添加/删除打印机" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "使用默认 Web 浏览器打开打印作业页面。" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "查看打印作业" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "正在准备打印" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "打印" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "可用" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "与打印机的连接中断" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "不可用" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "未知" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "已禁用" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "保留" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "已完成" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "正在准备打印" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "需要采取行动" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "已暂停" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "恢复" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "打印已中止" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "不接受打印作业" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "完成时间:" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "清空打印平台" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "正在等待配置更改" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "打印作业" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "打印" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "已排队" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "打印机" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "打印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "查看打印机" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "中止打印" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "已完成" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "准备" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "已暂停" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "恢复" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "需要采取行动" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "连接到打印机" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "将打印机配置导入 Cura" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "应用配置" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "颜色方案" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "材料颜色" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "走线类型" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "进给速度" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "层厚度" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "兼容模式" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "显示移动轨迹" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "显示打印辅助结构" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "显示外壳" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "显示填充" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "只显示顶层" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "在顶部显示 5 层打印细节" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "顶 / 底层" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "内壁" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "最小" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "最大" @@ -2106,53 +2164,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "网格类型" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "正常模式" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "打印为支撑" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "不支持与其他模型重叠" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "修改与其他模型重叠的设置" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "修改其他模型填充物的设置" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "选择设置" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "选择对此模型的自定义设置" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "筛选…" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "显示全部" @@ -2174,13 +2232,13 @@ msgid "Create new" msgstr "新建" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "摘要 - Cura 项目" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "打印机设置" @@ -2197,7 +2255,7 @@ msgid "Update" msgstr "更新" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "类型" @@ -2208,7 +2266,7 @@ msgid "Printer Group" msgstr "打印机组" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "配置文件设置" @@ -2220,19 +2278,19 @@ msgstr "配置文件中的冲突如何解决?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "名字" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "不在配置文件中" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2260,7 +2318,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "材料的设置冲突应如何解决?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "设置可见性" @@ -2271,13 +2329,13 @@ msgid "Mode" msgstr "模式" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "可见设置:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" @@ -2292,6 +2350,82 @@ msgctxt "@action:button" msgid "Open" msgstr "打开" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "导出" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00 小时 00 分" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "成本规定" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "总计:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2510,26 +2644,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "请取出打印件" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "暂停" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "恢复" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "中止打印" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "中止打印" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2566,19 +2684,17 @@ msgid "Customized" msgstr "自定义" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "总是询问" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "舍弃更改,并不再询问此问题" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "保留更改,并不再询问此问题" @@ -2598,101 +2714,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "创建新配置文件" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "信息" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "确认直径更改" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "显示名称" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "品牌" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "材料类型" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "颜色" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "属性" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "密度" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "直径" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "耗材成本" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "耗材重量" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "耗材长度" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "每米成本" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "此材料与 %1 相关联,并共享其某些属性。" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "解绑材料" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "描述" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "粘附信息" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "打印设置" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "激活" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "创建" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "复制" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "导入" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "打印机" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "确认删除" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "您确认要删除 %1?该操作无法恢复!" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "导入配置" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "无法导入材料 %1%2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "成功导入材料 %1" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "导出材料" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "无法导出材料至 %1%2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "成功导出材料至: %1" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2729,7 +2917,7 @@ msgid "Unit" msgstr "单位" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "基本" @@ -2921,8 +3109,8 @@ msgstr "打开项目文件时的默认行为:" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "总是询问" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2941,77 +3129,75 @@ msgstr "当您对配置文件进行更改并切换到其他配置文件时将显 #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "重写配置文件" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "隐私" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "当 Cura 启动时,是否自动检查更新?" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "启动时检查更新" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(匿名)发送打印信息" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "详细信息" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "实验性" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "使用多打印平台功能" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "使用多打印平台功能(需要重启)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "是否在打印平台上编位新加载的模型?与多打印平台结合使用(实验性)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "不要编位加载的对象" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "打印机" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "激活" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3055,7 +3241,7 @@ msgid "Aborting print..." msgstr "中止打印..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "配置文件" @@ -3070,18 +3256,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "复制" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "导入" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "导出" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3092,18 +3266,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "复制配置文件" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "确认删除" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "您确认要删除 %1?该操作无法恢复!" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3124,96 +3286,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "打印机:%1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "受保护的配置文件" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "自定义配置文件" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "使用当前设置 / 重写值更新配置文件" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "舍弃当前更改" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "您当前的设置与选定的配置文件相匹配。" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "全局设置" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "材料" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "创建" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "复制" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "导入配置" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "无法导入材料 %1%2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "成功导入材料 %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "导出材料" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "无法导出材料至 %1%2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "成功导出材料至: %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "打印机" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "新增打印机" @@ -3228,6 +3337,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "新增打印机" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3383,33 +3497,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "将所有修改值复制到所有挤出机" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "隐藏此设置" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "不再显示此设置" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "保持此设置可见" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "配置设定可见性..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "全部折叠" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "全部展开" @@ -3503,7 +3617,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "向连接的打印机发送自定义 G-code 命令。按“Enter”发送命令。" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "挤出机" @@ -3556,7 +3670,7 @@ msgid "The nozzle inserted in this extruder." msgstr "该挤出机所使用的喷嘴。" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "打印平台" @@ -3581,6 +3695,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3677,38 +3806,11 @@ msgstr "" "打印设置已禁用\n" "G-code 文件无法被修改" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00 小时 00 分" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "时间规格" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "成本规定" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "总计:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3719,30 +3821,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "自定义打印设置

对切片过程中的每一个细节进行精细控制。" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "正在打印" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "作业名" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "打印时间" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "预计剩余时间" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "切换完整界面(&F)" +msgid "Toggle Full Screen" +msgstr "切换完整界面" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3761,28 +3863,28 @@ msgstr "退出(&Q)" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "3D 视图(&3)" +msgid "3D View" +msgstr "3D 视图" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "正视图(&F)" +msgid "Front View" +msgstr "正视图" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "顶视图(&T)" +msgid "Top View" +msgstr "顶视图" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "左视图(&L)" +msgid "Left Side View" +msgstr "左视图" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "右视图(&R)" +msgid "Right Side View" +msgstr "右视图" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3836,185 +3938,184 @@ msgstr "BUG 反馈(&B)" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "关于(&A)…" +msgid "About..." +msgstr "关于…" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "删除所选模型(&S)" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "删除所选模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "居中所选模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "复制所选模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "删除模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "使模型居于平台中央(&N)" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "绑定模型(&G)" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "拆分模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "合并模型(&M)" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "复制模型…(&M)" +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "选择所有模型" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "选择所有模型(&S)" +msgid "Clear Build Plate" +msgstr "清空打印平台" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "清空打印平台(&C)" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "重新载入所有模型(&L)" +msgid "Reload All Models" +msgstr "重新载入所有模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "将所有模型编位到所有打印平台" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "编位所有的模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "为所选模型编位" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "复位所有模型的位置" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "复位所有模型的变动(&T)" +msgid "Reset All Model Transformations" +msgstr "复位所有模型的变动" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "打开文件(&O)…" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "新建项目(&N)…" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "显示引擎日志(&L)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "显示配置文件夹" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "浏览包……" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "展开/折叠侧边栏" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "请载入一个 3D 模型" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "切片已准备就绪" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "%1 已准备就绪" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "无法切片" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "切片不可用" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "分割当前打印作业" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "取消切片流程" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "准备" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "取消" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "选择活动的输出装置" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "打开文件" @@ -4034,129 +4135,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "文件(&F)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "保存到文件(&S)" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "另存为(&A)…" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "保存项目(&P)..." - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "编辑(&E)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "视图(&V)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "设置(&S)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "打印机(&P)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "材料(&M)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "设为主要挤出机" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "启用挤出机" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "禁用挤出机" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "打印平台(&B)" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "配置文件(&P)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "扩展(&X)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "&工具箱" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "偏好设置(&R)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "帮助(&H)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "这个包将在重新启动后安装。" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "打开文件" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "设置" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "新建项目" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "安装包" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "打开文件" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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 文件,请仅选择一个。" @@ -4166,112 +4283,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "保存项目" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "打印平台" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "挤出机 %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & 材料" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "保存时不再显示项目摘要" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "保存" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "层高" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请更改配置以便启用此配置文件" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "自定义配置文件目前处于活动状态。 如要启用质量滑块,请在“自定义”选项卡中选择一个默认质量配置文件" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "打印速度" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "更慢" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "更快" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "您已修改部分配置文件设置。 如果您想对其进行更改,请转至自定义模式。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "填充" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 msgctxt "@label" msgid "Gradual infill will gradually increase the amount of infill towards the top." msgstr "渐层填充(Gradual infill)将随着打印高度的提升而逐渐加大填充密度。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "启用渐层" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "生成支撑" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "选择用于支撑的挤出机。该挤出机将在模型之下建立支撑结构,以防止模型下垂或在空中打印。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "打印平台附着" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "需要帮助改善您的打印?
阅读 Ultimaker 故障排除指南" @@ -4317,22 +4434,22 @@ msgctxt "@label" msgid "Printer type" msgstr "打印机类型:" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "材料" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "在此材料组合的情况下,请使用附着垫片或者胶水" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "检查兼容性" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "点击查看 Ultimaker.com 上的材料兼容情况。" @@ -4422,16 +4539,6 @@ msgctxt "name" msgid "God Mode" msgstr "God 模式" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "接受 G-Code 并通过 WiFi 将其发送到 Doodle3D WiFi-Box。" - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D WiFi-Box" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4512,16 +4619,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "准备阶段" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "提供直接脚本编辑的编辑窗口。" - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "实时脚本工具" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4632,16 +4729,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "旧版 Cura 配置文件读取器" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "帮助直接在 Cura 中打开 Blender 文件。" - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Blender 集成(实验性)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4692,6 +4779,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "版本自 2.7 升级到 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4802,6 +4899,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura 配置文件写入器" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "允许材料制造商使用下拉式 UI 创建新的材料和质量配置文件。" + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "打印配置文件助手" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4832,6 +4939,218 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Cura 配置文件读取器" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "使用 Doodle3D WiFi-Box 打印" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "使用 Doodle3D WiFi-Box 打印" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "连接至 Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "发送数据至 Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "无法发送数据至 Doodle3D Connect。 是否有另一项作业仍在进行?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "在 Doodle3D Connect 中存储数据" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "已发送至 Doodle3D Connect 的文件" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "打开 链接..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "打开 Doodle3D Connect Web 界面" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Blender 文件" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "无法使用 \"{}\" 导出质量!\n" +#~ "返回 \"{}\"。" + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "联系方式" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机。" + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "这台打印机是一组共 %1 台已连接 Ultimaker 3 打印机的主机。" + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 未设置为运行一组连接的 Ultimaker 3 打印机" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "添加/删除打印机" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "使用默认 Web 浏览器打开打印作业页面。" + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "查看打印作业" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "正在准备打印" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "打印" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "可用" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "与打印机的连接中断" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "不可用" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "未知" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "已禁用" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "保留" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "正在准备打印" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "打印已中止" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "不接受打印作业" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "完成时间:" + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "清空打印平台" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "正在等待配置更改" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "打印作业" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "打印机" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "查看打印机" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "暂停" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "恢复" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "中止打印" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "总是询问" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "重写配置文件" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "是否在打印平台上编位新加载的模型?与多打印平台结合使用(实验性)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "不要编位加载的对象" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "保存到文件(&S)" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "另存为(&A)…" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "保存项目(&P)..." + +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "在此材料组合的情况下,请使用附着垫片或者胶水" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "接受 G-Code 并通过 WiFi 将其发送到 Doodle3D WiFi-Box。" + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D WiFi-Box" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "提供直接脚本编辑的编辑窗口。" + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "实时脚本工具" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "帮助直接在 Cura 中打开 Blender 文件。" + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Blender 集成(实验性)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "模型检查器警告" @@ -5099,10 +5418,6 @@ msgstr "Cura 配置文件读取器" #~ msgid "Browse plugins..." #~ msgstr "浏览插件..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "打印平台(&B)" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "插件" @@ -5328,14 +5643,6 @@ msgstr "Cura 配置文件读取器" #~ "\n" #~ "很抱歉!" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "配置文件助手" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "配置文件助手" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "未加载材料" @@ -5466,14 +5773,6 @@ msgstr "Cura 配置文件读取器" #~ msgid "Configure setting visiblity..." #~ msgstr "配置设置可见性..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "自动:%1" @@ -5510,14 +5809,6 @@ msgstr "Cura 配置文件读取器" #~ msgid "GCode Profile Reader" #~ msgstr "GCode 配置文件读取器" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "允许材料制造商使用下拉式 UI 创建新的材料和质量配置文件。" - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "打印配置文件助手" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "打开 SolidWorks 文件时发生错误! 请检查能否在 SolidWorks 中正常打开文件而不出现任何问题!" @@ -5713,10 +6004,6 @@ msgstr "Cura 配置文件读取器" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "这台打印机是一组 %1 台已连接 Ultimaker 3 打印机的主机" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "准备" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "完成时间: " diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 0ab1209fae..a6625a02c6 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-04-11 14:40+0100\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 b73600c3ef..f2e14bc412 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-06-22 11:44+0800\n" "Last-Translator: Bothof \n" "Language-Team: PCDotFan , Bothof \n" @@ -86,6 +86,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "材料 GUID,此项为自动设置。" +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1061,6 +1071,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "锯齿状" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1141,6 +1161,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "在内壁已经存在时补偿所打印内壁部分的流量。" +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1506,11 +1546,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "同心圆" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "立体同心圆" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1536,6 +1571,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1566,6 +1611,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "填充图案沿 Y 轴移动此距离。" +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1876,16 +1943,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "用于第一层加热打印平台的温度。" -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2723,8 +2780,8 @@ msgstr "梳理模式" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。 这会使空驶距离稍微延长,但可减少回抽需求。 如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。 也可以通过仅在填充物内进行梳理避免梳理顶部/底部皮肤区域。" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2741,6 +2798,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "除了皮肤" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3121,11 +3183,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "同心" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "同心 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3186,6 +3243,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3476,11 +3553,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "同心" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "同心 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3516,11 +3588,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "同心圆" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "立体同心圆" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3556,16 +3623,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "同心" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "同心 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "锯齿形" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3892,8 +3974,8 @@ msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便 #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "Raft 走线间距" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4110,16 +4192,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "为了清除足够的材料,装填塔每层的最小体积。" -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "装填塔厚度" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "空装填塔的厚度。 如果厚度大于装填塔最小体积的一半,则将打造一个密集的装填塔。" - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4160,26 +4232,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。" -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "切换后擦拭喷嘴" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "切换挤出机后,在打印的第一个物件上擦去喷嘴上的渗出材料。 这会在渗出材料对打印品表面品质造成最小损害的位置进行缓慢安全的擦拭动作。" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "装填塔清洗量" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "在装填塔上进行擦拭时要清洗的耗材量。 清洗可用于补偿在喷嘴不活动期间由于渗出而损失的耗材。" - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4665,6 +4717,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5324,6 +5386,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "决定是否使用较小图层的阈值。该数字相当于一层中最大坡度的切线。" +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5354,16 +5436,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "桥壁最大悬垂" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "在使用连桥设置打印壁之前,壁线下净空区域的最大允许宽度。以壁线宽度的百分比表示。如果间隙大于此宽度,则使用连桥设置打印壁线。否则,将使用正常设置打印壁线。此值越小,使用连桥设置打印悬垂壁线的可能性越大。" - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5584,6 +5656,66 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "立体同心圆" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。 这会使空驶距离稍微延长,但可减少回抽需求。 如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。 也可以通过仅在填充物内进行梳理避免梳理顶部/底部皮肤区域。" + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "立体同心圆" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Raft 走线间距" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "装填塔厚度" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "空装填塔的厚度。 如果厚度大于装填塔最小体积的一半,则将打造一个密集的装填塔。" + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "切换后擦拭喷嘴" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "切换挤出机后,在打印的第一个物件上擦去喷嘴上的渗出材料。 这会在渗出材料对打印品表面品质造成最小损害的位置进行缓慢安全的擦拭动作。" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "装填塔清洗量" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "在装填塔上进行擦拭时要清洗的耗材量。 清洗可用于补偿在喷嘴不活动期间由于渗出而损失的耗材。" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "桥壁最大悬垂" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "在使用连桥设置打印壁之前,壁线下净空区域的最大允许宽度。以壁线宽度的百分比表示。如果间隙大于此宽度,则使用连桥设置打印壁线。否则,将使用正常设置打印壁线。此值越小,使用连桥设置打印悬垂壁线的可能性越大。" + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "优化打印各个壁的顺序,以减少回抽次数和空驶距离。 启用此设置将对大部分零件有益,但有的则会耗费更长时间,因此请将优化和不优化的打印时间估计值进行对比。" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index b44f6c3551..22a1cebe5f 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" +"Project-Id-Version: Cura 3.5\n" "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0200\n" +"POT-Creation-Date: 2018-09-19 17:07+0200\n" "PO-Revision-Date: 2018-06-17 10:40+0800\n" "Last-Translator: Zhang Heh Ji \n" "Language-Team: Zhang Heh Ji \n" @@ -40,6 +40,17 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code 檔案" +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67 +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73 +#: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89 +msgctxt "@warning:status" +msgid "Please generate G-code before saving." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30 msgctxt "@info:title" msgid "3D Model Assistant" @@ -59,78 +70,17 @@ msgstr "" "

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

\n" "

閱讀列印品質指南

" -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65 -msgctxt "@action:button" -msgid "Print with Doodle3D WiFi-Box" -msgstr "使用 Doodle3D 無線網路盒列印" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66 -msgctxt "@properties:tooltip" -msgid "Print with Doodle3D WiFi-Box" -msgstr "使用 Doodle3D 無線網路盒列印" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86 -msgctxt "@info:status" -msgid "Connecting to Doodle3D Connect" -msgstr "正在連接 Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87 -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204 -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88 -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 -#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 -#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 -#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275 -msgctxt "@action:button" -msgid "Cancel" -msgstr "取消" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154 -msgctxt "@info:status" -msgid "Sending data to Doodle3D Connect" -msgstr "正在向 Doodle3D Connect 發送資料" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161 -msgctxt "@info:status" -msgid "Unable to send data to Doodle3D Connect. Is another job still active?" -msgstr "無法向 Doodle3D Connect 發送資料。請確認是否有另一項列印作業正在進行?" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175 -msgctxt "@info:status" -msgid "Storing data on Doodle3D Connect" -msgstr "正在儲存資料到 Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213 -msgctxt "@info:status" -msgid "File sent to Doodle3D Connect" -msgstr "檔案已被傳送到 Doodle3D Connect" - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@action:button" -msgid "Open Connect..." -msgstr "開啟連線..." - -#: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214 -msgctxt "@info:tooltip" -msgid "Open the Doodle3D Connect web interface" -msgstr "開啟 Doodle3D Connect 的網路介面" - -#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33 +#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32 msgctxt "@item:inmenu" msgid "Show Changelog" msgstr "顯示更新日誌" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23 msgctxt "@item:inmenu" msgid "Flatten active settings" msgstr "合併有效設定" -#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32 +#: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35 msgctxt "@info:status" msgid "Profile has been flattened & activated." msgstr "列印參數已被合併並啟用。" @@ -155,6 +105,11 @@ msgctxt "@info:status" msgid "Connected via USB" msgstr "透過 USB 連接" +#: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103 +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15 #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15 msgctxt "X3G Writer File Description" @@ -177,6 +132,11 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "壓縮 G-code 檔案" +#: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38 msgctxt "@item:inlistbox" msgid "Ultimaker Format Package" @@ -199,7 +159,7 @@ msgid "Save to Removable Drive {0}" msgstr "儲存到行動裝置 {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131 msgctxt "@info:status" msgid "There are no file formats available to write with!" msgstr "沒有可供寫入的檔案格式!" @@ -238,7 +198,7 @@ msgstr "無法儲存到行動裝置 {0}:{1}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567 msgctxt "@info:title" msgid "Error" msgstr "錯誤" @@ -267,8 +227,8 @@ msgstr "卸載行動裝置 {0}" #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582 -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651 msgctxt "@info:title" msgid "Warning" msgstr "警告" @@ -295,212 +255,227 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "行動裝置" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86 msgctxt "@action:button Preceded by 'Ready to'." msgid "Print over network" msgstr "網路連線列印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87 msgctxt "@properties:tooltip" msgid "Print over network" msgstr "網路連線列印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88 msgctxt "@info:status" msgid "Connected over the network." msgstr "已透過網路連接。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91 msgctxt "@info:status" msgid "Connected over the network. Please approve the access request on the printer." msgstr "已透過網路連接。請在印表機上接受存取請求。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93 msgctxt "@info:status" msgid "Connected over the network. No access to control the printer." msgstr "已透過網路連接,但沒有印表機的控制權限。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98 msgctxt "@info:status" msgid "Access to the printer requested. Please approve the request on the printer" msgstr "已發送印表機存取請求,請在印表機上批准該請求" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101 msgctxt "@info:title" msgid "Authentication status" msgstr "認証狀態" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103 msgctxt "@info:status" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114 msgctxt "@info:title" msgid "Authentication Status" msgstr "認証狀態" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105 msgctxt "@action:button" msgid "Retry" msgstr "重試" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106 msgctxt "@info:tooltip" msgid "Re-send the access request" msgstr "重新發送存取請求" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109 msgctxt "@info:status" msgid "Access to the printer accepted" msgstr "印表機接受了存取請求" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113 msgctxt "@info:status" msgid "No access to print with this printer. Unable to send print job." msgstr "無法使用本印表機進行列印,無法發送列印作業。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73 msgctxt "@action:button" msgid "Request Access" msgstr "請求存取" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72 msgctxt "@info:tooltip" msgid "Send access request to the printer" msgstr "向印表機發送存取請求" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202 msgctxt "@label" msgid "Unable to start a new print job." msgstr "無法開始新的列印作業" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204 msgctxt "@label" msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing." msgstr "Ultimaker 的設定有問題導致無法開始列印。請在繼續之前解決這個問題。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232 msgctxt "@window:title" msgid "Mismatched configuration" msgstr "設定不匹配" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224 msgctxt "@label" msgid "Are you sure you wish to print with the selected configuration?" msgstr "你確定要使用所選設定進行列印嗎?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226 msgctxt "@label" msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "印表機的設定或校正與 Cura 之間不匹配。為了獲得最佳列印效果,請使用印表機的 PrintCores 和耗材設定進行切片。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197 msgctxt "@info:status" msgid "Sending new jobs (temporarily) blocked, still sending the previous print job." msgstr "前一列印作業傳送中,暫停傳送新列印作業。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232 msgctxt "@info:status" msgid "Sending data to printer" msgstr "正在向印表機發送資料" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233 msgctxt "@info:title" msgid "Sending Data" msgstr "發送資料中" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143 +#: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 +#: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391 +#: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279 +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325 #, python-brace-format msgctxt "@info:status" msgid "No Printcore loaded in slot {slot_number}" msgstr "Slot {slot_number} 中沒有載入 Printcore" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331 #, python-brace-format msgctxt "@info:status" msgid "No material loaded in slot {slot_number}" msgstr "Slot {slot_number} 中沒有載入耗材" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354 #, python-brace-format msgctxt "@label" msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}" msgstr "擠出機 {extruder_id} 選擇了不同的 PrintCore(Cura:{cura_printcore_name},印表機:{remote_printcore_name})" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363 #, python-brace-format msgctxt "@label" msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}" msgstr "擠出機 {2} 選擇了不同的耗材(Cura:{0},印表機:{1})" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549 msgctxt "@window:title" msgid "Sync with your printer" msgstr "與你的印表機同步" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551 msgctxt "@label" msgid "Would you like to use your current printer configuration in Cura?" msgstr "你想在 Cura 中使用目前的印表機設定嗎?" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553 msgctxt "@label" msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer." msgstr "印表機上的 PrintCores 和/或耗材與目前專案中的不同。為獲得最佳列印效果,請使用目前印表機的 PrintCores 和耗材設定進行切片。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89 msgctxt "@info:status" msgid "Connected over the network" msgstr "透過網路連接" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310 msgctxt "@info:status" msgid "Print job was successfully sent to the printer." msgstr "列印作業已成功傳送到印表機。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312 msgctxt "@info:title" msgid "Data Sent" msgstr "資料傳送" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313 msgctxt "@action:button" msgid "View in Monitor" msgstr "使用監控觀看" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420 #, python-brace-format msgctxt "@info:status" msgid "Printer '{printer_name}' has finished printing '{job_name}'." msgstr "印表機 '{printer_name}' 已完成列印 '{job_name}'。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422 #, python-brace-format msgctxt "@info:status" msgid "The print job '{job_name}' was finished." msgstr "列印作業 '{job_name}' 已完成。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423 msgctxt "@info:status" msgid "Print finished" msgstr "列印已完成" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26 msgctxt "@action" msgid "Connect via Network" msgstr "透過網路連接" @@ -510,24 +485,24 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "監控" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68 #, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer." msgstr "你的 {machine_name} 有新功能可用!建議更新印表機韌體。" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72 #, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s firmware available" msgstr "有新 %s 韌體可用" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75 msgctxt "@action:button" msgid "How to update" msgstr "如何更新" -#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92 +#: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91 msgctxt "@info" msgid "Could not access update information." msgstr "無法存取更新資訊。" @@ -538,17 +513,17 @@ msgctxt "@item:inlistbox" msgid "Layer view" msgstr "分層檢視" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102 msgctxt "@info:status" msgid "Cura does not accurately display layers when Wire Printing is enabled" msgstr "當鐵絲網列印(Wire Printing)功能開啟時,Cura 將無法準確地顯示列印層(Layers)" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103 msgctxt "@info:title" msgid "Simulation View" msgstr "模擬檢視" -#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27 +#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28 msgid "Modify G-Code" msgstr "修改 G-Code 檔案" @@ -562,32 +537,32 @@ msgctxt "@info:tooltip" msgid "Create a volume in which supports are not printed." msgstr "建立一塊不列印支撐的空間。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43 msgctxt "@info" msgid "Cura collects anonymized usage statistics." msgstr "Cura 以匿名方式蒐集使用狀況統計資料。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46 msgctxt "@info:title" msgid "Collecting Data" msgstr "收集資料中" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48 msgctxt "@action:button" msgid "More info" msgstr "更多資訊" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49 msgctxt "@action:tooltip" msgid "See more information on what data Cura sends." msgstr "檢視更多關於 Cura 傳送資料的資訊。" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51 msgctxt "@action:button" msgid "Allow" msgstr "允許" -#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53 +#: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52 msgctxt "@action:tooltip" msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing." msgstr "允許 Cura 以匿名方式傳送使用狀況統計資料,用來協助 Cura 的未來改善工作。你的部份偏好設定和參數,Cura 的版本及你切片模型的雜湊值會被傳送。" @@ -597,20 +572,6 @@ msgctxt "@item:inlistbox" msgid "Cura 15.04 profiles" msgstr "Cura 15.04 列印參數" -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Blender file" -msgstr "Blender 檔案" - -#: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199 -msgctxt "@info:status" -msgid "" -"Could not export using \"{}\" quality!\n" -"Felt back to \"{}\"." -msgstr "" -"無法使用 \"{}\" 品質導出!\n" -"覆蓋回 \"{}\"。" - #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14 msgctxt "@item:inlistbox" msgid "JPG Image" @@ -636,49 +597,56 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF 圖片" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "無法使用目前耗材切片,因為它與所選機器或設定不相容。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415 msgctxt "@info:title" msgid "Unable to slice" msgstr "無法切片" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363 #, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387 #, 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/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "無法切片(原因:換料塔或主位置無效)。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405 +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414 msgctxt "@info:status" msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit." msgstr "沒有模型可進行切片,因為模型超出了列印範圍。請縮放或旋轉模型, 讓模型可置入列印範圍。" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50 -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:status" msgid "Processing Layers" msgstr "正在處理層" -#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243 +#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242 msgctxt "@info:title" msgid "Information" msgstr "資訊" @@ -705,18 +673,29 @@ msgctxt "@title:tab" msgid "Custom" msgstr "自訂選項" -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32 -#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28 +#: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34 msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 檔案" -#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199 -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695 +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711 msgctxt "@label" msgid "Nozzle" msgstr "噴頭" +#: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468 +#, 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/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12 msgctxt "@item:inmenu" msgid "Solid view" @@ -727,18 +706,18 @@ msgctxt "@item:inlistbox" msgid "G File" msgstr "G 檔案" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317 msgctxt "@info:status" msgid "Parsing G-code" msgstr "正在解析 G-code" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324 -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466 msgctxt "@info:title" msgid "G-code Details" msgstr "G-code 細項設定" -#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468 +#: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464 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 檔案可能不準確。" @@ -749,16 +728,31 @@ msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 列印參數" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Profile Assistant" +msgstr "參數助手" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17 +msgctxt "@item:inlistbox" +msgid "Profile Assistant" +msgstr "參數助手" + +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26 msgctxt "@item:inlistbox" msgid "3MF file" msgstr "3MF 檔案" -#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38 +#: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34 msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 專案 3MF 檔案" +#: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18 msgctxt "@action" @@ -840,19 +834,19 @@ msgctxt "@label unknown material" msgid "Unknown" msgstr "未知" -#: /home/ruben/Projects/Cura/cura/PrintInformation.py:313 +#: /home/ruben/Projects/Cura/cura/PrintInformation.py:314 #, python-brace-format msgctxt "@label" msgid "Pre-sliced file {0}" msgstr "預切片檔案 {0}" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121 msgctxt "@title:window" msgid "File Already Exists" msgstr "檔案已經存在" -#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236 +#: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187 #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122 #, python-brace-format msgctxt "@label Don't translate the XML tag !" @@ -864,23 +858,23 @@ msgctxt "@menuitem" msgid "Not overridden" msgstr "不覆寫" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 msgctxt "@info:status" msgid "The selected material is incompatible with the selected machine or configuration." msgstr "所選耗材與所選機器或設定不相容。" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121 msgctxt "@info:title" msgid "Incompatible Material" msgstr "不相容的耗材" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863 #, python-format msgctxt "@info:generic" msgid "Settings have been changed to match the current availability of extruders: [%s]" msgstr "設定已改為與目前擠出機性能相匹配:[%s]" -#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844 +#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865 msgctxt "@info:title" msgid "Settings updated" msgstr "設定更新" @@ -963,13 +957,13 @@ msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "列印參數缺少列印品質類型定義。" -#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368 +#: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370 #, python-brace-format msgctxt "@info:status" msgid "Could not find a quality type {0} for the current configuration." msgstr "無法為目前設定找到品質類型 {0}。" -#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60 +#: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59 #, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" @@ -996,42 +990,42 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有檔案 (*)" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609 msgctxt "@label" msgid "Custom Material" msgstr "自訂耗材" -#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545 +#: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610 msgctxt "@label" msgid "Custom" msgstr "自訂" -#: /home/ruben/Projects/Cura/cura/BuildVolume.py:80 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:81 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/ruben/Projects/Cura/cura/BuildVolume.py:82 +#: /home/ruben/Projects/Cura/cura/BuildVolume.py:83 msgctxt "@info:title" msgid "Build Volume" msgstr "列印範圍" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97 msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "無法從使用者資料目錄建立備份檔:{}" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102 msgctxt "@info:title" msgid "Backup" msgstr "備份" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "嘗試復原沒有正確資料或 meta data 的 Cura 備份。" -#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126 +#: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122 msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that does not match your current version." msgstr "嘗試復原版本不符的 Cura 備份。" @@ -1042,32 +1036,32 @@ msgid "Multiplying and placing objects" msgstr "正在複製並放置模型" #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28 -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "擺放物件中" -#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100 #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "無法在列印範圍內放下全部物件" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "正在為物件尋找新位置" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 msgctxt "@info:title" msgid "Finding Location" msgstr "尋找位置中" #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97 -#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 +#: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 msgctxt "@info:title" msgid "Can't Find Location" msgstr "無法找到位置" @@ -1206,223 +1200,223 @@ msgctxt "@action:button" msgid "Send report" msgstr "送出報告" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:328 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:454 msgctxt "@info:progress" msgid "Loading machines..." msgstr "正在載入印表機..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:756 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:748 msgctxt "@info:progress" msgid "Setting up scene..." msgstr "正在設定場景..." -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:789 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:784 msgctxt "@info:progress" msgid "Loading interface..." msgstr "正在載入介面…" -#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:997 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1581 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1591 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566 #, 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/ruben/Projects/Cura/cura/CuraApplication.py:1680 +#: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650 msgctxt "@info:status" msgid "The selected model was too small to load." msgstr "選擇的模型太小無法載入。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61 msgctxt "@title" msgid "Machine Settings" msgstr "印表機設定" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80 msgctxt "@title:tab" msgid "Printer" msgstr "印表機" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99 msgctxt "@label" msgid "Printer Settings" msgstr "印表機設定" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110 msgctxt "@label" msgid "X (Width)" msgstr "X (寬度)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430 -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857 msgctxt "@label" msgid "mm" msgstr "mm" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120 msgctxt "@label" msgid "Y (Depth)" msgstr "Y (深度)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130 msgctxt "@label" msgid "Z (Height)" msgstr "Z (高度)" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142 msgctxt "@label" msgid "Build plate shape" msgstr "列印平台形狀" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151 msgctxt "@option:check" msgid "Origin at center" msgstr "原點位於中心" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159 msgctxt "@option:check" msgid "Heated bed" msgstr "熱床" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170 msgctxt "@label" msgid "G-code flavor" msgstr "G-code 類型" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183 msgctxt "@label" msgid "Printhead Settings" msgstr "列印頭設定" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193 msgctxt "@label" msgid "X min" msgstr "X 最小值" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194 msgctxt "@tooltip" msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "列印頭左側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203 msgctxt "@label" msgid "Y min" msgstr "Y 最小值" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204 msgctxt "@tooltip" msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "列印頭前端至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213 msgctxt "@label" msgid "X max" msgstr "X 最大值" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214 msgctxt "@tooltip" msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "列印頭右側至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223 msgctxt "@label" msgid "Y max" msgstr "Y 最大值" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224 msgctxt "@tooltip" msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"." msgstr "列印頭後部至噴頭中心的距離。用於防止「排隊列印」時之前的列印品與列印頭發生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 msgctxt "@label" msgid "Gantry height" msgstr "龍門高度" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238 msgctxt "@tooltip" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"." msgstr "噴頭尖端與龍門系統(X 軸和 Y 軸)之間的高度差。用於防止「排隊列印」時之前的列印品與龍門發生碰撞。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257 msgctxt "@label" msgid "Number of Extruders" msgstr "擠出機數目" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313 msgctxt "@label" msgid "Start G-code" msgstr "起始 G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323 msgctxt "@tooltip" msgid "G-code commands to be executed at the very start." msgstr "開始時最先執行的 G-code 命令。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332 msgctxt "@label" msgid "End G-code" msgstr "結束 G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342 msgctxt "@tooltip" msgid "G-code commands to be executed at the very end." msgstr "結束前最後執行的 G-code 命令。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373 msgctxt "@label" msgid "Nozzle Settings" msgstr "噴頭設定" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385 msgctxt "@label" msgid "Nozzle size" msgstr "噴頭孔徑" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 msgctxt "@label" msgid "Compatible material diameter" msgstr "相容的耗材直徑" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403 msgctxt "@tooltip" msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile." msgstr "印表機所支援的耗材直徑。實際列印的耗材直徑由耗材和/或列印參數提供。" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419 msgctxt "@label" msgid "Nozzle offset X" msgstr "噴頭偏移 X" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431 msgctxt "@label" msgid "Nozzle offset Y" msgstr "噴頭偏移 Y" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452 msgctxt "@label" msgid "Extruder Start G-code" msgstr "擠出機起始 G-code" -#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468 +#: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470 msgctxt "@label" msgid "Extruder End G-code" msgstr "擠出機結束 G-code" @@ -1442,29 +1436,42 @@ msgctxt "@info" msgid "Could not connect to the Cura Package database. Please check your connection." msgstr "無法連上 Cura 軟體包資料庫。請檢查你的網路連線。" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38 #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26 msgctxt "@title:tab" msgid "Plugins" msgstr "外掛" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544 +msgctxt "@title:tab" +msgid "Materials" +msgstr "耗材" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80 msgctxt "@label" msgid "Version" msgstr "版本" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86 msgctxt "@label" msgid "Last updated" msgstr "最後更新時間" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92 msgctxt "@label" msgid "Author" msgstr "作者" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98 +msgctxt "@label" +msgid "Downloads" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255 msgctxt "@label" msgid "Unknown" msgstr "未知" @@ -1497,16 +1504,56 @@ msgctxt "@action:button" msgid "Back" msgstr "返回" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20 +msgctxt "@title:window" +msgid "Confirm uninstall " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/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/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51 +msgctxt "@text:window" +msgid "Materials" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52 +msgctxt "@text:window" +msgid "Profiles" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89 +msgctxt "@action:button" +msgid "Confirm" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17 msgctxt "@info" msgid "You will need to restart Cura before changes in packages have effect." msgstr "需重新啟動 Cura,軟體包的更動才能生效。" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34 msgctxt "@info:button" msgid "Quit Cura" msgstr "結束 Cura" +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Contributions" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34 +msgctxt "@label" +msgid "Community Plugins" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43 +msgctxt "@label" +msgid "Generic Materials" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54 msgctxt "@title:tab" msgid "Installed" @@ -1553,12 +1600,12 @@ msgctxt "@action:button" msgid "Decline" msgstr "拒絕" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23 msgctxt "@label" msgid "Featured" msgstr "精選" -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31 msgctxt "@label" msgid "Compatibility" msgstr "相容性" @@ -1568,10 +1615,15 @@ msgctxt "@info" msgid "Fetching packages..." msgstr "取得軟體包..." -#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87 +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88 msgctxt "@label" -msgid "Contact" -msgstr "聯繫" +msgid "Website" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94 +msgctxt "@label" +msgid "Email" +msgstr "" #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22 msgctxt "@info:tooltip" @@ -1585,9 +1637,9 @@ msgstr "更新日誌" #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37 #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56 #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464 -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121 #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148 #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38 @@ -1635,22 +1687,22 @@ msgctxt "@title:window" msgid "User Agreement" msgstr "使用者授權" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43 msgctxt "@window:title" msgid "Existing Connection" msgstr "目前連線中" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 msgctxt "@message:text" msgid "This printer/group is already added to Cura. Please select another printer/group." msgstr "此印表機/群組已加入 Cura。請選擇另一個印表機/群組。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "連接到網路印表機" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72 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.\n" @@ -1661,333 +1713,339 @@ msgstr "" "\n" "從以下列表中選擇你的印表機:" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42 msgctxt "@action:button" msgid "Add" msgstr "增加" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92 msgctxt "@action:button" msgid "Edit" msgstr "編輯" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128 #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132 msgctxt "@action:button" msgid "Remove" msgstr "移除" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111 msgctxt "@action:button" msgid "Refresh" msgstr "刷新" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204 msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "如果你的印表機未被列出,請閱讀網路列印故障排除指南" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231 msgctxt "@label" msgid "Type" msgstr "類型" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268 msgctxt "@label" msgid "Firmware version" msgstr "韌體版本" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280 msgctxt "@label" msgid "Address" msgstr "位址" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302 msgctxt "@label" -msgid "This printer is not set up to host a group of Ultimaker 3 printers." -msgstr "這台印表機未設定成管理一組 Ultimaker 3 印表機的主機。" +msgid "This printer is not set up to host a group of printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306 msgctxt "@label" -msgid "This printer is the host for a group of %1 Ultimaker 3 printers." -msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機。" +msgid "This printer is the host for a group of %1 printers." +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316 msgctxt "@label" msgid "The printer at this address has not yet responded." msgstr "該網路位址的印表機尚無回應。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39 msgctxt "@action:button" msgid "Connect" msgstr "連接" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335 msgctxt "@title:window" msgid "Printer Address" msgstr "印表機網路位址" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358 msgctxt "@alabel" msgid "Enter the IP address or hostname of your printer on the network." msgstr "輸入印表機在網路上的 IP 位址或主機名。" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387 #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132 #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181 msgctxt "@action:button" msgid "OK" msgstr "確定" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34 msgctxt "@title:window" msgid "Print over network" msgstr "網路連線列印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65 msgctxt "@label" msgid "Printer selection" msgstr "印表機選擇" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105 msgctxt "@action:button" msgid "Print" msgstr "列印" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36 -msgctxt "@label: arg 1 is group name" -msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" -msgstr "%1 未設定成管理一組連線的 Ultimaker 3 印表機的主機" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142 +msgctxt "@label" +msgid "Waiting for: Unavailable printer" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144 +msgctxt "@label" +msgid "Waiting for: First available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148 +msgctxt "@label" +msgid "Waiting for: " +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213 +msgctxt "@label" +msgid "Move to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234 +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236 +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/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245 +msgctxt "@label" +msgid "Delete" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32 msgctxt "@label link to connect manager" -msgid "Add/Remove printers" -msgstr "新增/移除印表機" +msgid "Manage queue" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14 -msgctxt "@info:tooltip" -msgid "Opens the print jobs page with your default web browser." -msgstr "使用預設瀏覽器開啟列印作業頁面。" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130 -msgctxt "@action:button" -msgid "View print jobs" -msgstr "檢視列印作業" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37 -msgctxt "@label:status" -msgid "Preparing to print" -msgstr "準備列印中" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263 -msgctxt "@label:status" -msgid "Printing" -msgstr "正在列印" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41 -msgctxt "@label:status" -msgid "Available" -msgstr "可用" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43 -msgctxt "@label:status" -msgid "Lost connection with the printer" -msgstr "與印表機失去連線" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "無法使用" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47 -msgctxt "@label:status" -msgid "Unknown" -msgstr "未知" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249 -msgctxt "@label:status" -msgid "Disabled" -msgstr "已關閉" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265 -msgctxt "@label:status" -msgid "Reserved" -msgstr "保留" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268 -msgctxt "@label:status" -msgid "Finished" -msgstr "已完成" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392 -msgctxt "@label" -msgid "Preparing to print" -msgstr "準備列印中" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273 -msgctxt "@label:status" -msgid "Action required" -msgstr "需要採取的動作" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276 -msgctxt "@label:status" -msgid "Paused" -msgstr "已暫停" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278 -msgctxt "@label:status" -msgid "Resuming" -msgstr "繼續" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280 -msgctxt "@label:status" -msgid "Print aborted" -msgstr "列印已取消" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373 -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394 -msgctxt "@label" -msgid "Not accepting print jobs" -msgstr "不接受列印作業" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387 -msgctxt "@label" -msgid "Finishes at: " -msgstr "完成時間:" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389 -msgctxt "@label" -msgid "Clear build plate" -msgstr "清空列印平台" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396 -msgctxt "@label" -msgid "Waiting for configuration change" -msgstr "等待設定更動" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63 -msgctxt "@title" -msgid "Print jobs" -msgstr "列印作業" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93 -msgctxt "@label" -msgid "Printing" -msgstr "已排入佇列" - -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54 msgctxt "@label" msgid "Queued" msgstr "已排入佇列" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170 -msgctxt "@label:title" -msgid "Printers" -msgstr "印表機" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44 +msgctxt "@label" +msgid "Printing" +msgstr "已排入佇列" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224 -msgctxt "@action:button" -msgid "View printers" -msgstr "檢視印表機" +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54 +msgctxt "@label link to connect manager" +msgid "Manage printers" +msgstr "" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212 +msgctxt "@label" +msgid "Not available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215 +msgctxt "@label" +msgid "Unreachable" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221 +msgctxt "@label" +msgid "Available" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 +msgctxt "@label" +msgid "Resume" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 +msgctxt "@label" +msgid "Pause" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444 +msgctxt "@label" +msgid "Abort" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464 +#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 +msgctxt "@window:title" +msgid "Abort print" +msgstr "中斷列印" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466 +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673 +msgctxt "@label:status" +msgid "Aborted" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667 +msgctxt "@label:status" +msgid "Finished" +msgstr "已完成" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670 +msgctxt "@label:status" +msgid "Preparing" +msgstr "正在準備" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675 +msgctxt "@label:status" +msgid "Pausing" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677 +msgctxt "@label:status" +msgid "Paused" +msgstr "已暫停" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679 +msgctxt "@label:status" +msgid "Resuming" +msgstr "繼續" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681 +msgctxt "@label:status" +msgid "Action required" +msgstr "需要採取的動作" + +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38 msgctxt "@info:tooltip" msgid "Connect to a printer" msgstr "連接到印表機" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117 msgctxt "@info:tooltip" msgid "Load the configuration of the printer into Cura" msgstr "將印表機設定載入 Cura" -#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118 +#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118 msgctxt "@action:button" msgid "Activate Configuration" msgstr "啟用設定" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130 msgctxt "@label" msgid "Color scheme" msgstr "顏色方案" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145 msgctxt "@label:listbox" msgid "Material Color" msgstr "耗材顏色" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149 msgctxt "@label:listbox" msgid "Line Type" msgstr "線條類型" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153 msgctxt "@label:listbox" msgid "Feedrate" msgstr "進給率" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157 msgctxt "@label:listbox" msgid "Layer thickness" msgstr "層厚" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198 msgctxt "@label" msgid "Compatibility Mode" msgstr "相容模式" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284 msgctxt "@label" msgid "Show Travels" msgstr "顯示移動軌跡" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290 msgctxt "@label" msgid "Show Helpers" msgstr "顯示輔助結構" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296 msgctxt "@label" msgid "Show Shell" msgstr "顯示外殼" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302 msgctxt "@label" msgid "Show Infill" msgstr "顯示填充" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355 msgctxt "@label" msgid "Only Show Top Layers" msgstr "只顯示頂層" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366 msgctxt "@label" msgid "Show 5 Detailed Layers On Top" msgstr "顯示頂端 5 層列印細節" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379 msgctxt "@label" msgid "Top / Bottom" msgstr "頂 / 底層" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383 msgctxt "@label" msgid "Inner Wall" msgstr "內壁" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448 msgctxt "@label" msgid "min" msgstr "最小值" -#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452 +#: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500 msgctxt "@label" msgid "max" msgstr "最大值" @@ -2107,53 +2165,53 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37 msgctxt "@label" msgid "Mesh Type" msgstr "網格類型" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68 msgctxt "@label" msgid "Normal model" msgstr "普通模型" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75 msgctxt "@label" msgid "Print as support" msgstr "做為支撐" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83 msgctxt "@label" msgid "Don't support overlap with other models" msgstr "不支援與其他模型重疊" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91 msgctxt "@label" msgid "Modify settings for overlap with other models" msgstr "修改其他模型的重疊設定" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99 msgctxt "@label" msgid "Modify settings for infill of other models" msgstr "修改其他模型的填充設定" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341 msgctxt "@action:button" msgid "Select settings" msgstr "選擇設定" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383 msgctxt "@title:window" msgid "Select Settings to Customize for this model" msgstr "選擇對此模型的自訂設定" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431 #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98 msgctxt "@label:textbox" msgid "Filter..." msgstr "篩選…" -#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446 +#: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445 msgctxt "@label:checkbox" msgid "Show all" msgstr "顯示全部" @@ -2175,13 +2233,13 @@ msgid "Create new" msgstr "新建" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72 msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "摘要 - Cura 專案" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96 msgctxt "@action:label" msgid "Printer settings" msgstr "印表機設定" @@ -2198,7 +2256,7 @@ msgid "Update" msgstr "更新" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105 msgctxt "@action:label" msgid "Type" msgstr "類型" @@ -2209,7 +2267,7 @@ msgid "Printer Group" msgstr "印表機群組" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196 msgctxt "@action:label" msgid "Profile settings" msgstr "列印參數設定" @@ -2221,19 +2279,19 @@ msgstr "如何解决列印參數中的設定衝突?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216 #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220 msgctxt "@action:label" msgid "Name" msgstr "名稱" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204 msgctxt "@action:label" msgid "Not in profile" msgstr "不在列印參數中" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209 msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -2261,7 +2319,7 @@ msgid "How should the conflict in the material be resolved?" msgstr "如何解决耗材的設定衝突?" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237 msgctxt "@action:label" msgid "Setting visibility" msgstr "參數顯示設定" @@ -2272,13 +2330,13 @@ msgid "Mode" msgstr "模式" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246 msgctxt "@action:label" msgid "Visible settings:" msgstr "顯示設定:" #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357 -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" @@ -2293,6 +2351,82 @@ msgctxt "@action:button" msgid "Open" msgstr "開啟" +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34 +msgctxt "@action:button" +msgid "Previous" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 +msgctxt "@action:button" +msgid "Export" +msgstr "匯出" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140 +msgctxt "@action:button" +msgid "Next" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163 +msgctxt "@label" +msgid "Tip" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 +msgctxt "@label Hours and minutes" +msgid "00h 00min" +msgstr "00 小時 00 分" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 +msgctxt "@label" +msgid "Cost specification" +msgstr "成本明細" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148 +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155 +#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 +msgctxt "@label" +msgid "Total:" +msgstr "總共:" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205 +msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" +msgid "%1m / ~ %2g / ~ %4 %3" +msgstr "%1m / ~ %2g / ~ %4 %3" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210 +msgctxt "@label Print estimates: m for meters, g for grams" +msgid "%1m / ~ %2g" +msgstr "%1m / ~ %2g" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143 +msgctxt "@label" +msgid "Print experiment" +msgstr "" + +#: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26 +msgctxt "@label" +msgid "Checklist" +msgstr "" + #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26 #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25 msgctxt "@title" @@ -2511,26 +2645,10 @@ msgctxt "@label:MonitorStatus" msgid "Please remove the print" msgstr "請取出列印件" -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284 -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293 -msgctxt "@label:" -msgid "Pause" -msgstr "暫停" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289 -msgctxt "@label:" -msgid "Resume" -msgstr "繼續" - #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325 -msgctxt "@label:" +msgctxt "@label" msgid "Abort Print" -msgstr "中斷列印" - -#: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335 -msgctxt "@window:title" -msgid "Abort print" -msgstr "中斷列印" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337 msgctxt "@label" @@ -2567,19 +2685,17 @@ msgid "Customized" msgstr "自訂" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "總是詢問" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "捨棄更改,並不再詢問此問題" #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "保留更改,並不再詢問此問題" @@ -2599,101 +2715,173 @@ msgctxt "@action:button" msgid "Create New Profile" msgstr "建立新的列印參數" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71 msgctxt "@title" msgid "Information" msgstr "資訊" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100 msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "直徑更改確認" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 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/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133 msgctxt "@label" msgid "Display Name" msgstr "顯示名稱" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143 msgctxt "@label" msgid "Brand" msgstr "品牌" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153 msgctxt "@label" msgid "Material Type" msgstr "耗材類型" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162 msgctxt "@label" msgid "Color" msgstr "顏色" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212 msgctxt "@label" msgid "Properties" msgstr "屬性" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214 msgctxt "@label" msgid "Density" msgstr "密度" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229 msgctxt "@label" msgid "Diameter" msgstr "直徑" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263 msgctxt "@label" msgid "Filament Cost" msgstr "耗材成本" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280 msgctxt "@label" msgid "Filament weight" msgstr "耗材重量" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298 msgctxt "@label" msgid "Filament length" msgstr "耗材長度" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307 msgctxt "@label" msgid "Cost per Meter" msgstr "每公尺成本" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321 msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." msgstr "此耗材與 %1 相關聯,並共享其部份屬性。" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328 msgctxt "@label" msgid "Unlink Material" msgstr "解除聯結耗材" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339 msgctxt "@label" msgid "Description" msgstr "描述" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352 msgctxt "@label" msgid "Adhesion Information" msgstr "附著資訊" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378 msgctxt "@label" msgid "Print settings" msgstr "列印設定" +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 +msgctxt "@action:button" +msgid "Activate" +msgstr "啟用" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101 +msgctxt "@action:button" +msgid "Create" +msgstr "建立" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114 +msgctxt "@action:button" +msgid "Duplicate" +msgstr "複製" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 +msgctxt "@action:button" +msgid "Import" +msgstr "匯入" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203 +msgctxt "@action:label" +msgid "Printer" +msgstr "印表機" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "移除確認" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "你確定要移除 %1 嗎?這動作無法復原!" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285 +msgctxt "@title:window" +msgid "Import Material" +msgstr "匯入耗材設定" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286 +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "無法匯入耗材 %1%2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "成功匯入耗材 %1" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 +msgctxt "@title:window" +msgid "Export Material" +msgstr "匯出耗材設定" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320 +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "無法匯出耗材至 %1%2" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326 +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "成功匯出耗材至:%1" + #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14 msgctxt "@title:tab" msgid "Setting Visibility" @@ -2730,7 +2918,7 @@ msgid "Unit" msgstr "單位" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537 msgctxt "@title:tab" msgid "General" msgstr "基本" @@ -2922,8 +3110,8 @@ msgstr "開啟專案檔案時的預設行為:" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573 msgctxt "@option:openProject" -msgid "Always ask" -msgstr "總是詢問" +msgid "Always ask me this" +msgstr "" #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574 msgctxt "@option:openProject" @@ -2942,77 +3130,75 @@ msgstr "當你對列印參數進行更改然後切換到其他列印參數時, #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620 msgctxt "@label" -msgid "Override Profile" -msgstr "覆寫列印參數" +msgid "Profiles" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625 +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675 msgctxt "@label" msgid "Privacy" msgstr "隱私權" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" msgstr "當 Cura 啟動時,是否自動檢查更新?" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688 msgctxt "@option:check" msgid "Check for updates on start" msgstr "啟動時檢查更新" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 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/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704 msgctxt "@option:check" msgid "Send (anonymous) print information" msgstr "(匿名)發送列印資訊" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713 msgctxt "@action:button" msgid "More information" msgstr "更多資訊" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731 msgctxt "@label" msgid "Experimental" msgstr "實驗功能" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 msgctxt "@info:tooltip" msgid "Use multi build plate functionality" msgstr "使用多列印平台功能" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743 msgctxt "@option:check" msgid "Use multi build plate functionality (restart required)" msgstr "使用多列印平台功能(需重啟軟體)" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748 -msgctxt "@info:tooltip" -msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" -msgstr "新載入的模型要擺放在列印平台上嗎?必需與多列印平台功能一起使用(實驗功能)" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753 -msgctxt "@option:check" -msgid "Do not arrange objects on load" -msgstr "載入時不要擺放物件" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542 msgctxt "@title:tab" msgid "Printers" msgstr "印表機" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90 -msgctxt "@action:button" -msgid "Activate" -msgstr "啟用" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129 msgctxt "@action:button" @@ -3056,7 +3242,7 @@ msgid "Aborting print..." msgstr "中斷列印..." #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546 msgctxt "@title:tab" msgid "Profiles" msgstr "列印參數" @@ -3071,18 +3257,6 @@ msgctxt "@label" msgid "Duplicate" msgstr "複製" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145 -msgctxt "@action:button" -msgid "Import" -msgstr "匯入" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158 -msgctxt "@action:button" -msgid "Export" -msgstr "匯出" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174 msgctxt "@title:window" msgid "Create Profile" @@ -3093,18 +3267,6 @@ msgctxt "@title:window" msgid "Duplicate Profile" msgstr "複製列印參數" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "移除確認" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "你確定要移除 %1 嗎?這動作無法復原!" - #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256 msgctxt "@title:window" msgid "Rename Profile" @@ -3125,96 +3287,43 @@ msgctxt "@label %1 is printer name" msgid "Printer: %1" msgstr "印表機:%1" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Protected profiles" msgstr "受保護的列印參數" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403 msgctxt "@label" msgid "Custom profiles" msgstr "自訂列印參數" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480 msgctxt "@action:button" msgid "Update profile with current settings/overrides" msgstr "使用目前設定 / 覆寫值更新列印參數" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487 msgctxt "@action:button" msgid "Discard current changes" msgstr "捨棄目前更改" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504 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/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511 msgctxt "@action:label" msgid "Your current settings match the selected profile." msgstr "你目前的設定與選定的列印參數相匹配。" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518 +#: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530 msgctxt "@title:tab" msgid "Global Settings" msgstr "全局設定" -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538 -msgctxt "@title:tab" -msgid "Materials" -msgstr "耗材" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105 -msgctxt "@action:button" -msgid "Create" -msgstr "建立" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "複製" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243 -msgctxt "@title:window" -msgid "Import Material" -msgstr "匯入耗材設定" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "無法匯入耗材 %1%2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "成功匯入耗材 %1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266 -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274 -msgctxt "@title:window" -msgid "Export Material" -msgstr "匯出耗材設定" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "無法匯出耗材至 %1%2" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "成功匯出耗材至:%1" - -#: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337 -msgctxt "@action:label" -msgid "Printer" -msgstr "印表機" - #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946 msgctxt "@title:window" msgid "Add Printer" msgstr "新增印表機" @@ -3229,6 +3338,11 @@ msgctxt "@action:button" msgid "Add Printer" msgstr "新增印表機" +#: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84 +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15 msgctxt "@title:window" msgid "About Cura" @@ -3384,33 +3498,33 @@ msgctxt "@action:menu" msgid "Copy all changed values to all extruders" msgstr "複製所有改變的設定值到所有擠出機" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 msgctxt "@action:menu" msgid "Hide this setting" msgstr "隱藏此設定" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608 msgctxt "@action:menu" msgid "Don't show this setting" msgstr "不再顯示此設定" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612 msgctxt "@action:menu" msgid "Keep this setting visible" msgstr "保持此設定顯示" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "參數顯示設定..." -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643 msgctxt "@action:inmenu" msgid "Collapse All" msgstr "全部折疊" -#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626 +#: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648 msgctxt "@action:inmenu" msgid "Expand All" msgstr "全部展開" @@ -3504,7 +3618,7 @@ msgid "Send a custom G-code command to the connected printer. Press 'enter' to s msgstr "傳送一個自訂的 G-code 命令到連接中的印表機。按下 Enter 鍵傳送命令。" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272 msgctxt "@label" msgid "Extruder" msgstr "擠出機" @@ -3557,7 +3671,7 @@ msgid "The nozzle inserted in this extruder." msgstr "該擠出機所使用的噴頭。" #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493 msgctxt "@label" msgid "Build plate" msgstr "列印平台" @@ -3582,6 +3696,21 @@ 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/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25 msgctxt "@label:category menu label" msgid "Network enabled printers" @@ -3678,38 +3807,11 @@ msgstr "" "列印設定已關閉\n" "G-code 檔案無法被修改" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341 -msgctxt "@label Hours and minutes" -msgid "00h 00min" -msgstr "00 小時 00 分" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359 msgctxt "@tooltip" msgid "Time specification" msgstr "時間規格" -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441 -msgctxt "@label" -msgid "Cost specification" -msgstr "成本明細" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447 -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454 -msgctxt "@label" -msgid "Total:" -msgstr "總共:" - #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577 msgctxt "@tooltip" msgid "Recommended Print Setup

Print with the recommended settings for the selected printer, material and quality." @@ -3720,30 +3822,30 @@ msgctxt "@tooltip" msgid "Custom Print Setup

Print with finegrained control over every last bit of the slicing process." msgstr "自訂列印設定
對切片過程中的每一個細節進行精細控制。" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106 msgctxt "@label" msgid "Active print" msgstr "正在列印" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114 msgctxt "@label" msgid "Job Name" msgstr "作業名稱" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122 msgctxt "@label" msgid "Printing Time" msgstr "列印時間" -#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131 +#: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130 msgctxt "@label" msgid "Estimated time left" msgstr "預計剩餘時間" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78 msgctxt "@action:inmenu" -msgid "Toggle Fu&ll Screen" -msgstr "切換全螢幕(&F)" +msgid "Toggle Full Screen" +msgstr "切換全螢幕" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85 msgctxt "@action:inmenu menubar:edit" @@ -3762,28 +3864,28 @@ msgstr "退出(&Q)" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:view" -msgid "&3D View" -msgstr "立體圖(&3)" +msgid "3D View" +msgstr "立體圖" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120 msgctxt "@action:inmenu menubar:view" -msgid "&Front View" -msgstr "前視圖(&F)" +msgid "Front View" +msgstr "前視圖" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127 msgctxt "@action:inmenu menubar:view" -msgid "&Top View" -msgstr "上視圖(&T)" +msgid "Top View" +msgstr "上視圖" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134 msgctxt "@action:inmenu menubar:view" -msgid "&Left Side View" -msgstr "左視圖(&L)" +msgid "Left Side View" +msgstr "左視圖" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141 msgctxt "@action:inmenu menubar:view" -msgid "&Right Side View" -msgstr "右視圖(&R)" +msgid "Right Side View" +msgstr "右視圖" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148 msgctxt "@action:inmenu" @@ -3837,185 +3939,184 @@ msgstr "BUG 回報(&B)" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225 msgctxt "@action:inmenu menubar:help" -msgid "&About..." -msgstr "關於(&A)…" +msgid "About..." +msgstr "關於…" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232 -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" -msgid "Delete &Selected Model" -msgid_plural "Delete &Selected Models" -msgstr[0] "刪除所選模型(&S)" +msgid "Delete Selected Model" +msgid_plural "Delete Selected Models" +msgstr[0] "刪除所選模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected Model" msgid_plural "Center Selected Models" msgstr[0] "置中所選模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "複製所選模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "刪除模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "將模型置中(&N)" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "群組模型(&G)" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "取消模型群組" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "結合模型(&M)" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "複製模型…(&M)" +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "選擇所有模型" + #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331 msgctxt "@action:inmenu menubar:edit" -msgid "&Select All Models" -msgstr "選擇所有模型(&S)" +msgid "Clear Build Plate" +msgstr "清空列印平台" #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341 -msgctxt "@action:inmenu menubar:edit" -msgid "&Clear Build Plate" -msgstr "清空列印平台(&C)" - -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351 msgctxt "@action:inmenu menubar:file" -msgid "Re&load All Models" -msgstr "重新載入所有模型(&L)" +msgid "Reload All Models" +msgstr "重新載入所有模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models To All Build Plates" msgstr "將所有模型排列到所有列印平台上" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "排列所有模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "排列所選模型" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "重置所有模型位置" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379 msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model &Transformations" -msgstr "重置所有模型旋轉(&T)" +msgid "Reset All Model Transformations" +msgstr "重置所有模型旋轉" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "開啟檔案(&O)…" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "新建專案(&N)…" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401 msgctxt "@action:inmenu menubar:help" msgid "Show Engine &Log..." msgstr "顯示切片引擎日誌(&L)..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "顯示設定資料夾" -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423 msgctxt "@action:menu" msgid "Browse packages..." msgstr "瀏覽軟體包..." -#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440 +#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430 msgctxt "@action:inmenu menubar:view" msgid "Expand/Collapse Sidebar" msgstr "展開/收合側邊欄" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27 msgctxt "@label:PrintjobStatus" msgid "Please load a 3D model" msgstr "請載入一個 3D 模型" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37 msgctxt "@label:PrintjobStatus" msgid "Ready to slice" msgstr "切片已準備就緒" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39 msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41 msgctxt "@label:PrintjobStatus %1 is target operation" msgid "Ready to %1" msgstr "%1 已準備就緒" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43 msgctxt "@label:PrintjobStatus" msgid "Unable to Slice" msgstr "無法切片" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45 msgctxt "@label:PrintjobStatus" msgid "Slicing unavailable" msgstr "切片無法使用" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Slice current printjob" msgstr "對目前列印工作進行切片" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172 msgctxt "@info:tooltip" msgid "Cancel slicing process" msgstr "取消進行中的切片程序" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Prepare" msgstr "準備" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184 msgctxt "@label:Printjob" msgid "Cancel" msgstr "取消" -#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317 +#: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320 msgctxt "@info:tooltip" msgid "Select the active output device" msgstr "選擇作用中的輸出裝置" #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760 msgctxt "@title:window" msgid "Open file(s)" msgstr "開啟檔案" @@ -4035,129 +4136,145 @@ msgctxt "@title:window" msgid "Ultimaker Cura" msgstr "Ultimaker Cura" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104 msgctxt "@title:menu menubar:toplevel" msgid "&File" msgstr "檔案(&F)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120 +msgctxt "@title:menu menubar:file" +msgid "&Save..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141 +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151 msgctxt "@action:inmenu menubar:file" -msgid "&Save Selection to File" -msgstr "儲存到檔案(&S)" +msgid "Export Selection..." +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128 -msgctxt "@title:menu menubar:file" -msgid "Save &As..." -msgstr "另存為(&A)…" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139 -msgctxt "@title:menu menubar:file" -msgid "Save &Project..." -msgstr "儲存專案...(&P)" - -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168 msgctxt "@title:menu menubar:toplevel" msgid "&Edit" msgstr "編輯(&E)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185 msgctxt "@title:menu" msgid "&View" msgstr "檢視(&V)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190 msgctxt "@title:menu" msgid "&Settings" msgstr "設定(&S)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186 -msgctxt "@title:menu menubar:toplevel" +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192 +msgctxt "@title:menu menubar:settings" msgid "&Printer" msgstr "印表機(&P)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201 msgctxt "@title:menu" msgid "&Material" msgstr "耗材(&M)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "設為主要擠出機" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188 msgctxt "@action:inmenu" msgid "Enable Extruder" msgstr "啟用擠出機" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217 -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194 msgctxt "@action:inmenu" msgid "Disable Extruder" msgstr "關閉擠出機" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235 msgctxt "@title:menu" +msgid "&Build plate" +msgstr "列印平台(&B)" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236 +msgctxt "@title:settings" msgid "&Profile" msgstr "列印參數(&P)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246 msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" msgstr "擴充功能(&X)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280 msgctxt "@title:menu menubar:toplevel" msgid "&Toolbox" msgstr "工具箱(&T)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287 msgctxt "@title:menu menubar:toplevel" msgid "P&references" msgstr "偏好設定(&R)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295 msgctxt "@title:menu menubar:toplevel" msgid "&Help" msgstr "幫助(&H)" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341 msgctxt "@label" msgid "This package will be installed after restarting." msgstr "此軟體包將在重新啟動後安裝。" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370 msgctxt "@action:button" msgid "Open File" msgstr "開啟檔案" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540 msgctxt "@title:tab" msgid "Settings" msgstr "設定" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586 msgctxt "@title:window" msgid "New project" msgstr "新建專案" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587 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/ruben/Projects/Cura/resources/qml/Cura.qml:814 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715 +msgctxt "@title:window" +msgid "Closing Cura" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728 +msgctxt "@label" +msgid "Are you sure you want to exit Cura?" +msgstr "" + +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861 msgctxt "@window:title" msgid "Install Package" msgstr "安裝軟體包" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868 msgctxt "@title:window" msgid "Open File(s)" msgstr "開啟檔案" -#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824 +#: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871 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 檔案,請僅選擇一個。" @@ -4167,112 +4284,112 @@ msgctxt "@title:window" msgid "Save Project" msgstr "儲存專案" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120 msgctxt "@action:label" msgid "" msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137 msgctxt "@action:label" msgid "Build plate" msgstr "列印平台" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169 msgctxt "@action:label" msgid "Extruder %1" msgstr "擠出機 %1" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179 msgctxt "@action:label" msgid "%1 & material" msgstr "%1 & 耗材" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "儲存時不再顯示專案摘要" -#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283 +#: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287 msgctxt "@action:button" msgid "Save" msgstr "儲存" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192 msgctxt "@label" msgid "Layer Height" msgstr "層高" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277 msgctxt "@tooltip" msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile" msgstr "品質參數不適用於目前的耗材和噴頭設定。請變更這些設定以啟用此品質參數。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450 msgctxt "@tooltip" msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab" msgstr "目前正使用自訂列印參數。若要使用品質滑動條,在自訂分頁中選擇預設的列印參數" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467 msgctxt "@label" msgid "Print Speed" msgstr "列印速度" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479 msgctxt "@label" msgid "Slower" msgstr "更慢" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490 msgctxt "@label" msgid "Faster" msgstr "更快" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518 msgctxt "@tooltip" msgid "You have modified some profile settings. If you want to change these go to custom mode." msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541 msgctxt "@label" msgid "Infill" msgstr "填充" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777 msgctxt "@label" msgid "Gradual infill will gradually increase the amount of infill towards the top." msgstr "漸層填充(Gradual infill)將隨著列印高度的提升而逐漸加大填充密度。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789 msgctxt "@label" msgid "Enable gradual" msgstr "啟用漸層" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856 msgctxt "@label" msgid "Generate Support" msgstr "產生支撐" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962 msgctxt "@label" msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air." msgstr "選擇用於支撐的擠出機。該擠出機將在模型之下建立支撐結構,以防止模型下垂或在空中列印。" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985 msgctxt "@label" msgid "Build Plate Adhesion" msgstr "列印平台附著" -#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040 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/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043 +#: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080 msgctxt "@label" msgid "Need help improving your prints?
Read the Ultimaker Troubleshooting Guides" msgstr "需要幫助改善你的列印?閱讀 Ultimaker 故障排除指南" @@ -4318,23 +4435,22 @@ msgctxt "@label" msgid "Printer type" msgstr "印表機類型" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376 msgctxt "@label" msgid "Material" msgstr "耗材" -# Added after the string freeze. -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543 msgctxt "@label" -msgid "Use adhesion sheet or glue with this material combination" -msgstr "在此耗材組合下使用膠水或是附著墊片" +msgid "Use glue with this material combination" +msgstr "" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575 msgctxt "@label" msgid "Check compatibility" msgstr "檢查相容性" -#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588 +#: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593 msgctxt "@tooltip" msgid "Click to check the material compatibility on Ultimaker.com." msgstr "點擊查看 Ultimaker.com 上的耗材相容性。" @@ -4424,16 +4540,6 @@ msgctxt "name" msgid "God Mode" msgstr "上帝模式" -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "description" -msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." -msgstr "接受 G-Code 並透過 WiFi 將其發送到 Doodle3D 無線網路盒。" - -#: Doodle3D-cura-plugin/Doodle3D/plugin.json -msgctxt "name" -msgid "Doodle3D WiFi-Box" -msgstr "Doodle3D 無線網路盒" - #: ChangeLogPlugin/plugin.json msgctxt "description" msgid "Shows changes since latest checked version." @@ -4514,16 +4620,6 @@ msgctxt "name" msgid "Prepare Stage" msgstr "準備介面" -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "description" -msgid "Provides an edit window for direct script editing." -msgstr "提供一個直接編輯描述檔的編輯視窗。" - -#: CuraLiveScriptingPlugin/plugin.json -msgctxt "name" -msgid "Live scripting tool" -msgstr "即時描述檔工具" - #: RemovableDriveOutputDevice/plugin.json msgctxt "description" msgid "Provides removable drive hotplugging and writing support." @@ -4634,16 +4730,6 @@ msgctxt "name" msgid "Legacy Cura Profile Reader" msgstr "舊版 Cura 列印參數讀取器" -#: CuraBlenderPlugin/plugin.json -msgctxt "description" -msgid "Helps to open Blender files directly in Cura." -msgstr "協助你直接在 Cura 中打開 Blender 檔案。" - -#: CuraBlenderPlugin/plugin.json -msgctxt "name" -msgid "Blender Integration (experimental)" -msgstr "Blender 整合(實驗功能)" - #: GCodeProfileReader/plugin.json msgctxt "description" msgid "Provides support for importing profiles from g-code files." @@ -4694,6 +4780,16 @@ msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" msgstr "升級版本 2.7 到 3.0" +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + #: VersionUpgrade/VersionUpgrade30to31/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." @@ -4804,6 +4900,16 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura 列印參數寫入器" +#: CuraPrintProfileCreator/plugin.json +msgctxt "description" +msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." +msgstr "允許耗材製造商使用下拉式 UI 建立新的耗材和品質設定參數。" + +#: CuraPrintProfileCreator/plugin.json +msgctxt "name" +msgid "Print Profile Assistant" +msgstr "列印參數設定助手" + #: 3MFWriter/plugin.json msgctxt "description" msgid "Provides support for writing 3MF files." @@ -4834,6 +4940,219 @@ msgctxt "name" msgid "Cura Profile Reader" msgstr "Cura 列印參數讀取器" +#~ msgctxt "@action:button" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "使用 Doodle3D 無線網路盒列印" + +#~ msgctxt "@properties:tooltip" +#~ msgid "Print with Doodle3D WiFi-Box" +#~ msgstr "使用 Doodle3D 無線網路盒列印" + +#~ msgctxt "@info:status" +#~ msgid "Connecting to Doodle3D Connect" +#~ msgstr "正在連接 Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "Sending data to Doodle3D Connect" +#~ msgstr "正在向 Doodle3D Connect 發送資料" + +#~ msgctxt "@info:status" +#~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?" +#~ msgstr "無法向 Doodle3D Connect 發送資料。請確認是否有另一項列印作業正在進行?" + +#~ msgctxt "@info:status" +#~ msgid "Storing data on Doodle3D Connect" +#~ msgstr "正在儲存資料到 Doodle3D Connect" + +#~ msgctxt "@info:status" +#~ msgid "File sent to Doodle3D Connect" +#~ msgstr "檔案已被傳送到 Doodle3D Connect" + +#~ msgctxt "@action:button" +#~ msgid "Open Connect..." +#~ msgstr "開啟連線..." + +#~ msgctxt "@info:tooltip" +#~ msgid "Open the Doodle3D Connect web interface" +#~ msgstr "開啟 Doodle3D Connect 的網路介面" + +#~ msgctxt "@item:inlistbox" +#~ msgid "Blender file" +#~ msgstr "Blender 檔案" + +#~ msgctxt "@info:status" +#~ msgid "" +#~ "Could not export using \"{}\" quality!\n" +#~ "Felt back to \"{}\"." +#~ msgstr "" +#~ "無法使用 \"{}\" 品質導出!\n" +#~ "覆蓋回 \"{}\"。" + +#~ msgctxt "@label" +#~ msgid "Contact" +#~ msgstr "聯繫" + +#~ msgctxt "@label" +#~ msgid "This printer is not set up to host a group of Ultimaker 3 printers." +#~ msgstr "這台印表機未設定成管理一組 Ultimaker 3 印表機的主機。" + +#~ msgctxt "@label" +#~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers." +#~ msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機。" + +#~ msgctxt "@label: arg 1 is group name" +#~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers" +#~ msgstr "%1 未設定成管理一組連線的 Ultimaker 3 印表機的主機" + +#~ msgctxt "@label link to connect manager" +#~ msgid "Add/Remove printers" +#~ msgstr "新增/移除印表機" + +#~ msgctxt "@info:tooltip" +#~ msgid "Opens the print jobs page with your default web browser." +#~ msgstr "使用預設瀏覽器開啟列印作業頁面。" + +#~ msgctxt "@action:button" +#~ msgid "View print jobs" +#~ msgstr "檢視列印作業" + +#~ msgctxt "@label:status" +#~ msgid "Preparing to print" +#~ msgstr "準備列印中" + +#~ msgctxt "@label:status" +#~ msgid "Printing" +#~ msgstr "正在列印" + +#~ msgctxt "@label:status" +#~ msgid "Available" +#~ msgstr "可用" + +#~ msgctxt "@label:status" +#~ msgid "Lost connection with the printer" +#~ msgstr "與印表機失去連線" + +#~ msgctxt "@label:status" +#~ msgid "Unavailable" +#~ msgstr "無法使用" + +#~ msgctxt "@label:status" +#~ msgid "Unknown" +#~ msgstr "未知" + +#~ msgctxt "@label:status" +#~ msgid "Disabled" +#~ msgstr "已關閉" + +#~ msgctxt "@label:status" +#~ msgid "Reserved" +#~ msgstr "保留" + +#~ msgctxt "@label" +#~ msgid "Preparing to print" +#~ msgstr "準備列印中" + +#~ msgctxt "@label:status" +#~ msgid "Print aborted" +#~ msgstr "列印已取消" + +#~ msgctxt "@label" +#~ msgid "Not accepting print jobs" +#~ msgstr "不接受列印作業" + +#~ msgctxt "@label" +#~ msgid "Finishes at: " +#~ msgstr "完成時間:" + +#~ msgctxt "@label" +#~ msgid "Clear build plate" +#~ msgstr "清空列印平台" + +#~ msgctxt "@label" +#~ msgid "Waiting for configuration change" +#~ msgstr "等待設定更動" + +#~ msgctxt "@title" +#~ msgid "Print jobs" +#~ msgstr "列印作業" + +#~ msgctxt "@label:title" +#~ msgid "Printers" +#~ msgstr "印表機" + +#~ msgctxt "@action:button" +#~ msgid "View printers" +#~ msgstr "檢視印表機" + +#~ msgctxt "@label:" +#~ msgid "Pause" +#~ msgstr "暫停" + +#~ msgctxt "@label:" +#~ msgid "Resume" +#~ msgstr "繼續" + +#~ msgctxt "@label:" +#~ msgid "Abort Print" +#~ msgstr "中斷列印" + +#~ msgctxt "@option:openProject" +#~ msgid "Always ask" +#~ msgstr "總是詢問" + +#~ msgctxt "@label" +#~ msgid "Override Profile" +#~ msgstr "覆寫列印參數" + +#~ msgctxt "@info:tooltip" +#~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)" +#~ msgstr "新載入的模型要擺放在列印平台上嗎?必需與多列印平台功能一起使用(實驗功能)" + +#~ msgctxt "@option:check" +#~ msgid "Do not arrange objects on load" +#~ msgstr "載入時不要擺放物件" + +#~ msgctxt "@action:inmenu menubar:file" +#~ msgid "&Save Selection to File" +#~ msgstr "儲存到檔案(&S)" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &As..." +#~ msgstr "另存為(&A)…" + +#~ msgctxt "@title:menu menubar:file" +#~ msgid "Save &Project..." +#~ msgstr "儲存專案...(&P)" + +# Added after the string freeze. +#~ msgctxt "@label" +#~ msgid "Use adhesion sheet or glue with this material combination" +#~ msgstr "在此耗材組合下使用膠水或是附著墊片" + +#~ msgctxt "description" +#~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box." +#~ msgstr "接受 G-Code 並透過 WiFi 將其發送到 Doodle3D 無線網路盒。" + +#~ msgctxt "name" +#~ msgid "Doodle3D WiFi-Box" +#~ msgstr "Doodle3D 無線網路盒" + +#~ msgctxt "description" +#~ msgid "Provides an edit window for direct script editing." +#~ msgstr "提供一個直接編輯描述檔的編輯視窗。" + +#~ msgctxt "name" +#~ msgid "Live scripting tool" +#~ msgstr "即時描述檔工具" + +#~ msgctxt "description" +#~ msgid "Helps to open Blender files directly in Cura." +#~ msgstr "協助你直接在 Cura 中打開 Blender 檔案。" + +#~ msgctxt "name" +#~ msgid "Blender Integration (experimental)" +#~ msgstr "Blender 整合(實驗功能)" + #~ msgctxt "@info:title" #~ msgid "Model Checker Warning" #~ msgstr "模型檢查器警告" @@ -5101,10 +5420,6 @@ msgstr "Cura 列印參數讀取器" #~ msgid "Browse plugins..." #~ msgstr "瀏覽外掛..." -#~ msgctxt "@title:menu" -#~ msgid "&Build plate" -#~ msgstr "列印平台(&B)" - #~ msgctxt "@title:menu menubar:toplevel" #~ msgid "P&lugins" #~ msgstr "外掛(&l)" @@ -5330,14 +5645,6 @@ msgstr "Cura 列印參數讀取器" #~ "\n" #~ "抱歉!" -#~ msgctxt "@item:inmenu" -#~ msgid "Profile Assistant" -#~ msgstr "參數助手" - -#~ msgctxt "@item:inlistbox" -#~ msgid "Profile Assistant" -#~ msgstr "參數助手" - #~ msgctxt "@item:material" #~ msgid "No material loaded" #~ msgstr "未載入耗材" @@ -5468,14 +5775,6 @@ msgstr "Cura 列印參數讀取器" #~ msgid "Configure setting visiblity..." #~ msgstr "設定設定可見性..." -#~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost" -#~ msgid "%1m / ~ %2g / ~ %4 %3" -#~ msgstr "%1m / ~ %2g / ~ %4 %3" - -#~ msgctxt "@label Print estimates: m for meters, g for grams" -#~ msgid "%1m / ~ %2g" -#~ msgstr "%1m / ~ %2g" - #~ msgctxt "@title:menuitem %1 is the automatically selected material" #~ msgid "Automatic: %1" #~ msgstr "自動:%1" @@ -5512,14 +5811,6 @@ msgstr "Cura 列印參數讀取器" #~ msgid "GCode Profile Reader" #~ msgstr "G-code 列印參數讀取器" -#~ msgctxt "description" -#~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI." -#~ msgstr "允許耗材製造商使用下拉式 UI 建立新的耗材和品質設定參數。" - -#~ msgctxt "name" -#~ msgid "Print Profile Assistant" -#~ msgstr "列印參數設定助手" - #~ msgctxt "@info:status" #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!" #~ msgstr "開啟 SolidWorks 檔案時發生錯誤! 請檢查能否在 SolidWorks 中正常開啟檔案而不出現任何問題!" @@ -5712,10 +6003,6 @@ msgstr "Cura 列印參數讀取器" #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers" #~ msgstr "這台印表機是 %1 台 Ultimaker 3 印表機群組的主機" -#~ msgctxt "@label:status" -#~ msgid "Preparing" -#~ msgstr "正在準備" - #~ msgctxt "@label" #~ msgid "Completed on: " #~ msgstr "完成時間:" diff --git a/resources/i18n/zh_TW/fdmextruder.def.json.po b/resources/i18n/zh_TW/fdmextruder.def.json.po index 36a1e6505d..5ccea0af91 100644 --- a/resources/i18n/zh_TW/fdmextruder.def.json.po +++ b/resources/i18n/zh_TW/fdmextruder.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-06-06 16:13+0000\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-03-31 15:18+0800\n" "Last-Translator: Zhang Heh Ji \n" "Language-Team: TEAM\n" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 56009ffa00..e3eff330ed 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 3.4\n" -"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n" -"POT-Creation-Date: 2018-03-29 08:36+0200\n" +"Project-Id-Version: Cura 3.5\n" +"Report-Msgid-Bugs-To: r.dulek@ultimaker.com" +"POT-Creation-Date: 2018-09-19 17:07+0000\n" "PO-Revision-Date: 2018-06-14 00:09+0800\n" "Last-Translator: Zhang Heh Ji \n" "Language-Team: Zhang Heh Ji \n" @@ -85,6 +85,16 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically. " msgstr "耗材 GUID,此項為自動設定。" +#: fdmprinter.def.json +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直徑" + +#: fdmprinter.def.json +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "調整所使用耗材的直徑。這個數值要等同於所使用耗材的直徑。" + #: fdmprinter.def.json msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -1060,6 +1070,16 @@ msgctxt "top_bottom_pattern_0 option zigzag" msgid "Zig Zag" msgstr "鋸齒狀" +#: fdmprinter.def.json +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "" + +#: fdmprinter.def.json +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 happend midway over infill this feature can reduce the top surface quality." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_angles label" msgid "Top/Bottom Line Directions" @@ -1140,6 +1160,26 @@ msgctxt "travel_compensate_overlapping_walls_x_enabled description" msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." msgstr "列印內壁時如果該位置已經有牆壁存在,所進行的的流量補償。" +#: fdmprinter.def.json +msgctxt "wall_min_flow label" +msgid "Minimum Wall Flow" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract label" +msgid "Prefer Retract" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_min_flow_retract description" +msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +msgstr "" + #: fdmprinter.def.json msgctxt "fill_perimeter_gaps label" msgid "Fill Gaps Between Walls" @@ -1505,11 +1545,6 @@ msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "同心圓" -#: fdmprinter.def.json -msgctxt "infill_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "立體同心圓" - #: fdmprinter.def.json msgctxt "infill_pattern option zigzag" msgid "Zig Zag" @@ -1535,6 +1570,16 @@ msgctxt "zig_zaggify_infill description" msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." msgstr "使用一條線沿著內牆的形狀,連接填充線條與內牆交會的末端。啟用此設定可以使填充更好地附著在內牆上,並減少對垂直表面品質的影響。關閉此設定可降低材料的使用量。" +#: fdmprinter.def.json +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "" + +#: fdmprinter.def.json +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "" + #: fdmprinter.def.json msgctxt "infill_angles label" msgid "Infill Line Directions" @@ -1565,6 +1610,28 @@ msgctxt "infill_offset_y description" msgid "The infill pattern is moved this distance along the Y axis." msgstr "填充樣式在 Y 軸方向平移此距離。" +#: fdmprinter.def.json +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_multiplier description" +msgid "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." +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "" + +#: fdmprinter.def.json +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" + #: fdmprinter.def.json msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1875,16 +1942,6 @@ msgctxt "material_bed_temperature_layer_0 description" msgid "The temperature used for the heated build plate at the first layer." msgstr "用於第一層加熱列印平台的溫度。" -#: fdmprinter.def.json -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直徑" - -#: fdmprinter.def.json -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "調整所使用耗材的直徑。這個數值要等同於所使用耗材的直徑。" - #: fdmprinter.def.json msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -2722,8 +2779,8 @@ msgstr "梳理模式" #: fdmprinter.def.json msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -msgstr "梳理可在空跑時讓噴頭保持在已列印區域內。這會使空跑距離稍微延長,但可減少回抽需求。如果關閉梳理,則耗材將回抽,且噴頭沿著直線移動到下一個點。也可以通過僅在填充內進行梳理避免梳理頂部/底部表層區域。" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +msgstr "" #: fdmprinter.def.json msgctxt "retraction_combing option off" @@ -2740,6 +2797,11 @@ msgctxt "retraction_combing option noskin" msgid "Not in Skin" msgstr "表層以外區域" +#: fdmprinter.def.json +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "" + #: fdmprinter.def.json msgctxt "retraction_combing_max_distance label" msgid "Max Comb Distance With No Retract" @@ -3120,11 +3182,6 @@ msgctxt "support_pattern option concentric" msgid "Concentric" msgstr "同心" -#: fdmprinter.def.json -msgctxt "support_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "同心 3D" - #: fdmprinter.def.json msgctxt "support_pattern option zigzag" msgid "Zig Zag" @@ -3185,6 +3242,26 @@ msgctxt "support_line_distance description" msgid "Distance between the printed support structure lines. This setting is calculated by the support density." msgstr "已列印支撐結構線條之間的距離。該設定通過支撐密度計算。" +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle label" +msgid "Support Infill Line Direction" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_infill_angle description" +msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +msgstr "" + #: fdmprinter.def.json msgctxt "support_z_distance label" msgid "Support Z Distance" @@ -3475,11 +3552,6 @@ msgctxt "support_interface_pattern option concentric" msgid "Concentric" msgstr "同心" -#: fdmprinter.def.json -msgctxt "support_interface_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "同心 3D" - #: fdmprinter.def.json msgctxt "support_interface_pattern option zigzag" msgid "Zig Zag" @@ -3515,11 +3587,6 @@ msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "同心圓" -#: fdmprinter.def.json -msgctxt "support_roof_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "立體同心圓" - #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" @@ -3555,16 +3622,31 @@ msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "同心" -#: fdmprinter.def.json -msgctxt "support_bottom_pattern option concentric_3d" -msgid "Concentric 3D" -msgstr "同心 3D" - #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "鋸齒狀" +#: fdmprinter.def.json +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "" + #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -3891,8 +3973,8 @@ msgstr "木筏底部的線寬。這些線條應該是粗線,以便協助列印 #: fdmprinter.def.json msgctxt "raft_base_line_spacing label" -msgid "Raft Line Spacing" -msgstr "木筏底部間距" +msgid "Raft Base Line Spacing" +msgstr "" #: fdmprinter.def.json msgctxt "raft_base_line_spacing description" @@ -4109,16 +4191,6 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "為了清除足夠的耗材,換料塔每層的最小體積。" -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness label" -msgid "Prime Tower Thickness" -msgstr "換料塔厚度" - -#: fdmprinter.def.json -msgctxt "prime_tower_wall_thickness description" -msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -msgstr "空心換料塔的厚度。如果厚度大於換料塔最小體積的一半,則將形成一個密集的換料塔。" - #: fdmprinter.def.json msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" @@ -4159,26 +4231,6 @@ msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "在一個噴頭列印換料塔後,在換料塔上擦拭另一個噴頭滲出的耗材。" -#: fdmprinter.def.json -msgctxt "dual_pre_wipe label" -msgid "Wipe Nozzle After Switch" -msgstr "切換後擦拭噴頭" - -#: fdmprinter.def.json -msgctxt "dual_pre_wipe description" -msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -msgstr "切換擠出機後,在列印的第一個物件上擦拭噴頭上的滲出耗材。這會在滲出耗材對列印品表面品質造成最小損害的位置進行緩慢安全的擦拭動作。" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume label" -msgid "Prime Tower Purge Volume" -msgstr "換料塔清洗量" - -#: fdmprinter.def.json -msgctxt "prime_tower_purge_volume description" -msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -msgstr "在換料塔上進行擦拭時要清洗的耗材量。清洗可用於補償在噴頭不活動期間由於滲出而損失的耗材。" - #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4664,6 +4716,16 @@ msgctxt "material_flow_temp_graph description" msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." msgstr "數據連接耗材流量(mm3/s)到溫度(攝氏)。" +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "" + +#: fdmprinter.def.json +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "" + #: fdmprinter.def.json msgctxt "meshfix_maximum_resolution label" msgid "Maximum Resolution" @@ -5323,6 +5385,26 @@ msgctxt "adaptive_layer_height_threshold description" msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." msgstr "決定是否使用較小層高的門檻值。此值會與一層中最陡坡度的 tan 值做比較。" +#: fdmprinter.def.json +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "" + +#: fdmprinter.def.json +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "" + #: fdmprinter.def.json msgctxt "bridge_settings_enabled label" msgid "Enable Bridge Settings" @@ -5353,16 +5435,6 @@ msgctxt "bridge_skin_support_threshold description" msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." msgstr "假如表層區域受支撐的面積小於此百分比,使用橋樑設定列印。否則用一般的表層設定列印。" -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang label" -msgid "Bridge Wall Max Overhang" -msgstr "最大橋樑牆壁突出" - -#: fdmprinter.def.json -msgctxt "bridge_wall_max_overhang description" -msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -msgstr "使用一般設定列印牆壁線條允許最大的突出寬度。以牆壁線寬的百分比表示。當間隙比此寬時,使用橋樑設定列印牆壁線條。否則就使用一般設定列印牆壁線條。數值越低,越有可能使用橋樑設定列印牆壁線條。" - #: fdmprinter.def.json msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" @@ -5583,6 +5655,66 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。" +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "立體同心圓" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "梳理可在空跑時讓噴頭保持在已列印區域內。這會使空跑距離稍微延長,但可減少回抽需求。如果關閉梳理,則耗材將回抽,且噴頭沿著直線移動到下一個點。也可以通過僅在填充內進行梳理避免梳理頂部/底部表層區域。" + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "立體同心圓" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "同心 3D" + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "木筏底部間距" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "換料塔厚度" + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "空心換料塔的厚度。如果厚度大於換料塔最小體積的一半,則將形成一個密集的換料塔。" + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "切換後擦拭噴頭" + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "切換擠出機後,在列印的第一個物件上擦拭噴頭上的滲出耗材。這會在滲出耗材對列印品表面品質造成最小損害的位置進行緩慢安全的擦拭動作。" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "換料塔清洗量" + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "在換料塔上進行擦拭時要清洗的耗材量。清洗可用於補償在噴頭不活動期間由於滲出而損失的耗材。" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "最大橋樑牆壁突出" + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "使用一般設定列印牆壁線條允許最大的突出寬度。以牆壁線寬的百分比表示。當間隙比此寬時,使用橋樑設定列印牆壁線條。否則就使用一般設定列印牆壁線條。數值越低,越有可能使用橋樑設定列印牆壁線條。" + #~ msgctxt "optimize_wall_printing_order description" #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." #~ msgstr "最佳化牆壁列印順序以減少回抽的次數和空跑的距離。啟用此功能對大多數是有益的,但有的可能會花更多的時間。所以請比較有無最佳化的估算時間進行確認。" diff --git a/resources/images/moai.jpg b/resources/images/moai.jpg new file mode 100644 index 0000000000..54c6c7561e Binary files /dev/null and b/resources/images/moai.jpg differ diff --git a/resources/meshes/creality_ender3_platform.stl b/resources/meshes/creality_ender3_platform.stl new file mode 100644 index 0000000000..e4f9b1fd89 --- /dev/null +++ b/resources/meshes/creality_ender3_platform.stl @@ -0,0 +1,58774 @@ +solid OpenSCAD_Model + facet normal 0 0 1 + outer loop + vertex 19.3736 -10.7173 -0.1 + vertex 19.6895 -11.13 -0.1 + vertex 19.6819 -11.0243 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4763 -10.749 -0.1 + vertex 19.6819 -11.0243 -0.1 + vertex 19.6583 -10.9333 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.557 -10.7956 -0.1 + vertex 19.6583 -10.9333 -0.1 + vertex 19.6172 -10.8571 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6895 -11.13 -0.1 + vertex 19.3736 -10.7173 -0.1 + vertex 19.6598 -11.2975 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6583 -10.9333 -0.1 + vertex 19.557 -10.7956 -0.1 + vertex 19.4763 -10.749 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6819 -11.0243 -0.1 + vertex 19.4763 -10.749 -0.1 + vertex 19.3736 -10.7173 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.0963 -10.6988 -0.1 + vertex 19.6598 -11.2975 -0.1 + vertex 19.3736 -10.7173 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6598 -11.2975 -0.1 + vertex 19.0963 -10.6988 -0.1 + vertex 19.5653 -11.6083 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.7132 -10.7406 -0.1 + vertex 19.5653 -11.6083 -0.1 + vertex 19.0963 -10.6988 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.2126 -10.843 -0.1 + vertex 19.5653 -11.6083 -0.1 + vertex 18.7132 -10.7406 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5653 -11.6083 -0.1 + vertex 18.2126 -10.843 -0.1 + vertex 19.1479 -12.7477 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 17.5824 -11.0066 -0.1 + vertex 19.1479 -12.7477 -0.1 + vertex 18.2126 -10.843 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 16.811 -11.2316 -0.1 + vertex 19.1479 -12.7477 -0.1 + vertex 17.5824 -11.0066 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.1479 -12.7477 -0.1 + vertex 16.811 -11.2316 -0.1 + vertex 18.3699 -14.7241 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.1363 -14.3424 -0.1 + vertex 18.3699 -14.7241 -0.1 + vertex 16.811 -11.2316 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.0967 -14.5873 -0.1 + vertex 18.3699 -14.7241 -0.1 + vertex 14.1362 -14.4186 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.3699 -14.7241 -0.1 + vertex 14.1363 -14.3424 -0.1 + vertex 14.1362 -14.4186 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.7217 -12.1451 -0.1 + vertex 14.1363 -14.3424 -0.1 + vertex 16.811 -11.2316 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.1363 -14.3424 -0.1 + vertex 13.7217 -12.1451 -0.1 + vertex 14.0881 -14.3092 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0881 -14.3092 -0.1 + vertex 13.7217 -12.1451 -0.1 + vertex 14.0003 -14.2763 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0003 -14.2763 -0.1 + vertex 13.7217 -12.1451 -0.1 + vertex 13.7222 -14.2141 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.4022 -12.26 -0.1 + vertex 13.7222 -14.2141 -0.1 + vertex 13.7217 -12.1451 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.1153 -12.4148 -0.1 + vertex 13.7222 -14.2141 -0.1 + vertex 13.4022 -12.26 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.7222 -14.2141 -0.1 + vertex 13.1153 -12.4148 -0.1 + vertex 13.3346 -14.1615 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.8673 -12.6015 -0.1 + vertex 13.3346 -14.1615 -0.1 + vertex 13.1153 -12.4148 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.6645 -12.8127 -0.1 + vertex 13.3346 -14.1615 -0.1 + vertex 12.8673 -12.6015 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.513 -13.0405 -0.1 + vertex 13.3346 -14.1615 -0.1 + vertex 12.6645 -12.8127 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.3346 -14.1615 -0.1 + vertex 12.513 -13.0405 -0.1 + vertex 12.8698 -14.1239 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.419 -13.2773 -0.1 + vertex 12.8698 -14.1239 -0.1 + vertex 12.513 -13.0405 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.3889 -13.5153 -0.1 + vertex 12.8698 -14.1239 -0.1 + vertex 12.419 -13.2773 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 12.3997 -13.6324 -0.1 + vertex 12.8698 -14.1239 -0.1 + vertex 12.3889 -13.5153 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 12.5013 -13.8876 -0.1 + vertex 12.8698 -14.1239 -0.1 + vertex 12.3997 -13.6324 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.8698 -14.1239 -0.1 + vertex 12.6087 -14.0056 -0.1 + vertex 12.7363 -14.0885 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.8698 -14.1239 -0.1 + vertex 12.5013 -13.8876 -0.1 + vertex 12.6087 -14.0056 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.5013 -13.8876 -0.1 + vertex 12.3997 -13.6324 -0.1 + vertex 12.4287 -13.7469 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.9185 -15.1524 -0.1 + vertex 18.3699 -14.7241 -0.1 + vertex 14.0967 -14.5873 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.3699 -14.7241 -0.1 + vertex 13.9185 -15.1524 -0.1 + vertex 17.1638 -17.7131 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.6397 -15.9386 -0.1 + vertex 17.1638 -17.7131 -0.1 + vertex 13.9185 -15.1524 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.2984 -16.8469 -0.1 + vertex 17.1638 -17.7131 -0.1 + vertex 13.6397 -15.9386 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.5806 -18.6336 -0.1 + vertex 17.1638 -17.7131 -0.1 + vertex 13.2984 -16.8469 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2803 -19.3138 -0.1 + vertex 17.1638 -17.7131 -0.1 + vertex 12.5806 -18.6336 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.1638 -17.7131 -0.1 + vertex 12.2803 -19.3138 -0.1 + vertex 14.5952 -23.8342 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.0697 -19.7199 -0.1 + vertex 14.5952 -23.8342 -0.1 + vertex 12.2803 -19.3138 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.0185 -19.7802 -0.1 + vertex 14.5952 -23.8342 -0.1 + vertex 12.0697 -19.7199 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.9563 -19.8175 -0.1 + vertex 14.5952 -23.8342 -0.1 + vertex 12.0185 -19.7802 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.1598 -23.7848 -0.1 + vertex 14.5952 -23.8342 -0.1 + vertex 10.1807 -23.3758 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.1103 -22.7594 -0.1 + vertex 14.5952 -23.8342 -0.1 + vertex 11.9563 -19.8175 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.1103 -22.7594 -0.1 + vertex 11.9563 -19.8175 -0.1 + vertex 11.881 -19.8313 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.99008 -22.4166 -0.1 + vertex 11.881 -19.8313 -0.1 + vertex 11.7902 -19.8211 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.81668 -22.1284 -0.1 + vertex 11.7902 -19.8211 -0.1 + vertex 11.5538 -19.7266 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.95745 -24.7805 -0.1 + vertex 14.5952 -23.8342 -0.1 + vertex 10.0892 -24.2416 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.59484 -21.895 -0.1 + vertex 11.5538 -19.7266 -0.1 + vertex 11.2294 -19.5302 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.5952 -23.8342 -0.1 + vertex 9.95745 -24.7805 -0.1 + vertex 12.8097 -28.1484 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.46723 -21.7989 -0.1 + vertex 11.2294 -19.5302 -0.1 + vertex 11.0203 -19.4009 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 9.75283 -25.4359 -0.1 + vertex 12.8097 -28.1484 -0.1 + vertex 9.95745 -24.7805 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.46723 -21.7989 -0.1 + vertex 11.0203 -19.4009 -0.1 + vertex 10.8168 -19.3006 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 9.46376 -26.2422 -0.1 + vertex 12.8097 -28.1484 -0.1 + vertex 9.75283 -25.4359 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 9.07864 -27.2338 -0.1 + vertex 12.8097 -28.1484 -0.1 + vertex 9.46376 -26.2422 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.8097 -28.1484 -0.1 + vertex 9.07864 -27.2338 -0.1 + vertex 12.0447 -30.0547 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.46723 -21.7989 -0.1 + vertex 10.8168 -19.3006 -0.1 + vertex 10.602 -19.227 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.6919 -34.4621 -0.1 + vertex 12.2468 -35.1875 -0.1 + vertex 12.2214 -34.9805 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.6919 -34.4621 -0.1 + vertex 12.2214 -34.9805 -0.1 + vertex 12.1503 -34.7994 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.4668 -34.4353 -0.1 + vertex 12.2468 -35.1875 -0.1 + vertex 11.6919 -34.4621 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2239 -35.4151 -0.1 + vertex 11.4668 -34.4353 -0.1 + vertex 12.1496 -35.6584 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8827 -34.5351 -0.1 + vertex 12.1503 -34.7994 -0.1 + vertex 12.0364 -34.6492 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2468 -35.1875 -0.1 + vertex 11.4668 -34.4353 -0.1 + vertex 12.2239 -35.4151 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.1503 -34.7994 -0.1 + vertex 11.8827 -34.5351 -0.1 + vertex 11.6919 -34.4621 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.1496 -35.6584 -0.1 + vertex 11.4668 -34.4353 -0.1 + vertex 12.0956 -35.7642 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0956 -35.7642 -0.1 + vertex 11.4668 -34.4353 -0.1 + vertex 12.0181 -35.8752 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.143 -34.4171 -0.1 + vertex 12.0181 -35.8752 -0.1 + vertex 11.4668 -34.4353 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0181 -35.8752 -0.1 + vertex 11.143 -34.4171 -0.1 + vertex 11.8034 -36.1064 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8034 -36.1064 -0.1 + vertex 11.143 -34.4171 -0.1 + vertex 11.5264 -36.339 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.016 -34.3915 -0.1 + vertex 11.5264 -36.339 -0.1 + vertex 11.143 -34.4171 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5264 -36.339 -0.1 + vertex 11.016 -34.3915 -0.1 + vertex 11.208 -36.5595 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9123 -34.3507 -0.1 + vertex 11.208 -36.5595 -0.1 + vertex 11.016 -34.3915 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9123 -34.3507 -0.1 + vertex 10.8691 -36.7549 -0.1 + vertex 11.208 -36.5595 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.5307 -36.9119 -0.1 + vertex 10.9123 -34.3507 -0.1 + vertex 10.832 -34.2912 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.71926 -37.0921 -0.1 + vertex 10.832 -34.2912 -0.1 + vertex 10.775 -34.2097 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.94379 -37.3156 -0.1 + vertex 10.775 -34.2097 -0.1 + vertex 10.7415 -34.103 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.63949 -32.8952 -0.1 + vertex 10.7415 -34.103 -0.1 + vertex 10.7315 -33.9677 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9123 -34.3507 -0.1 + vertex 10.5307 -36.9119 -0.1 + vertex 10.8691 -36.7549 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.97377 -29.9101 -0.1 + vertex 12.0447 -30.0547 -0.1 + vertex 9.07864 -27.2338 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.46723 -21.7989 -0.1 + vertex 10.602 -19.227 -0.1 + vertex 10.3591 -19.1774 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.0892 -24.2416 -0.1 + vertex 14.5952 -23.8342 -0.1 + vertex 10.1598 -23.7848 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0447 -30.0547 -0.1 + vertex 7.97377 -29.9101 -0.1 + vertex 11.5005 -31.4602 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.5952 -23.8342 -0.1 + vertex 10.149 -22.9513 -0.1 + vertex 10.1807 -23.3758 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.5952 -23.8342 -0.1 + vertex 10.1103 -22.7594 -0.1 + vertex 10.149 -22.9513 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.46723 -21.7989 -0.1 + vertex 10.3591 -19.1774 -0.1 + vertex 10.0711 -19.1496 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.881 -19.8313 -0.1 + vertex 10.0571 -22.5812 -0.1 + vertex 10.1103 -22.7594 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.881 -19.8313 -0.1 + vertex 9.99008 -22.4166 -0.1 + vertex 10.0571 -22.5812 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.7902 -19.8211 -0.1 + vertex 9.90973 -22.2656 -0.1 + vertex 9.99008 -22.4166 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.7902 -19.8211 -0.1 + vertex 9.81668 -22.1284 -0.1 + vertex 9.90973 -22.2656 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.18157 -21.6481 -0.1 + vertex 10.0711 -19.1496 -0.1 + vertex 9.72114 -19.1409 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5538 -19.7266 -0.1 + vertex 9.71152 -22.0048 -0.1 + vertex 9.81668 -22.1284 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5538 -19.7266 -0.1 + vertex 9.59484 -21.895 -0.1 + vertex 9.71152 -22.0048 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.2294 -19.5302 -0.1 + vertex 9.46723 -21.7989 -0.1 + vertex 9.59484 -21.895 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.0711 -19.1496 -0.1 + vertex 9.18157 -21.6481 -0.1 + vertex 9.46723 -21.7989 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.72114 -19.1409 -0.1 + vertex 8.85925 -21.5524 -0.1 + vertex 9.18157 -21.6481 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 8.76754 -19.1712 -0.1 + vertex 8.85925 -21.5524 -0.1 + vertex 9.72114 -19.1409 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.76754 -19.1712 -0.1 + vertex 8.50498 -21.5121 -0.1 + vertex 8.85925 -21.5524 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.80885 -19.2424 -0.1 + vertex 8.50498 -21.5121 -0.1 + vertex 8.76754 -19.1712 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.50498 -21.5121 -0.1 + vertex 7.80885 -19.2424 -0.1 + vertex 8.12348 -21.5274 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.42262 -19.2967 -0.1 + vertex 8.12348 -21.5274 -0.1 + vertex 7.80885 -19.2424 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.12348 -21.5274 -0.1 + vertex 7.42262 -19.2967 -0.1 + vertex 7.71946 -21.5983 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.07441 -19.3694 -0.1 + vertex 7.71946 -21.5983 -0.1 + vertex 7.42262 -19.2967 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.74616 -19.4649 -0.1 + vertex 7.71946 -21.5983 -0.1 + vertex 7.07441 -19.3694 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.71946 -21.5983 -0.1 + vertex 6.74616 -19.4649 -0.1 + vertex 7.29763 -21.7251 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.41984 -19.5879 -0.1 + vertex 7.29763 -21.7251 -0.1 + vertex 6.74616 -19.4649 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.07737 -19.7427 -0.1 + vertex 7.29763 -21.7251 -0.1 + vertex 6.41984 -19.5879 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.29763 -21.7251 -0.1 + vertex 6.07737 -19.7427 -0.1 + vertex 6.8627 -21.9079 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.70074 -19.9339 -0.1 + vertex 6.8627 -21.9079 -0.1 + vertex 6.07737 -19.7427 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.8627 -21.9079 -0.1 + vertex 5.70074 -19.9339 -0.1 + vertex 6.41939 -22.1469 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.20766 -20.2058 -0.1 + vertex 6.41939 -22.1469 -0.1 + vertex 5.70074 -19.9339 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.41939 -22.1469 -0.1 + vertex 5.20766 -20.2058 -0.1 + vertex 5.97241 -22.4422 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.71458 -20.5006 -0.1 + vertex 5.97241 -22.4422 -0.1 + vertex 5.20766 -20.2058 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.22328 -20.8168 -0.1 + vertex 5.97241 -22.4422 -0.1 + vertex 4.71458 -20.5006 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.97241 -22.4422 -0.1 + vertex 4.22328 -20.8168 -0.1 + vertex 5.52647 -22.794 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.73558 -21.1527 -0.1 + vertex 5.52647 -22.794 -0.1 + vertex 4.22328 -20.8168 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.52647 -22.794 -0.1 + vertex 3.73558 -21.1527 -0.1 + vertex 5.08628 -23.2024 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.25328 -21.5067 -0.1 + vertex 5.08628 -23.2024 -0.1 + vertex 3.73558 -21.1527 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.08628 -23.2024 -0.1 + vertex 3.25328 -21.5067 -0.1 + vertex 4.45147 -23.8871 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.77819 -21.8771 -0.1 + vertex 4.45147 -23.8871 -0.1 + vertex 3.25328 -21.5067 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.31211 -22.2625 -0.1 + vertex 4.45147 -23.8871 -0.1 + vertex 2.77819 -21.8771 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.45147 -23.8871 -0.1 + vertex 2.31211 -22.2625 -0.1 + vertex 3.85887 -24.6213 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.85684 -22.661 -0.1 + vertex 3.85887 -24.6213 -0.1 + vertex 2.31211 -22.2625 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.4142 -23.0712 -0.1 + vertex 3.85887 -24.6213 -0.1 + vertex 1.85684 -22.661 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.85887 -24.6213 -0.1 + vertex 1.4142 -23.0712 -0.1 + vertex 3.31148 -25.3951 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.985991 -23.4913 -0.1 + vertex 3.31148 -25.3951 -0.1 + vertex 1.4142 -23.0712 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.574011 -23.9198 -0.1 + vertex 3.31148 -25.3951 -0.1 + vertex 0.985991 -23.4913 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.31148 -25.3951 -0.1 + vertex 0.574011 -23.9198 -0.1 + vertex 2.81229 -26.1986 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.18007 -24.355 -0.1 + vertex 2.81229 -26.1986 -0.1 + vertex 0.574011 -23.9198 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -0.194025 -24.7953 -0.1 + vertex 2.81229 -26.1986 -0.1 + vertex 0.18007 -24.355 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.81229 -26.1986 -0.1 + vertex -0.194025 -24.7953 -0.1 + vertex 2.36428 -27.0218 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -0.546472 -25.2391 -0.1 + vertex 2.36428 -27.0218 -0.1 + vertex -0.194025 -24.7953 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -0.875463 -25.6847 -0.1 + vertex 2.36428 -27.0218 -0.1 + vertex -0.546472 -25.2391 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.36428 -27.0218 -0.1 + vertex -0.875463 -25.6847 -0.1 + vertex 1.97046 -27.8549 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -1.17919 -26.1306 -0.1 + vertex 1.97046 -27.8549 -0.1 + vertex -0.875463 -25.6847 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -1.45361 -26.5684 -0.1 + vertex 1.97046 -27.8549 -0.1 + vertex -1.17919 -26.1306 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5005 -31.4602 -0.1 + vertex 7.97377 -29.9101 -0.1 + vertex 11.1661 -32.3709 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.44603 -31.1479 -0.1 + vertex 11.1661 -32.3709 -0.1 + vertex 7.97377 -29.9101 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.1661 -32.3709 -0.1 + vertex 7.44603 -31.1479 -0.1 + vertex 10.9267 -33.0747 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.00854 -32.1311 -0.1 + vertex 10.9267 -33.0747 -0.1 + vertex 7.44603 -31.1479 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9267 -33.0747 -0.1 + vertex 7.00854 -32.1311 -0.1 + vertex 10.7819 -33.5982 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.7819 -33.5982 -0.1 + vertex 7.00854 -32.1311 -0.1 + vertex 10.7449 -33.8005 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.63949 -32.8952 -0.1 + vertex 10.7449 -33.8005 -0.1 + vertex 7.00854 -32.1311 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.7449 -33.8005 -0.1 + vertex 6.63949 -32.8952 -0.1 + vertex 10.7315 -33.9677 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.7415 -34.103 -0.1 + vertex 6.63949 -32.8952 -0.1 + vertex 6.31707 -33.4759 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.832 -34.2912 -0.1 + vertex 9.93892 -37.0575 -0.1 + vertex 10.2137 -37.0171 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.832 -34.2912 -0.1 + vertex 10.2137 -37.0171 -0.1 + vertex 10.5307 -36.9119 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.832 -34.2912 -0.1 + vertex 9.71926 -37.0921 -0.1 + vertex 9.93892 -37.0575 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.775 -34.2097 -0.1 + vertex 9.37163 -37.1827 -0.1 + vertex 9.71926 -37.0921 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 8.94379 -37.3156 -0.1 + vertex 10.7415 -34.103 -0.1 + vertex 6.31707 -33.4759 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.775 -34.2097 -0.1 + vertex 8.94379 -37.3156 -0.1 + vertex 9.37163 -37.1827 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.01946 -33.9088 -0.1 + vertex 8.94379 -37.3156 -0.1 + vertex 6.31707 -33.4759 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.94379 -37.3156 -0.1 + vertex 6.01946 -33.9088 -0.1 + vertex 8.4835 -37.477 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.87315 -34.0811 -0.1 + vertex 8.4835 -37.477 -0.1 + vertex 6.01946 -33.9088 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.72486 -34.2297 -0.1 + vertex 8.4835 -37.477 -0.1 + vertex 5.87315 -34.0811 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.4835 -37.477 -0.1 + vertex 5.72486 -34.2297 -0.1 + vertex 7.35232 -37.8908 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.41146 -34.4742 -0.1 + vertex 7.35232 -37.8908 -0.1 + vertex 5.72486 -34.2297 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.69132 -37.3222 -0.1 + vertex 7.35232 -37.8908 -0.1 + vertex 5.41146 -34.4742 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.35232 -37.8908 -0.1 + vertex 4.69132 -37.3222 -0.1 + vertex 6.47346 -38.1927 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 4.72035 -37.4346 -0.1 + vertex 6.47346 -38.1927 -0.1 + vertex 4.69132 -37.3222 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.47346 -38.1927 -0.1 + vertex 4.72035 -37.4346 -0.1 + vertex 5.81563 -38.3852 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 4.74716 -37.8041 -0.1 + vertex 5.81563 -38.3852 -0.1 + vertex 4.72035 -37.4346 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.69132 -37.3222 -0.1 + vertex 5.41146 -34.4742 -0.1 + vertex 5.05744 -34.678 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.55983 -38.4413 -0.1 + vertex 4.74716 -37.8041 -0.1 + vertex 5.34756 -38.4712 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 4.76904 -38.117 -0.1 + vertex 5.34756 -38.4712 -0.1 + vertex 4.74716 -37.8041 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.34756 -38.4712 -0.1 + vertex 4.76904 -38.117 -0.1 + vertex 5.17491 -38.475 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.17491 -38.475 -0.1 + vertex 4.76904 -38.117 -0.1 + vertex 5.03796 -38.4533 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.03796 -38.4533 -0.1 + vertex 4.80226 -38.2378 -0.1 + vertex 4.93281 -38.4063 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.93281 -38.4063 -0.1 + vertex 4.80226 -38.2378 -0.1 + vertex 4.85555 -38.3343 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 4.80226 -38.2378 -0.1 + vertex 5.03796 -38.4533 -0.1 + vertex 4.76904 -38.117 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.81563 -38.3852 -0.1 + vertex 4.74716 -37.8041 -0.1 + vertex 5.55983 -38.4413 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.05744 -34.678 -0.1 + vertex 4.65588 -37.2809 -0.1 + vertex 4.69132 -37.3222 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.59905 -34.8756 -0.1 + vertex 4.65588 -37.2809 -0.1 + vertex 5.05744 -34.678 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.12685 -35.011 -0.1 + vertex 4.65588 -37.2809 -0.1 + vertex 4.59905 -34.8756 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.65273 -35.0844 -0.1 + vertex 4.65588 -37.2809 -0.1 + vertex 4.12685 -35.011 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.65588 -37.2809 -0.1 + vertex 3.65273 -35.0844 -0.1 + vertex 4.26446 -37.4494 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.18861 -35.0966 -0.1 + vertex 4.26446 -37.4494 -0.1 + vertex 3.65273 -35.0844 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.26446 -37.4494 -0.1 + vertex 3.18861 -35.0966 -0.1 + vertex 3.45158 -37.8545 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.7464 -35.0478 -0.1 + vertex 3.45158 -37.8545 -0.1 + vertex 3.18861 -35.0966 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.45158 -37.8545 -0.1 + vertex 2.7464 -35.0478 -0.1 + vertex 3.20396 -37.9704 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.20396 -37.9704 -0.1 + vertex 2.7464 -35.0478 -0.1 + vertex 2.93102 -38.0768 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.53723 -35.0007 -0.1 + vertex 2.93102 -38.0768 -0.1 + vertex 2.7464 -35.0478 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.32439 -38.26 -0.1 + vertex 2.53723 -35.0007 -0.1 + vertex 2.33801 -34.9386 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.53723 -35.0007 -0.1 + vertex 2.32439 -38.26 -0.1 + vertex 2.93102 -38.0768 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.66207 -38.4009 -0.1 + vertex 2.33801 -34.9386 -0.1 + vertex 2.15022 -34.8616 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.66207 -38.4009 -0.1 + vertex 2.15022 -34.8616 -0.1 + vertex 1.97535 -34.7696 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.974434 -38.4962 -0.1 + vertex 1.97535 -34.7696 -0.1 + vertex 1.8149 -34.6627 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.291868 -38.543 -0.1 + vertex 1.8149 -34.6627 -0.1 + vertex 1.67035 -34.5411 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.33801 -34.9386 -0.1 + vertex 1.66207 -38.4009 -0.1 + vertex 2.32439 -38.26 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.355246 -38.538 -0.1 + vertex 1.67035 -34.5411 -0.1 + vertex 1.50339 -34.3603 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.66982 -37.4742 -0.1 + vertex 1.50339 -34.3603 -0.1 + vertex 1.35782 -34.1559 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.25661 -36.6145 -0.1 + vertex 1.35782 -34.1559 -0.1 + vertex 1.23329 -33.9292 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.68783 -35.5721 -0.1 + vertex 1.23329 -33.9292 -0.1 + vertex 1.1294 -33.6813 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.87516 -34.8013 -0.1 + vertex 1.1294 -33.6813 -0.1 + vertex 1.04578 -33.4136 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97277 -33.9877 -0.1 + vertex 1.04578 -33.4136 -0.1 + vertex 0.982074 -33.1272 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.97535 -34.7696 -0.1 + vertex 0.974434 -38.4962 -0.1 + vertex 1.66207 -38.4009 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97004 -33.2395 -0.1 + vertex 0.982074 -33.1272 -0.1 + vertex 0.937893 -32.8234 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.8527 -32.4651 -0.1 + vertex 0.937893 -32.8234 -0.1 + vertex 0.912865 -32.5034 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.75417 -32.0301 -0.1 + vertex 0.912865 -32.5034 -0.1 + vertex 0.906618 -32.1685 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.97046 -27.8549 -0.1 + vertex -1.45361 -26.5684 -0.1 + vertex 1.63381 -28.6878 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -1.72295 -27.0315 -0.1 + vertex 1.63381 -28.6878 -0.1 + vertex -1.45361 -26.5684 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -2.23947 -28.0146 -0.1 + vertex 1.63381 -28.6878 -0.1 + vertex -1.72295 -27.0315 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.63381 -28.6878 -0.1 + vertex -2.23947 -28.0146 -0.1 + vertex 1.35733 -29.5107 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -2.71481 -29.043 -0.1 + vertex 1.35733 -29.5107 -0.1 + vertex -2.23947 -28.0146 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.35733 -29.5107 -0.1 + vertex -2.71481 -29.043 -0.1 + vertex 1.144 -30.3137 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.144 -30.3137 -0.1 + vertex -2.71481 -29.043 -0.1 + vertex 0.99682 -31.0867 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -3.135 -30.0798 -0.1 + vertex 0.99682 -31.0867 -0.1 + vertex -2.71481 -29.043 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.99682 -31.0867 -0.1 + vertex -3.135 -30.0798 -0.1 + vertex 0.918778 -31.8199 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -3.4861 -31.0878 -0.1 + vertex 0.918778 -31.8199 -0.1 + vertex -3.135 -30.0798 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.918778 -31.8199 -0.1 + vertex -3.4861 -31.0878 -0.1 + vertex 0.906618 -32.1685 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -3.75417 -32.0301 -0.1 + vertex 0.906618 -32.1685 -0.1 + vertex -3.4861 -31.0878 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.912865 -32.5034 -0.1 + vertex -3.75417 -32.0301 -0.1 + vertex -3.8527 -32.4651 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.937893 -32.8234 -0.1 + vertex -3.8527 -32.4651 -0.1 + vertex -3.92523 -32.8697 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.937893 -32.8234 -0.1 + vertex -3.92523 -32.8697 -0.1 + vertex -3.97004 -33.2395 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.04578 -33.4136 -0.1 + vertex -3.97277 -33.9877 -0.1 + vertex -3.93569 -34.3989 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.04578 -33.4136 -0.1 + vertex -3.93569 -34.3989 -0.1 + vertex -3.87516 -34.8013 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.1294 -33.6813 -0.1 + vertex -3.87516 -34.8013 -0.1 + vertex -3.79219 -35.193 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.8149 -34.6627 -0.1 + vertex 0.291868 -38.543 -0.1 + vertex 0.974434 -38.4962 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.23329 -33.9292 -0.1 + vertex -3.56309 -35.9367 -0.1 + vertex -3.41901 -36.2848 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.23329 -33.9292 -0.1 + vertex -3.41901 -36.2848 -0.1 + vertex -3.25661 -36.6145 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.35782 -34.1559 -0.1 + vertex -3.25661 -36.6145 -0.1 + vertex -3.07693 -36.924 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.35782 -34.1559 -0.1 + vertex -3.07693 -36.924 -0.1 + vertex -2.88099 -37.2112 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.35782 -34.1559 -0.1 + vertex -2.88099 -37.2112 -0.1 + vertex -2.66982 -37.4742 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.50339 -34.3603 -0.1 + vertex -2.20592 -37.9202 -0.1 + vertex -0.936529 -38.478 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.19299 -38.4265 -0.1 + vertex -2.20592 -37.9202 -0.1 + vertex -1.4216 -38.36 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.69347 -38.2465 -0.1 + vertex -2.20592 -37.9202 -0.1 + vertex -1.95525 -38.0993 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.4216 -38.36 -0.1 + vertex -2.20592 -37.9202 -0.1 + vertex -1.69347 -38.2465 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.936529 -38.478 -0.1 + vertex -2.20592 -37.9202 -0.1 + vertex -1.19299 -38.4265 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.50339 -34.3603 -0.1 + vertex -2.44446 -37.7112 -0.1 + vertex -2.20592 -37.9202 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.50339 -34.3603 -0.1 + vertex -0.936529 -38.478 -0.1 + vertex -0.355246 -38.538 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.50339 -34.3603 -0.1 + vertex -2.66982 -37.4742 -0.1 + vertex -2.44446 -37.7112 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.1294 -33.6813 -0.1 + vertex -3.79219 -35.193 -0.1 + vertex -3.68783 -35.5721 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.67035 -34.5411 -0.1 + vertex -0.355246 -38.538 -0.1 + vertex 0.291868 -38.543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.982074 -33.1272 -0.1 + vertex -3.97004 -33.2395 -0.1 + vertex -3.98536 -33.5697 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.23329 -33.9292 -0.1 + vertex -3.68783 -35.5721 -0.1 + vertex -3.56309 -35.9367 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.982074 -33.1272 -0.1 + vertex -3.98536 -33.5697 -0.1 + vertex -3.97277 -33.9877 -0.1 + endloop + endfacet + facet normal -0.2949 -0.955528 0 + outer loop + vertex 19.3736 -10.7173 -0.1 + vertex 19.4763 -10.749 0 + vertex 19.3736 -10.7173 0 + endloop + endfacet + facet normal -0.2949 -0.955528 -0 + outer loop + vertex 19.4763 -10.749 0 + vertex 19.3736 -10.7173 -0.1 + vertex 19.4763 -10.749 -0.1 + endloop + endfacet + facet normal -0.500051 -0.865996 0 + outer loop + vertex 19.4763 -10.749 -0.1 + vertex 19.557 -10.7956 0 + vertex 19.4763 -10.749 0 + endloop + endfacet + facet normal -0.500051 -0.865996 -0 + outer loop + vertex 19.557 -10.7956 0 + vertex 19.4763 -10.749 -0.1 + vertex 19.557 -10.7956 -0.1 + endloop + endfacet + facet normal -0.714409 -0.699729 0 + outer loop + vertex 19.6172 -10.8571 -0.1 + vertex 19.557 -10.7956 0 + vertex 19.557 -10.7956 -0.1 + endloop + endfacet + facet normal -0.714409 -0.699729 0 + outer loop + vertex 19.557 -10.7956 0 + vertex 19.6172 -10.8571 -0.1 + vertex 19.6172 -10.8571 0 + endloop + endfacet + facet normal -0.879991 -0.47499 0 + outer loop + vertex 19.6583 -10.9333 -0.1 + vertex 19.6172 -10.8571 0 + vertex 19.6172 -10.8571 -0.1 + endloop + endfacet + facet normal -0.879991 -0.47499 0 + outer loop + vertex 19.6172 -10.8571 0 + vertex 19.6583 -10.9333 -0.1 + vertex 19.6583 -10.9333 0 + endloop + endfacet + facet normal -0.967951 -0.251138 0 + outer loop + vertex 19.6819 -11.0243 -0.1 + vertex 19.6583 -10.9333 0 + vertex 19.6583 -10.9333 -0.1 + endloop + endfacet + facet normal -0.967951 -0.251138 0 + outer loop + vertex 19.6583 -10.9333 0 + vertex 19.6819 -11.0243 -0.1 + vertex 19.6819 -11.0243 0 + endloop + endfacet + facet normal -0.997465 -0.0711569 0 + outer loop + vertex 19.6895 -11.13 -0.1 + vertex 19.6819 -11.0243 0 + vertex 19.6819 -11.0243 -0.1 + endloop + endfacet + facet normal -0.997465 -0.0711569 0 + outer loop + vertex 19.6819 -11.0243 0 + vertex 19.6895 -11.13 -0.1 + vertex 19.6895 -11.13 0 + endloop + endfacet + facet normal -0.984705 0.17423 0 + outer loop + vertex 19.6598 -11.2975 -0.1 + vertex 19.6895 -11.13 0 + vertex 19.6895 -11.13 -0.1 + endloop + endfacet + facet normal -0.984705 0.17423 0 + outer loop + vertex 19.6895 -11.13 0 + vertex 19.6598 -11.2975 -0.1 + vertex 19.6598 -11.2975 0 + endloop + endfacet + facet normal -0.956743 0.290933 0 + outer loop + vertex 19.5653 -11.6083 -0.1 + vertex 19.6598 -11.2975 0 + vertex 19.6598 -11.2975 -0.1 + endloop + endfacet + facet normal -0.956743 0.290933 0 + outer loop + vertex 19.6598 -11.2975 0 + vertex 19.5653 -11.6083 -0.1 + vertex 19.5653 -11.6083 0 + endloop + endfacet + facet normal -0.93899 0.343946 0 + outer loop + vertex 19.1479 -12.7477 -0.1 + vertex 19.5653 -11.6083 0 + vertex 19.5653 -11.6083 -0.1 + endloop + endfacet + facet normal -0.93899 0.343946 0 + outer loop + vertex 19.5653 -11.6083 0 + vertex 19.1479 -12.7477 -0.1 + vertex 19.1479 -12.7477 0 + endloop + endfacet + facet normal -0.930496 0.366302 0 + outer loop + vertex 18.3699 -14.7241 -0.1 + vertex 19.1479 -12.7477 0 + vertex 19.1479 -12.7477 -0.1 + endloop + endfacet + facet normal -0.930496 0.366302 0 + outer loop + vertex 19.1479 -12.7477 0 + vertex 18.3699 -14.7241 -0.1 + vertex 18.3699 -14.7241 0 + endloop + endfacet + facet normal -0.92735 0.374196 0 + outer loop + vertex 17.1638 -17.7131 -0.1 + vertex 18.3699 -14.7241 0 + vertex 18.3699 -14.7241 -0.1 + endloop + endfacet + facet normal -0.92735 0.374196 0 + outer loop + vertex 18.3699 -14.7241 0 + vertex 17.1638 -17.7131 -0.1 + vertex 17.1638 -17.7131 0 + endloop + endfacet + facet normal -0.922106 0.386938 0 + outer loop + vertex 14.5952 -23.8342 -0.1 + vertex 17.1638 -17.7131 0 + vertex 17.1638 -17.7131 -0.1 + endloop + endfacet + facet normal -0.922106 0.386938 0 + outer loop + vertex 17.1638 -17.7131 0 + vertex 14.5952 -23.8342 -0.1 + vertex 14.5952 -23.8342 0 + endloop + endfacet + facet normal -0.923985 0.382428 0 + outer loop + vertex 12.8097 -28.1484 -0.1 + vertex 14.5952 -23.8342 0 + vertex 14.5952 -23.8342 -0.1 + endloop + endfacet + facet normal -0.923985 0.382428 0 + outer loop + vertex 14.5952 -23.8342 0 + vertex 12.8097 -28.1484 -0.1 + vertex 12.8097 -28.1484 0 + endloop + endfacet + facet normal -0.928075 0.372394 0 + outer loop + vertex 12.0447 -30.0547 -0.1 + vertex 12.8097 -28.1484 0 + vertex 12.8097 -28.1484 -0.1 + endloop + endfacet + facet normal -0.928075 0.372394 0 + outer loop + vertex 12.8097 -28.1484 0 + vertex 12.0447 -30.0547 -0.1 + vertex 12.0447 -30.0547 0 + endloop + endfacet + facet normal -0.932522 0.361114 0 + outer loop + vertex 11.5005 -31.4602 -0.1 + vertex 12.0447 -30.0547 0 + vertex 12.0447 -30.0547 -0.1 + endloop + endfacet + facet normal -0.932522 0.361114 0 + outer loop + vertex 12.0447 -30.0547 0 + vertex 11.5005 -31.4602 -0.1 + vertex 11.5005 -31.4602 0 + endloop + endfacet + facet normal -0.938737 0.344634 0 + outer loop + vertex 11.1661 -32.3709 -0.1 + vertex 11.5005 -31.4602 0 + vertex 11.5005 -31.4602 -0.1 + endloop + endfacet + facet normal -0.938737 0.344634 0 + outer loop + vertex 11.5005 -31.4602 0 + vertex 11.1661 -32.3709 -0.1 + vertex 11.1661 -32.3709 0 + endloop + endfacet + facet normal -0.946728 0.322034 0 + outer loop + vertex 10.9267 -33.0747 -0.1 + vertex 11.1661 -32.3709 0 + vertex 11.1661 -32.3709 -0.1 + endloop + endfacet + facet normal -0.946728 0.322034 0 + outer loop + vertex 11.1661 -32.3709 0 + vertex 10.9267 -33.0747 -0.1 + vertex 10.9267 -33.0747 0 + endloop + endfacet + facet normal -0.963806 0.266603 0 + outer loop + vertex 10.7819 -33.5982 -0.1 + vertex 10.9267 -33.0747 0 + vertex 10.9267 -33.0747 -0.1 + endloop + endfacet + facet normal -0.963806 0.266603 0 + outer loop + vertex 10.9267 -33.0747 0 + vertex 10.7819 -33.5982 -0.1 + vertex 10.7819 -33.5982 0 + endloop + endfacet + facet normal -0.983685 0.179901 0 + outer loop + vertex 10.7449 -33.8005 -0.1 + vertex 10.7819 -33.5982 0 + vertex 10.7819 -33.5982 -0.1 + endloop + endfacet + facet normal -0.983685 0.179901 0 + outer loop + vertex 10.7819 -33.5982 0 + vertex 10.7449 -33.8005 -0.1 + vertex 10.7449 -33.8005 0 + endloop + endfacet + facet normal -0.996773 0.0802779 0 + outer loop + vertex 10.7315 -33.9677 -0.1 + vertex 10.7449 -33.8005 0 + vertex 10.7449 -33.8005 -0.1 + endloop + endfacet + facet normal -0.996773 0.0802779 0 + outer loop + vertex 10.7449 -33.8005 0 + vertex 10.7315 -33.9677 -0.1 + vertex 10.7315 -33.9677 0 + endloop + endfacet + facet normal -0.997256 -0.0740364 0 + outer loop + vertex 10.7415 -34.103 -0.1 + vertex 10.7315 -33.9677 0 + vertex 10.7315 -33.9677 -0.1 + endloop + endfacet + facet normal -0.997256 -0.0740364 0 + outer loop + vertex 10.7315 -33.9677 0 + vertex 10.7415 -34.103 -0.1 + vertex 10.7415 -34.103 0 + endloop + endfacet + facet normal -0.954067 -0.299593 0 + outer loop + vertex 10.775 -34.2097 -0.1 + vertex 10.7415 -34.103 0 + vertex 10.7415 -34.103 -0.1 + endloop + endfacet + facet normal -0.954067 -0.299593 0 + outer loop + vertex 10.7415 -34.103 0 + vertex 10.775 -34.2097 -0.1 + vertex 10.775 -34.2097 0 + endloop + endfacet + facet normal -0.81961 -0.572921 0 + outer loop + vertex 10.832 -34.2912 -0.1 + vertex 10.775 -34.2097 0 + vertex 10.775 -34.2097 -0.1 + endloop + endfacet + facet normal -0.81961 -0.572921 0 + outer loop + vertex 10.775 -34.2097 0 + vertex 10.832 -34.2912 -0.1 + vertex 10.832 -34.2912 0 + endloop + endfacet + facet normal -0.595252 -0.803539 0 + outer loop + vertex 10.832 -34.2912 -0.1 + vertex 10.9123 -34.3507 0 + vertex 10.832 -34.2912 0 + endloop + endfacet + facet normal -0.595252 -0.803539 -0 + outer loop + vertex 10.9123 -34.3507 0 + vertex 10.832 -34.2912 -0.1 + vertex 10.9123 -34.3507 -0.1 + endloop + endfacet + facet normal -0.366659 -0.930355 0 + outer loop + vertex 10.9123 -34.3507 -0.1 + vertex 11.016 -34.3915 0 + vertex 10.9123 -34.3507 0 + endloop + endfacet + facet normal -0.366659 -0.930355 -0 + outer loop + vertex 11.016 -34.3915 0 + vertex 10.9123 -34.3507 -0.1 + vertex 11.016 -34.3915 -0.1 + endloop + endfacet + facet normal -0.197016 -0.9804 0 + outer loop + vertex 11.016 -34.3915 -0.1 + vertex 11.143 -34.4171 0 + vertex 11.016 -34.3915 0 + endloop + endfacet + facet normal -0.197016 -0.9804 -0 + outer loop + vertex 11.143 -34.4171 0 + vertex 11.016 -34.3915 -0.1 + vertex 11.143 -34.4171 -0.1 + endloop + endfacet + facet normal -0.0562764 -0.998415 0 + outer loop + vertex 11.143 -34.4171 -0.1 + vertex 11.4668 -34.4353 0 + vertex 11.143 -34.4171 0 + endloop + endfacet + facet normal -0.0562764 -0.998415 -0 + outer loop + vertex 11.4668 -34.4353 0 + vertex 11.143 -34.4171 -0.1 + vertex 11.4668 -34.4353 -0.1 + endloop + endfacet + facet normal -0.118118 -0.993 0 + outer loop + vertex 11.4668 -34.4353 -0.1 + vertex 11.6919 -34.4621 0 + vertex 11.4668 -34.4353 0 + endloop + endfacet + facet normal -0.118118 -0.993 -0 + outer loop + vertex 11.6919 -34.4621 0 + vertex 11.4668 -34.4353 -0.1 + vertex 11.6919 -34.4621 -0.1 + endloop + endfacet + facet normal -0.357337 -0.933976 0 + outer loop + vertex 11.6919 -34.4621 -0.1 + vertex 11.8827 -34.5351 0 + vertex 11.6919 -34.4621 0 + endloop + endfacet + facet normal -0.357337 -0.933976 -0 + outer loop + vertex 11.8827 -34.5351 0 + vertex 11.6919 -34.4621 -0.1 + vertex 11.8827 -34.5351 -0.1 + endloop + endfacet + facet normal -0.596054 -0.802944 0 + outer loop + vertex 11.8827 -34.5351 -0.1 + vertex 12.0364 -34.6492 0 + vertex 11.8827 -34.5351 0 + endloop + endfacet + facet normal -0.596054 -0.802944 -0 + outer loop + vertex 12.0364 -34.6492 0 + vertex 11.8827 -34.5351 -0.1 + vertex 12.0364 -34.6492 -0.1 + endloop + endfacet + facet normal -0.796902 -0.604109 0 + outer loop + vertex 12.1503 -34.7994 -0.1 + vertex 12.0364 -34.6492 0 + vertex 12.0364 -34.6492 -0.1 + endloop + endfacet + facet normal -0.796902 -0.604109 0 + outer loop + vertex 12.0364 -34.6492 0 + vertex 12.1503 -34.7994 -0.1 + vertex 12.1503 -34.7994 0 + endloop + endfacet + facet normal -0.930863 -0.365367 0 + outer loop + vertex 12.2214 -34.9805 -0.1 + vertex 12.1503 -34.7994 0 + vertex 12.1503 -34.7994 -0.1 + endloop + endfacet + facet normal -0.930863 -0.365367 0 + outer loop + vertex 12.1503 -34.7994 0 + vertex 12.2214 -34.9805 -0.1 + vertex 12.2214 -34.9805 0 + endloop + endfacet + facet normal -0.992505 -0.122206 0 + outer loop + vertex 12.2468 -35.1875 -0.1 + vertex 12.2214 -34.9805 0 + vertex 12.2214 -34.9805 -0.1 + endloop + endfacet + facet normal -0.992505 -0.122206 0 + outer loop + vertex 12.2214 -34.9805 0 + vertex 12.2468 -35.1875 -0.1 + vertex 12.2468 -35.1875 0 + endloop + endfacet + facet normal -0.994949 0.100386 0 + outer loop + vertex 12.2239 -35.4151 -0.1 + vertex 12.2468 -35.1875 0 + vertex 12.2468 -35.1875 -0.1 + endloop + endfacet + facet normal -0.994949 0.100386 0 + outer loop + vertex 12.2468 -35.1875 0 + vertex 12.2239 -35.4151 -0.1 + vertex 12.2239 -35.4151 0 + endloop + endfacet + facet normal -0.956433 0.291953 0 + outer loop + vertex 12.1496 -35.6584 -0.1 + vertex 12.2239 -35.4151 0 + vertex 12.2239 -35.4151 -0.1 + endloop + endfacet + facet normal -0.956433 0.291953 0 + outer loop + vertex 12.2239 -35.4151 0 + vertex 12.1496 -35.6584 -0.1 + vertex 12.1496 -35.6584 0 + endloop + endfacet + facet normal -0.890412 0.455156 0 + outer loop + vertex 12.0956 -35.7642 -0.1 + vertex 12.1496 -35.6584 0 + vertex 12.1496 -35.6584 -0.1 + endloop + endfacet + facet normal -0.890412 0.455156 0 + outer loop + vertex 12.1496 -35.6584 0 + vertex 12.0956 -35.7642 -0.1 + vertex 12.0956 -35.7642 0 + endloop + endfacet + facet normal -0.820093 0.572231 0 + outer loop + vertex 12.0181 -35.8752 -0.1 + vertex 12.0956 -35.7642 0 + vertex 12.0956 -35.7642 -0.1 + endloop + endfacet + facet normal -0.820093 0.572231 0 + outer loop + vertex 12.0956 -35.7642 0 + vertex 12.0181 -35.8752 -0.1 + vertex 12.0181 -35.8752 0 + endloop + endfacet + facet normal -0.732832 0.680409 0 + outer loop + vertex 11.8034 -36.1064 -0.1 + vertex 12.0181 -35.8752 0 + vertex 12.0181 -35.8752 -0.1 + endloop + endfacet + facet normal -0.732832 0.680409 0 + outer loop + vertex 12.0181 -35.8752 0 + vertex 11.8034 -36.1064 -0.1 + vertex 11.8034 -36.1064 0 + endloop + endfacet + facet normal -0.642938 0.765918 0 + outer loop + vertex 11.8034 -36.1064 -0.1 + vertex 11.5264 -36.339 0 + vertex 11.8034 -36.1064 0 + endloop + endfacet + facet normal -0.642938 0.765918 0 + outer loop + vertex 11.5264 -36.339 0 + vertex 11.8034 -36.1064 -0.1 + vertex 11.5264 -36.339 -0.1 + endloop + endfacet + facet normal -0.569468 0.822014 0 + outer loop + vertex 11.5264 -36.339 -0.1 + vertex 11.208 -36.5595 0 + vertex 11.5264 -36.339 0 + endloop + endfacet + facet normal -0.569468 0.822014 0 + outer loop + vertex 11.208 -36.5595 0 + vertex 11.5264 -36.339 -0.1 + vertex 11.208 -36.5595 -0.1 + endloop + endfacet + facet normal -0.499497 0.866315 0 + outer loop + vertex 11.208 -36.5595 -0.1 + vertex 10.8691 -36.7549 0 + vertex 11.208 -36.5595 0 + endloop + endfacet + facet normal -0.499497 0.866315 0 + outer loop + vertex 10.8691 -36.7549 0 + vertex 11.208 -36.5595 -0.1 + vertex 10.8691 -36.7549 -0.1 + endloop + endfacet + facet normal -0.420709 0.907196 0 + outer loop + vertex 10.8691 -36.7549 -0.1 + vertex 10.5307 -36.9119 0 + vertex 10.8691 -36.7549 0 + endloop + endfacet + facet normal -0.420709 0.907196 0 + outer loop + vertex 10.5307 -36.9119 0 + vertex 10.8691 -36.7549 -0.1 + vertex 10.5307 -36.9119 -0.1 + endloop + endfacet + facet normal -0.315116 0.949053 0 + outer loop + vertex 10.5307 -36.9119 -0.1 + vertex 10.2137 -37.0171 0 + vertex 10.5307 -36.9119 0 + endloop + endfacet + facet normal -0.315116 0.949053 0 + outer loop + vertex 10.2137 -37.0171 0 + vertex 10.5307 -36.9119 -0.1 + vertex 10.2137 -37.0171 -0.1 + endloop + endfacet + facet normal -0.145343 0.989381 0 + outer loop + vertex 10.2137 -37.0171 -0.1 + vertex 9.93892 -37.0575 0 + vertex 10.2137 -37.0171 0 + endloop + endfacet + facet normal -0.145343 0.989381 0 + outer loop + vertex 9.93892 -37.0575 0 + vertex 10.2137 -37.0171 -0.1 + vertex 9.93892 -37.0575 -0.1 + endloop + endfacet + facet normal -0.15554 0.98783 0 + outer loop + vertex 9.93892 -37.0575 -0.1 + vertex 9.71926 -37.0921 0 + vertex 9.93892 -37.0575 0 + endloop + endfacet + facet normal -0.15554 0.98783 0 + outer loop + vertex 9.71926 -37.0921 0 + vertex 9.93892 -37.0575 -0.1 + vertex 9.71926 -37.0921 -0.1 + endloop + endfacet + facet normal -0.252236 0.967666 0 + outer loop + vertex 9.71926 -37.0921 -0.1 + vertex 9.37163 -37.1827 0 + vertex 9.71926 -37.0921 0 + endloop + endfacet + facet normal -0.252236 0.967666 0 + outer loop + vertex 9.37163 -37.1827 0 + vertex 9.71926 -37.0921 -0.1 + vertex 9.37163 -37.1827 -0.1 + endloop + endfacet + facet normal -0.296619 0.954996 0 + outer loop + vertex 9.37163 -37.1827 -0.1 + vertex 8.94379 -37.3156 0 + vertex 9.37163 -37.1827 0 + endloop + endfacet + facet normal -0.296619 0.954996 0 + outer loop + vertex 8.94379 -37.3156 0 + vertex 9.37163 -37.1827 -0.1 + vertex 8.94379 -37.3156 -0.1 + endloop + endfacet + facet normal -0.330869 0.943677 0 + outer loop + vertex 8.94379 -37.3156 -0.1 + vertex 8.4835 -37.477 0 + vertex 8.94379 -37.3156 0 + endloop + endfacet + facet normal -0.330869 0.943677 0 + outer loop + vertex 8.4835 -37.477 0 + vertex 8.94379 -37.3156 -0.1 + vertex 8.4835 -37.477 -0.1 + endloop + endfacet + facet normal -0.343608 0.939113 0 + outer loop + vertex 8.4835 -37.477 -0.1 + vertex 7.35232 -37.8908 0 + vertex 8.4835 -37.477 0 + endloop + endfacet + facet normal -0.343608 0.939113 0 + outer loop + vertex 7.35232 -37.8908 0 + vertex 8.4835 -37.477 -0.1 + vertex 7.35232 -37.8908 -0.1 + endloop + endfacet + facet normal -0.324819 0.945776 0 + outer loop + vertex 7.35232 -37.8908 -0.1 + vertex 6.47346 -38.1927 0 + vertex 7.35232 -37.8908 0 + endloop + endfacet + facet normal -0.324819 0.945776 0 + outer loop + vertex 6.47346 -38.1927 0 + vertex 7.35232 -37.8908 -0.1 + vertex 6.47346 -38.1927 -0.1 + endloop + endfacet + facet normal -0.280895 0.959739 0 + outer loop + vertex 6.47346 -38.1927 -0.1 + vertex 5.81563 -38.3852 0 + vertex 6.47346 -38.1927 0 + endloop + endfacet + facet normal -0.280895 0.959739 0 + outer loop + vertex 5.81563 -38.3852 0 + vertex 6.47346 -38.1927 -0.1 + vertex 5.81563 -38.3852 -0.1 + endloop + endfacet + facet normal -0.214328 0.976762 0 + outer loop + vertex 5.81563 -38.3852 -0.1 + vertex 5.55983 -38.4413 0 + vertex 5.81563 -38.3852 0 + endloop + endfacet + facet normal -0.214328 0.976762 0 + outer loop + vertex 5.55983 -38.4413 0 + vertex 5.81563 -38.3852 -0.1 + vertex 5.55983 -38.4413 -0.1 + endloop + endfacet + facet normal -0.139165 0.990269 0 + outer loop + vertex 5.55983 -38.4413 -0.1 + vertex 5.34756 -38.4712 0 + vertex 5.55983 -38.4413 0 + endloop + endfacet + facet normal -0.139165 0.990269 0 + outer loop + vertex 5.34756 -38.4712 0 + vertex 5.55983 -38.4413 -0.1 + vertex 5.34756 -38.4712 -0.1 + endloop + endfacet + facet normal -0.0224422 0.999748 0 + outer loop + vertex 5.34756 -38.4712 -0.1 + vertex 5.17491 -38.475 0 + vertex 5.34756 -38.4712 0 + endloop + endfacet + facet normal -0.0224422 0.999748 0 + outer loop + vertex 5.17491 -38.475 0 + vertex 5.34756 -38.4712 -0.1 + vertex 5.17491 -38.475 -0.1 + endloop + endfacet + facet normal 0.156812 0.987628 -0 + outer loop + vertex 5.17491 -38.475 -0.1 + vertex 5.03796 -38.4533 0 + vertex 5.17491 -38.475 0 + endloop + endfacet + facet normal 0.156812 0.987628 0 + outer loop + vertex 5.03796 -38.4533 0 + vertex 5.17491 -38.475 -0.1 + vertex 5.03796 -38.4533 -0.1 + endloop + endfacet + facet normal 0.408161 0.91291 -0 + outer loop + vertex 5.03796 -38.4533 -0.1 + vertex 4.93281 -38.4063 0 + vertex 5.03796 -38.4533 0 + endloop + endfacet + facet normal 0.408161 0.91291 0 + outer loop + vertex 4.93281 -38.4063 0 + vertex 5.03796 -38.4533 -0.1 + vertex 4.93281 -38.4063 -0.1 + endloop + endfacet + facet normal 0.681473 0.731843 -0 + outer loop + vertex 4.93281 -38.4063 -0.1 + vertex 4.85555 -38.3343 0 + vertex 4.93281 -38.4063 0 + endloop + endfacet + facet normal 0.681473 0.731843 0 + outer loop + vertex 4.85555 -38.3343 0 + vertex 4.93281 -38.4063 -0.1 + vertex 4.85555 -38.3343 -0.1 + endloop + endfacet + facet normal 0.875472 0.48327 0 + outer loop + vertex 4.85555 -38.3343 0 + vertex 4.80226 -38.2378 -0.1 + vertex 4.80226 -38.2378 0 + endloop + endfacet + facet normal 0.875472 0.48327 0 + outer loop + vertex 4.80226 -38.2378 -0.1 + vertex 4.85555 -38.3343 0 + vertex 4.85555 -38.3343 -0.1 + endloop + endfacet + facet normal 0.964192 0.265205 0 + outer loop + vertex 4.80226 -38.2378 0 + vertex 4.76904 -38.117 -0.1 + vertex 4.76904 -38.117 0 + endloop + endfacet + facet normal 0.964192 0.265205 0 + outer loop + vertex 4.76904 -38.117 -0.1 + vertex 4.80226 -38.2378 0 + vertex 4.80226 -38.2378 -0.1 + endloop + endfacet + facet normal 0.997564 0.069762 0 + outer loop + vertex 4.76904 -38.117 0 + vertex 4.74716 -37.8041 -0.1 + vertex 4.74716 -37.8041 0 + endloop + endfacet + facet normal 0.997564 0.069762 0 + outer loop + vertex 4.74716 -37.8041 -0.1 + vertex 4.76904 -38.117 0 + vertex 4.76904 -38.117 -0.1 + endloop + endfacet + facet normal 0.997378 0.0723715 0 + outer loop + vertex 4.74716 -37.8041 0 + vertex 4.72035 -37.4346 -0.1 + vertex 4.72035 -37.4346 0 + endloop + endfacet + facet normal 0.997378 0.0723715 0 + outer loop + vertex 4.72035 -37.4346 -0.1 + vertex 4.74716 -37.8041 0 + vertex 4.74716 -37.8041 -0.1 + endloop + endfacet + facet normal 0.968245 0.250005 0 + outer loop + vertex 4.72035 -37.4346 0 + vertex 4.69132 -37.3222 -0.1 + vertex 4.69132 -37.3222 0 + endloop + endfacet + facet normal 0.968245 0.250005 0 + outer loop + vertex 4.69132 -37.3222 -0.1 + vertex 4.72035 -37.4346 0 + vertex 4.72035 -37.4346 -0.1 + endloop + endfacet + facet normal 0.758745 0.651387 0 + outer loop + vertex 4.69132 -37.3222 0 + vertex 4.65588 -37.2809 -0.1 + vertex 4.65588 -37.2809 0 + endloop + endfacet + facet normal 0.758745 0.651387 0 + outer loop + vertex 4.65588 -37.2809 -0.1 + vertex 4.69132 -37.3222 0 + vertex 4.69132 -37.3222 -0.1 + endloop + endfacet + facet normal -0.395389 0.918514 0 + outer loop + vertex 4.65588 -37.2809 -0.1 + vertex 4.26446 -37.4494 0 + vertex 4.65588 -37.2809 0 + endloop + endfacet + facet normal -0.395389 0.918514 0 + outer loop + vertex 4.26446 -37.4494 0 + vertex 4.65588 -37.2809 -0.1 + vertex 4.26446 -37.4494 -0.1 + endloop + endfacet + facet normal -0.446029 0.895018 0 + outer loop + vertex 4.26446 -37.4494 -0.1 + vertex 3.45158 -37.8545 0 + vertex 4.26446 -37.4494 0 + endloop + endfacet + facet normal -0.446029 0.895018 0 + outer loop + vertex 3.45158 -37.8545 0 + vertex 4.26446 -37.4494 -0.1 + vertex 3.45158 -37.8545 -0.1 + endloop + endfacet + facet normal -0.42381 0.905751 0 + outer loop + vertex 3.45158 -37.8545 -0.1 + vertex 3.20396 -37.9704 0 + vertex 3.45158 -37.8545 0 + endloop + endfacet + facet normal -0.42381 0.905751 0 + outer loop + vertex 3.20396 -37.9704 0 + vertex 3.45158 -37.8545 -0.1 + vertex 3.20396 -37.9704 -0.1 + endloop + endfacet + facet normal -0.363414 0.931628 0 + outer loop + vertex 3.20396 -37.9704 -0.1 + vertex 2.93102 -38.0768 0 + vertex 3.20396 -37.9704 0 + endloop + endfacet + facet normal -0.363414 0.931628 0 + outer loop + vertex 2.93102 -38.0768 0 + vertex 3.20396 -37.9704 -0.1 + vertex 2.93102 -38.0768 -0.1 + endloop + endfacet + facet normal -0.289057 0.957312 0 + outer loop + vertex 2.93102 -38.0768 -0.1 + vertex 2.32439 -38.26 0 + vertex 2.93102 -38.0768 0 + endloop + endfacet + facet normal -0.289057 0.957312 0 + outer loop + vertex 2.32439 -38.26 0 + vertex 2.93102 -38.0768 -0.1 + vertex 2.32439 -38.26 -0.1 + endloop + endfacet + facet normal -0.208009 0.978127 0 + outer loop + vertex 2.32439 -38.26 -0.1 + vertex 1.66207 -38.4009 0 + vertex 2.32439 -38.26 0 + endloop + endfacet + facet normal -0.208009 0.978127 0 + outer loop + vertex 1.66207 -38.4009 0 + vertex 2.32439 -38.26 -0.1 + vertex 1.66207 -38.4009 -0.1 + endloop + endfacet + facet normal -0.13739 0.990517 0 + outer loop + vertex 1.66207 -38.4009 -0.1 + vertex 0.974434 -38.4962 0 + vertex 1.66207 -38.4009 0 + endloop + endfacet + facet normal -0.13739 0.990517 0 + outer loop + vertex 0.974434 -38.4962 0 + vertex 1.66207 -38.4009 -0.1 + vertex 0.974434 -38.4962 -0.1 + endloop + endfacet + facet normal -0.0683412 0.997662 0 + outer loop + vertex 0.974434 -38.4962 -0.1 + vertex 0.291868 -38.543 0 + vertex 0.974434 -38.4962 0 + endloop + endfacet + facet normal -0.0683412 0.997662 0 + outer loop + vertex 0.291868 -38.543 0 + vertex 0.974434 -38.4962 -0.1 + vertex 0.291868 -38.543 -0.1 + endloop + endfacet + facet normal 0.00775161 0.99997 -0 + outer loop + vertex 0.291868 -38.543 -0.1 + vertex -0.355246 -38.538 0 + vertex 0.291868 -38.543 0 + endloop + endfacet + facet normal 0.00775161 0.99997 0 + outer loop + vertex -0.355246 -38.538 0 + vertex 0.291868 -38.543 -0.1 + vertex -0.355246 -38.538 -0.1 + endloop + endfacet + facet normal 0.10258 0.994725 -0 + outer loop + vertex -0.355246 -38.538 -0.1 + vertex -0.936529 -38.478 0 + vertex -0.355246 -38.538 0 + endloop + endfacet + facet normal 0.10258 0.994725 0 + outer loop + vertex -0.936529 -38.478 0 + vertex -0.355246 -38.538 -0.1 + vertex -0.936529 -38.478 -0.1 + endloop + endfacet + facet normal 0.197071 0.980389 -0 + outer loop + vertex -0.936529 -38.478 -0.1 + vertex -1.19299 -38.4265 0 + vertex -0.936529 -38.478 0 + endloop + endfacet + facet normal 0.197071 0.980389 0 + outer loop + vertex -1.19299 -38.4265 0 + vertex -0.936529 -38.478 -0.1 + vertex -1.19299 -38.4265 -0.1 + endloop + endfacet + facet normal 0.279186 0.960237 -0 + outer loop + vertex -1.19299 -38.4265 -0.1 + vertex -1.4216 -38.36 0 + vertex -1.19299 -38.4265 0 + endloop + endfacet + facet normal 0.279186 0.960237 0 + outer loop + vertex -1.4216 -38.36 0 + vertex -1.19299 -38.4265 -0.1 + vertex -1.4216 -38.36 -0.1 + endloop + endfacet + facet normal 0.385209 0.92283 -0 + outer loop + vertex -1.4216 -38.36 -0.1 + vertex -1.69347 -38.2465 0 + vertex -1.4216 -38.36 0 + endloop + endfacet + facet normal 0.385209 0.92283 0 + outer loop + vertex -1.69347 -38.2465 0 + vertex -1.4216 -38.36 -0.1 + vertex -1.69347 -38.2465 -0.1 + endloop + endfacet + facet normal 0.490243 0.871586 -0 + outer loop + vertex -1.69347 -38.2465 -0.1 + vertex -1.95525 -38.0993 0 + vertex -1.69347 -38.2465 0 + endloop + endfacet + facet normal 0.490243 0.871586 0 + outer loop + vertex -1.95525 -38.0993 0 + vertex -1.69347 -38.2465 -0.1 + vertex -1.95525 -38.0993 -0.1 + endloop + endfacet + facet normal 0.581299 0.81369 -0 + outer loop + vertex -1.95525 -38.0993 -0.1 + vertex -2.20592 -37.9202 0 + vertex -1.95525 -38.0993 0 + endloop + endfacet + facet normal 0.581299 0.81369 0 + outer loop + vertex -2.20592 -37.9202 0 + vertex -1.95525 -38.0993 -0.1 + vertex -2.20592 -37.9202 -0.1 + endloop + endfacet + facet normal 0.65901 0.752134 -0 + outer loop + vertex -2.20592 -37.9202 -0.1 + vertex -2.44446 -37.7112 0 + vertex -2.20592 -37.9202 0 + endloop + endfacet + facet normal 0.65901 0.752134 0 + outer loop + vertex -2.44446 -37.7112 0 + vertex -2.20592 -37.9202 -0.1 + vertex -2.44446 -37.7112 -0.1 + endloop + endfacet + facet normal 0.724655 0.689112 0 + outer loop + vertex -2.44446 -37.7112 0 + vertex -2.66982 -37.4742 -0.1 + vertex -2.66982 -37.4742 0 + endloop + endfacet + facet normal 0.724655 0.689112 0 + outer loop + vertex -2.66982 -37.4742 -0.1 + vertex -2.44446 -37.7112 0 + vertex -2.44446 -37.7112 -0.1 + endloop + endfacet + facet normal 0.779827 0.625996 0 + outer loop + vertex -2.66982 -37.4742 0 + vertex -2.88099 -37.2112 -0.1 + vertex -2.88099 -37.2112 0 + endloop + endfacet + facet normal 0.779827 0.625996 0 + outer loop + vertex -2.88099 -37.2112 -0.1 + vertex -2.66982 -37.4742 0 + vertex -2.66982 -37.4742 -0.1 + endloop + endfacet + facet normal 0.826071 0.563566 0 + outer loop + vertex -2.88099 -37.2112 0 + vertex -3.07693 -36.924 -0.1 + vertex -3.07693 -36.924 0 + endloop + endfacet + facet normal 0.826071 0.563566 0 + outer loop + vertex -3.07693 -36.924 -0.1 + vertex -2.88099 -37.2112 0 + vertex -2.88099 -37.2112 -0.1 + endloop + endfacet + facet normal 0.864772 0.502165 0 + outer loop + vertex -3.07693 -36.924 0 + vertex -3.25661 -36.6145 -0.1 + vertex -3.25661 -36.6145 0 + endloop + endfacet + facet normal 0.864772 0.502165 0 + outer loop + vertex -3.25661 -36.6145 -0.1 + vertex -3.07693 -36.924 0 + vertex -3.07693 -36.924 -0.1 + endloop + endfacet + facet normal 0.897098 0.441832 0 + outer loop + vertex -3.25661 -36.6145 0 + vertex -3.41901 -36.2848 -0.1 + vertex -3.41901 -36.2848 0 + endloop + endfacet + facet normal 0.897098 0.441832 0 + outer loop + vertex -3.41901 -36.2848 -0.1 + vertex -3.25661 -36.6145 0 + vertex -3.25661 -36.6145 -0.1 + endloop + endfacet + facet normal 0.923982 0.382435 0 + outer loop + vertex -3.41901 -36.2848 0 + vertex -3.56309 -35.9367 -0.1 + vertex -3.56309 -35.9367 0 + endloop + endfacet + facet normal 0.923982 0.382435 0 + outer loop + vertex -3.56309 -35.9367 -0.1 + vertex -3.41901 -36.2848 0 + vertex -3.41901 -36.2848 -0.1 + endloop + endfacet + facet normal 0.946149 0.323732 0 + outer loop + vertex -3.56309 -35.9367 0 + vertex -3.68783 -35.5721 -0.1 + vertex -3.68783 -35.5721 0 + endloop + endfacet + facet normal 0.946149 0.323732 0 + outer loop + vertex -3.68783 -35.5721 -0.1 + vertex -3.56309 -35.9367 0 + vertex -3.56309 -35.9367 -0.1 + endloop + endfacet + facet normal 0.964131 0.265426 0 + outer loop + vertex -3.68783 -35.5721 0 + vertex -3.79219 -35.193 -0.1 + vertex -3.79219 -35.193 0 + endloop + endfacet + facet normal 0.964131 0.265426 0 + outer loop + vertex -3.79219 -35.193 -0.1 + vertex -3.68783 -35.5721 0 + vertex -3.68783 -35.5721 -0.1 + endloop + endfacet + facet normal 0.978298 0.207204 0 + outer loop + vertex -3.79219 -35.193 0 + vertex -3.87516 -34.8013 -0.1 + vertex -3.87516 -34.8013 0 + endloop + endfacet + facet normal 0.978298 0.207204 0 + outer loop + vertex -3.87516 -34.8013 -0.1 + vertex -3.79219 -35.193 0 + vertex -3.79219 -35.193 -0.1 + endloop + endfacet + facet normal 0.988873 0.148763 0 + outer loop + vertex -3.87516 -34.8013 0 + vertex -3.93569 -34.3989 -0.1 + vertex -3.93569 -34.3989 0 + endloop + endfacet + facet normal 0.988873 0.148763 0 + outer loop + vertex -3.93569 -34.3989 -0.1 + vertex -3.87516 -34.8013 0 + vertex -3.87516 -34.8013 -0.1 + endloop + endfacet + facet normal 0.995959 0.0898073 0 + outer loop + vertex -3.93569 -34.3989 0 + vertex -3.97277 -33.9877 -0.1 + vertex -3.97277 -33.9877 0 + endloop + endfacet + facet normal 0.995959 0.0898073 0 + outer loop + vertex -3.97277 -33.9877 -0.1 + vertex -3.93569 -34.3989 0 + vertex -3.93569 -34.3989 -0.1 + endloop + endfacet + facet normal 0.999547 0.0300979 0 + outer loop + vertex -3.97277 -33.9877 0 + vertex -3.98536 -33.5697 -0.1 + vertex -3.98536 -33.5697 0 + endloop + endfacet + facet normal 0.999547 0.0300979 0 + outer loop + vertex -3.98536 -33.5697 -0.1 + vertex -3.97277 -33.9877 0 + vertex -3.97277 -33.9877 -0.1 + endloop + endfacet + facet normal 0.998925 -0.0463463 0 + outer loop + vertex -3.98536 -33.5697 0 + vertex -3.97004 -33.2395 -0.1 + vertex -3.97004 -33.2395 0 + endloop + endfacet + facet normal 0.998925 -0.0463463 0 + outer loop + vertex -3.97004 -33.2395 -0.1 + vertex -3.98536 -33.5697 0 + vertex -3.98536 -33.5697 -0.1 + endloop + endfacet + facet normal 0.99274 -0.120283 0 + outer loop + vertex -3.97004 -33.2395 0 + vertex -3.92523 -32.8697 -0.1 + vertex -3.92523 -32.8697 0 + endloop + endfacet + facet normal 0.99274 -0.120283 0 + outer loop + vertex -3.92523 -32.8697 -0.1 + vertex -3.97004 -33.2395 0 + vertex -3.97004 -33.2395 -0.1 + endloop + endfacet + facet normal 0.984312 -0.176435 0 + outer loop + vertex -3.92523 -32.8697 0 + vertex -3.8527 -32.4651 -0.1 + vertex -3.8527 -32.4651 0 + endloop + endfacet + facet normal 0.984312 -0.176435 0 + outer loop + vertex -3.8527 -32.4651 -0.1 + vertex -3.92523 -32.8697 0 + vertex -3.92523 -32.8697 -0.1 + endloop + endfacet + facet normal 0.975291 -0.220925 0 + outer loop + vertex -3.8527 -32.4651 0 + vertex -3.75417 -32.0301 -0.1 + vertex -3.75417 -32.0301 0 + endloop + endfacet + facet normal 0.975291 -0.220925 0 + outer loop + vertex -3.75417 -32.0301 -0.1 + vertex -3.8527 -32.4651 0 + vertex -3.8527 -32.4651 -0.1 + endloop + endfacet + facet normal 0.96184 -0.273613 0 + outer loop + vertex -3.75417 -32.0301 0 + vertex -3.4861 -31.0878 -0.1 + vertex -3.4861 -31.0878 0 + endloop + endfacet + facet normal 0.96184 -0.273613 0 + outer loop + vertex -3.4861 -31.0878 -0.1 + vertex -3.75417 -32.0301 0 + vertex -3.75417 -32.0301 -0.1 + endloop + endfacet + facet normal 0.944354 -0.328931 0 + outer loop + vertex -3.4861 -31.0878 0 + vertex -3.135 -30.0798 -0.1 + vertex -3.135 -30.0798 0 + endloop + endfacet + facet normal 0.944354 -0.328931 0 + outer loop + vertex -3.135 -30.0798 -0.1 + vertex -3.4861 -31.0878 0 + vertex -3.4861 -31.0878 -0.1 + endloop + endfacet + facet normal 0.926769 -0.375632 0 + outer loop + vertex -3.135 -30.0798 0 + vertex -2.71481 -29.043 -0.1 + vertex -2.71481 -29.043 0 + endloop + endfacet + facet normal 0.926769 -0.375632 0 + outer loop + vertex -2.71481 -29.043 -0.1 + vertex -3.135 -30.0798 0 + vertex -3.135 -30.0798 -0.1 + endloop + endfacet + facet normal 0.907733 -0.419549 0 + outer loop + vertex -2.71481 -29.043 0 + vertex -2.23947 -28.0146 -0.1 + vertex -2.23947 -28.0146 0 + endloop + endfacet + facet normal 0.907733 -0.419549 0 + outer loop + vertex -2.23947 -28.0146 -0.1 + vertex -2.71481 -29.043 0 + vertex -2.71481 -29.043 -0.1 + endloop + endfacet + facet normal 0.885263 -0.46509 0 + outer loop + vertex -2.23947 -28.0146 0 + vertex -1.72295 -27.0315 -0.1 + vertex -1.72295 -27.0315 0 + endloop + endfacet + facet normal 0.885263 -0.46509 0 + outer loop + vertex -1.72295 -27.0315 -0.1 + vertex -2.23947 -28.0146 0 + vertex -2.23947 -28.0146 -0.1 + endloop + endfacet + facet normal 0.8644 -0.502806 0 + outer loop + vertex -1.72295 -27.0315 0 + vertex -1.45361 -26.5684 -0.1 + vertex -1.45361 -26.5684 0 + endloop + endfacet + facet normal 0.8644 -0.502806 0 + outer loop + vertex -1.45361 -26.5684 -0.1 + vertex -1.72295 -27.0315 0 + vertex -1.72295 -27.0315 -0.1 + endloop + endfacet + facet normal 0.847345 -0.531043 0 + outer loop + vertex -1.45361 -26.5684 0 + vertex -1.17919 -26.1306 -0.1 + vertex -1.17919 -26.1306 0 + endloop + endfacet + facet normal 0.847345 -0.531043 0 + outer loop + vertex -1.17919 -26.1306 -0.1 + vertex -1.45361 -26.5684 0 + vertex -1.45361 -26.5684 -0.1 + endloop + endfacet + facet normal 0.82644 -0.563025 0 + outer loop + vertex -1.17919 -26.1306 0 + vertex -0.875463 -25.6847 -0.1 + vertex -0.875463 -25.6847 0 + endloop + endfacet + facet normal 0.82644 -0.563025 0 + outer loop + vertex -0.875463 -25.6847 -0.1 + vertex -1.17919 -26.1306 0 + vertex -1.17919 -26.1306 -0.1 + endloop + endfacet + facet normal 0.8045 -0.593952 0 + outer loop + vertex -0.875463 -25.6847 0 + vertex -0.546472 -25.2391 -0.1 + vertex -0.546472 -25.2391 0 + endloop + endfacet + facet normal 0.8045 -0.593952 0 + outer loop + vertex -0.546472 -25.2391 -0.1 + vertex -0.875463 -25.6847 0 + vertex -0.875463 -25.6847 -0.1 + endloop + endfacet + facet normal 0.783077 -0.621924 0 + outer loop + vertex -0.546472 -25.2391 0 + vertex -0.194025 -24.7953 -0.1 + vertex -0.194025 -24.7953 0 + endloop + endfacet + facet normal 0.783077 -0.621924 0 + outer loop + vertex -0.194025 -24.7953 -0.1 + vertex -0.546472 -25.2391 0 + vertex -0.546472 -25.2391 -0.1 + endloop + endfacet + facet normal 0.762077 -0.647486 0 + outer loop + vertex -0.194025 -24.7953 0 + vertex 0.18007 -24.355 -0.1 + vertex 0.18007 -24.355 0 + endloop + endfacet + facet normal 0.762077 -0.647486 0 + outer loop + vertex 0.18007 -24.355 -0.1 + vertex -0.194025 -24.7953 0 + vertex -0.194025 -24.7953 -0.1 + endloop + endfacet + facet normal 0.74138 -0.671085 0 + outer loop + vertex 0.18007 -24.355 0 + vertex 0.574011 -23.9198 -0.1 + vertex 0.574011 -23.9198 0 + endloop + endfacet + facet normal 0.74138 -0.671085 0 + outer loop + vertex 0.574011 -23.9198 -0.1 + vertex 0.18007 -24.355 0 + vertex 0.18007 -24.355 -0.1 + endloop + endfacet + facet normal 0.720855 -0.693086 0 + outer loop + vertex 0.574011 -23.9198 0 + vertex 0.985991 -23.4913 -0.1 + vertex 0.985991 -23.4913 0 + endloop + endfacet + facet normal 0.720855 -0.693086 0 + outer loop + vertex 0.985991 -23.4913 -0.1 + vertex 0.574011 -23.9198 0 + vertex 0.574011 -23.9198 -0.1 + endloop + endfacet + facet normal 0.700344 -0.713805 0 + outer loop + vertex 0.985991 -23.4913 -0.1 + vertex 1.4142 -23.0712 0 + vertex 0.985991 -23.4913 0 + endloop + endfacet + facet normal 0.700344 -0.713805 0 + outer loop + vertex 1.4142 -23.0712 0 + vertex 0.985991 -23.4913 -0.1 + vertex 1.4142 -23.0712 -0.1 + endloop + endfacet + facet normal 0.679685 -0.733504 0 + outer loop + vertex 1.4142 -23.0712 -0.1 + vertex 1.85684 -22.661 0 + vertex 1.4142 -23.0712 0 + endloop + endfacet + facet normal 0.679685 -0.733504 0 + outer loop + vertex 1.85684 -22.661 0 + vertex 1.4142 -23.0712 -0.1 + vertex 1.85684 -22.661 -0.1 + endloop + endfacet + facet normal 0.658698 -0.752407 0 + outer loop + vertex 1.85684 -22.661 -0.1 + vertex 2.31211 -22.2625 0 + vertex 1.85684 -22.661 0 + endloop + endfacet + facet normal 0.658698 -0.752407 0 + outer loop + vertex 2.31211 -22.2625 0 + vertex 1.85684 -22.661 -0.1 + vertex 2.31211 -22.2625 -0.1 + endloop + endfacet + facet normal 0.637189 -0.770708 0 + outer loop + vertex 2.31211 -22.2625 -0.1 + vertex 2.77819 -21.8771 0 + vertex 2.31211 -22.2625 0 + endloop + endfacet + facet normal 0.637189 -0.770708 0 + outer loop + vertex 2.77819 -21.8771 0 + vertex 2.31211 -22.2625 -0.1 + vertex 2.77819 -21.8771 -0.1 + endloop + endfacet + facet normal 0.614941 -0.788573 0 + outer loop + vertex 2.77819 -21.8771 -0.1 + vertex 3.25328 -21.5067 0 + vertex 2.77819 -21.8771 0 + endloop + endfacet + facet normal 0.614941 -0.788573 0 + outer loop + vertex 3.25328 -21.5067 0 + vertex 2.77819 -21.8771 -0.1 + vertex 3.25328 -21.5067 -0.1 + endloop + endfacet + facet normal 0.591711 -0.80615 0 + outer loop + vertex 3.25328 -21.5067 -0.1 + vertex 3.73558 -21.1527 0 + vertex 3.25328 -21.5067 0 + endloop + endfacet + facet normal 0.591711 -0.80615 0 + outer loop + vertex 3.73558 -21.1527 0 + vertex 3.25328 -21.5067 -0.1 + vertex 3.73558 -21.1527 -0.1 + endloop + endfacet + facet normal 0.567228 -0.823561 0 + outer loop + vertex 3.73558 -21.1527 -0.1 + vertex 4.22328 -20.8168 0 + vertex 3.73558 -21.1527 0 + endloop + endfacet + facet normal 0.567228 -0.823561 0 + outer loop + vertex 4.22328 -20.8168 0 + vertex 3.73558 -21.1527 -0.1 + vertex 4.22328 -20.8168 -0.1 + endloop + endfacet + facet normal 0.541167 -0.840915 0 + outer loop + vertex 4.22328 -20.8168 -0.1 + vertex 4.71458 -20.5006 0 + vertex 4.22328 -20.8168 0 + endloop + endfacet + facet normal 0.541167 -0.840915 0 + outer loop + vertex 4.71458 -20.5006 0 + vertex 4.22328 -20.8168 -0.1 + vertex 4.71458 -20.5006 -0.1 + endloop + endfacet + facet normal 0.513171 -0.858287 0 + outer loop + vertex 4.71458 -20.5006 -0.1 + vertex 5.20766 -20.2058 0 + vertex 4.71458 -20.5006 0 + endloop + endfacet + facet normal 0.513171 -0.858287 0 + outer loop + vertex 5.20766 -20.2058 0 + vertex 4.71458 -20.5006 -0.1 + vertex 5.20766 -20.2058 -0.1 + endloop + endfacet + facet normal 0.482795 -0.875733 0 + outer loop + vertex 5.20766 -20.2058 -0.1 + vertex 5.70074 -19.9339 0 + vertex 5.20766 -20.2058 0 + endloop + endfacet + facet normal 0.482795 -0.875733 0 + outer loop + vertex 5.70074 -19.9339 0 + vertex 5.20766 -20.2058 -0.1 + vertex 5.70074 -19.9339 -0.1 + endloop + endfacet + facet normal 0.452672 -0.891677 0 + outer loop + vertex 5.70074 -19.9339 -0.1 + vertex 6.07737 -19.7427 0 + vertex 5.70074 -19.9339 0 + endloop + endfacet + facet normal 0.452672 -0.891677 0 + outer loop + vertex 6.07737 -19.7427 0 + vertex 5.70074 -19.9339 -0.1 + vertex 6.07737 -19.7427 -0.1 + endloop + endfacet + facet normal 0.411982 -0.911192 0 + outer loop + vertex 6.07737 -19.7427 -0.1 + vertex 6.41984 -19.5879 0 + vertex 6.07737 -19.7427 0 + endloop + endfacet + facet normal 0.411982 -0.911192 0 + outer loop + vertex 6.41984 -19.5879 0 + vertex 6.07737 -19.7427 -0.1 + vertex 6.41984 -19.5879 -0.1 + endloop + endfacet + facet normal 0.352601 -0.935774 0 + outer loop + vertex 6.41984 -19.5879 -0.1 + vertex 6.74616 -19.4649 0 + vertex 6.41984 -19.5879 0 + endloop + endfacet + facet normal 0.352601 -0.935774 0 + outer loop + vertex 6.74616 -19.4649 0 + vertex 6.41984 -19.5879 -0.1 + vertex 6.74616 -19.4649 -0.1 + endloop + endfacet + facet normal 0.279545 -0.960133 0 + outer loop + vertex 6.74616 -19.4649 -0.1 + vertex 7.07441 -19.3694 0 + vertex 6.74616 -19.4649 0 + endloop + endfacet + facet normal 0.279545 -0.960133 0 + outer loop + vertex 7.07441 -19.3694 0 + vertex 6.74616 -19.4649 -0.1 + vertex 7.07441 -19.3694 -0.1 + endloop + endfacet + facet normal 0.204293 -0.97891 0 + outer loop + vertex 7.07441 -19.3694 -0.1 + vertex 7.42262 -19.2967 0 + vertex 7.07441 -19.3694 0 + endloop + endfacet + facet normal 0.204293 -0.97891 0 + outer loop + vertex 7.42262 -19.2967 0 + vertex 7.07441 -19.3694 -0.1 + vertex 7.42262 -19.2967 -0.1 + endloop + endfacet + facet normal 0.139108 -0.990277 0 + outer loop + vertex 7.42262 -19.2967 -0.1 + vertex 7.80885 -19.2424 0 + vertex 7.42262 -19.2967 0 + endloop + endfacet + facet normal 0.139108 -0.990277 0 + outer loop + vertex 7.80885 -19.2424 0 + vertex 7.42262 -19.2967 -0.1 + vertex 7.80885 -19.2424 -0.1 + endloop + endfacet + facet normal 0.0740931 -0.997251 0 + outer loop + vertex 7.80885 -19.2424 -0.1 + vertex 8.76754 -19.1712 0 + vertex 7.80885 -19.2424 0 + endloop + endfacet + facet normal 0.0740931 -0.997251 0 + outer loop + vertex 8.76754 -19.1712 0 + vertex 7.80885 -19.2424 -0.1 + vertex 8.76754 -19.1712 -0.1 + endloop + endfacet + facet normal 0.0317962 -0.999494 0 + outer loop + vertex 8.76754 -19.1712 -0.1 + vertex 9.72114 -19.1409 0 + vertex 8.76754 -19.1712 0 + endloop + endfacet + facet normal 0.0317962 -0.999494 0 + outer loop + vertex 9.72114 -19.1409 0 + vertex 8.76754 -19.1712 -0.1 + vertex 9.72114 -19.1409 -0.1 + endloop + endfacet + facet normal -0.0248159 -0.999692 0 + outer loop + vertex 9.72114 -19.1409 -0.1 + vertex 10.0711 -19.1496 0 + vertex 9.72114 -19.1409 0 + endloop + endfacet + facet normal -0.0248159 -0.999692 -0 + outer loop + vertex 10.0711 -19.1496 0 + vertex 9.72114 -19.1409 -0.1 + vertex 10.0711 -19.1496 -0.1 + endloop + endfacet + facet normal -0.0963554 -0.995347 0 + outer loop + vertex 10.0711 -19.1496 -0.1 + vertex 10.3591 -19.1774 0 + vertex 10.0711 -19.1496 0 + endloop + endfacet + facet normal -0.0963554 -0.995347 -0 + outer loop + vertex 10.3591 -19.1774 0 + vertex 10.0711 -19.1496 -0.1 + vertex 10.3591 -19.1774 -0.1 + endloop + endfacet + facet normal -0.199823 -0.979832 0 + outer loop + vertex 10.3591 -19.1774 -0.1 + vertex 10.602 -19.227 0 + vertex 10.3591 -19.1774 0 + endloop + endfacet + facet normal -0.199823 -0.979832 -0 + outer loop + vertex 10.602 -19.227 0 + vertex 10.3591 -19.1774 -0.1 + vertex 10.602 -19.227 -0.1 + endloop + endfacet + facet normal -0.324456 -0.945901 0 + outer loop + vertex 10.602 -19.227 -0.1 + vertex 10.8168 -19.3006 0 + vertex 10.602 -19.227 0 + endloop + endfacet + facet normal -0.324456 -0.945901 -0 + outer loop + vertex 10.8168 -19.3006 0 + vertex 10.602 -19.227 -0.1 + vertex 10.8168 -19.3006 -0.1 + endloop + endfacet + facet normal -0.441937 -0.897046 0 + outer loop + vertex 10.8168 -19.3006 -0.1 + vertex 11.0203 -19.4009 0 + vertex 10.8168 -19.3006 0 + endloop + endfacet + facet normal -0.441937 -0.897046 -0 + outer loop + vertex 11.0203 -19.4009 0 + vertex 10.8168 -19.3006 -0.1 + vertex 11.0203 -19.4009 -0.1 + endloop + endfacet + facet normal -0.525875 -0.850562 0 + outer loop + vertex 11.0203 -19.4009 -0.1 + vertex 11.2294 -19.5302 0 + vertex 11.0203 -19.4009 0 + endloop + endfacet + facet normal -0.525875 -0.850562 -0 + outer loop + vertex 11.2294 -19.5302 0 + vertex 11.0203 -19.4009 -0.1 + vertex 11.2294 -19.5302 -0.1 + endloop + endfacet + facet normal -0.518008 -0.855376 0 + outer loop + vertex 11.2294 -19.5302 -0.1 + vertex 11.5538 -19.7266 0 + vertex 11.2294 -19.5302 0 + endloop + endfacet + facet normal -0.518008 -0.855376 -0 + outer loop + vertex 11.5538 -19.7266 0 + vertex 11.2294 -19.5302 -0.1 + vertex 11.5538 -19.7266 -0.1 + endloop + endfacet + facet normal -0.370976 -0.928642 0 + outer loop + vertex 11.5538 -19.7266 -0.1 + vertex 11.7902 -19.8211 0 + vertex 11.5538 -19.7266 0 + endloop + endfacet + facet normal -0.370976 -0.928642 -0 + outer loop + vertex 11.7902 -19.8211 0 + vertex 11.5538 -19.7266 -0.1 + vertex 11.7902 -19.8211 -0.1 + endloop + endfacet + facet normal -0.111982 -0.99371 0 + outer loop + vertex 11.7902 -19.8211 -0.1 + vertex 11.881 -19.8313 0 + vertex 11.7902 -19.8211 0 + endloop + endfacet + facet normal -0.111982 -0.99371 -0 + outer loop + vertex 11.881 -19.8313 0 + vertex 11.7902 -19.8211 -0.1 + vertex 11.881 -19.8313 -0.1 + endloop + endfacet + facet normal 0.179863 -0.983692 0 + outer loop + vertex 11.881 -19.8313 -0.1 + vertex 11.9563 -19.8175 0 + vertex 11.881 -19.8313 0 + endloop + endfacet + facet normal 0.179863 -0.983692 0 + outer loop + vertex 11.9563 -19.8175 0 + vertex 11.881 -19.8313 -0.1 + vertex 11.9563 -19.8175 -0.1 + endloop + endfacet + facet normal 0.514293 -0.857615 0 + outer loop + vertex 11.9563 -19.8175 -0.1 + vertex 12.0185 -19.7802 0 + vertex 11.9563 -19.8175 0 + endloop + endfacet + facet normal 0.514293 -0.857615 0 + outer loop + vertex 12.0185 -19.7802 0 + vertex 11.9563 -19.8175 -0.1 + vertex 12.0185 -19.7802 -0.1 + endloop + endfacet + facet normal 0.762299 -0.647226 0 + outer loop + vertex 12.0185 -19.7802 0 + vertex 12.0697 -19.7199 -0.1 + vertex 12.0697 -19.7199 0 + endloop + endfacet + facet normal 0.762299 -0.647226 0 + outer loop + vertex 12.0697 -19.7199 -0.1 + vertex 12.0185 -19.7802 0 + vertex 12.0185 -19.7802 -0.1 + endloop + endfacet + facet normal 0.887752 -0.460323 0 + outer loop + vertex 12.0697 -19.7199 0 + vertex 12.2803 -19.3138 -0.1 + vertex 12.2803 -19.3138 0 + endloop + endfacet + facet normal 0.887752 -0.460323 0 + outer loop + vertex 12.2803 -19.3138 -0.1 + vertex 12.0697 -19.7199 0 + vertex 12.0697 -19.7199 -0.1 + endloop + endfacet + facet normal 0.914794 -0.403921 0 + outer loop + vertex 12.2803 -19.3138 0 + vertex 12.5806 -18.6336 -0.1 + vertex 12.5806 -18.6336 0 + endloop + endfacet + facet normal 0.914794 -0.403921 0 + outer loop + vertex 12.5806 -18.6336 -0.1 + vertex 12.2803 -19.3138 0 + vertex 12.2803 -19.3138 -0.1 + endloop + endfacet + facet normal 0.927919 -0.372782 0 + outer loop + vertex 12.5806 -18.6336 0 + vertex 13.2984 -16.8469 -0.1 + vertex 13.2984 -16.8469 0 + endloop + endfacet + facet normal 0.927919 -0.372782 0 + outer loop + vertex 13.2984 -16.8469 -0.1 + vertex 12.5806 -18.6336 0 + vertex 12.5806 -18.6336 -0.1 + endloop + endfacet + facet normal 0.936103 -0.351727 0 + outer loop + vertex 13.2984 -16.8469 0 + vertex 13.6397 -15.9386 -0.1 + vertex 13.6397 -15.9386 0 + endloop + endfacet + facet normal 0.936103 -0.351727 0 + outer loop + vertex 13.6397 -15.9386 -0.1 + vertex 13.2984 -16.8469 0 + vertex 13.2984 -16.8469 -0.1 + endloop + endfacet + facet normal 0.9425 -0.334207 0 + outer loop + vertex 13.6397 -15.9386 0 + vertex 13.9185 -15.1524 -0.1 + vertex 13.9185 -15.1524 0 + endloop + endfacet + facet normal 0.9425 -0.334207 0 + outer loop + vertex 13.9185 -15.1524 -0.1 + vertex 13.6397 -15.9386 0 + vertex 13.6397 -15.9386 -0.1 + endloop + endfacet + facet normal 0.953687 -0.300802 0 + outer loop + vertex 13.9185 -15.1524 0 + vertex 14.0967 -14.5873 -0.1 + vertex 14.0967 -14.5873 0 + endloop + endfacet + facet normal 0.953687 -0.300802 0 + outer loop + vertex 14.0967 -14.5873 -0.1 + vertex 13.9185 -15.1524 0 + vertex 13.9185 -15.1524 -0.1 + endloop + endfacet + facet normal 0.97364 -0.22809 0 + outer loop + vertex 14.0967 -14.5873 0 + vertex 14.1362 -14.4186 -0.1 + vertex 14.1362 -14.4186 0 + endloop + endfacet + facet normal 0.97364 -0.22809 0 + outer loop + vertex 14.1362 -14.4186 -0.1 + vertex 14.0967 -14.5873 0 + vertex 14.0967 -14.5873 -0.1 + endloop + endfacet + facet normal 0.999999 -0.00127602 0 + outer loop + vertex 14.1362 -14.4186 0 + vertex 14.1363 -14.3424 -0.1 + vertex 14.1363 -14.3424 0 + endloop + endfacet + facet normal 0.999999 -0.00127602 0 + outer loop + vertex 14.1363 -14.3424 -0.1 + vertex 14.1362 -14.4186 0 + vertex 14.1362 -14.4186 -0.1 + endloop + endfacet + facet normal 0.566913 0.823778 -0 + outer loop + vertex 14.1363 -14.3424 -0.1 + vertex 14.0881 -14.3092 0 + vertex 14.1363 -14.3424 0 + endloop + endfacet + facet normal 0.566913 0.823778 0 + outer loop + vertex 14.0881 -14.3092 0 + vertex 14.1363 -14.3424 -0.1 + vertex 14.0881 -14.3092 -0.1 + endloop + endfacet + facet normal 0.351025 0.936366 -0 + outer loop + vertex 14.0881 -14.3092 -0.1 + vertex 14.0003 -14.2763 0 + vertex 14.0881 -14.3092 0 + endloop + endfacet + facet normal 0.351025 0.936366 0 + outer loop + vertex 14.0003 -14.2763 0 + vertex 14.0881 -14.3092 -0.1 + vertex 14.0003 -14.2763 -0.1 + endloop + endfacet + facet normal 0.218251 0.975893 -0 + outer loop + vertex 14.0003 -14.2763 -0.1 + vertex 13.7222 -14.2141 0 + vertex 14.0003 -14.2763 0 + endloop + endfacet + facet normal 0.218251 0.975893 0 + outer loop + vertex 13.7222 -14.2141 0 + vertex 14.0003 -14.2763 -0.1 + vertex 13.7222 -14.2141 -0.1 + endloop + endfacet + facet normal 0.134641 0.990894 -0 + outer loop + vertex 13.7222 -14.2141 -0.1 + vertex 13.3346 -14.1615 0 + vertex 13.7222 -14.2141 0 + endloop + endfacet + facet normal 0.134641 0.990894 0 + outer loop + vertex 13.3346 -14.1615 0 + vertex 13.7222 -14.2141 -0.1 + vertex 13.3346 -14.1615 -0.1 + endloop + endfacet + facet normal 0.0805571 0.99675 -0 + outer loop + vertex 13.3346 -14.1615 -0.1 + vertex 12.8698 -14.1239 0 + vertex 13.3346 -14.1615 0 + endloop + endfacet + facet normal 0.0805571 0.99675 0 + outer loop + vertex 12.8698 -14.1239 0 + vertex 13.3346 -14.1615 -0.1 + vertex 12.8698 -14.1239 -0.1 + endloop + endfacet + facet normal 0.256285 0.966601 -0 + outer loop + vertex 12.8698 -14.1239 -0.1 + vertex 12.7363 -14.0885 0 + vertex 12.8698 -14.1239 0 + endloop + endfacet + facet normal 0.256285 0.966601 0 + outer loop + vertex 12.7363 -14.0885 0 + vertex 12.8698 -14.1239 -0.1 + vertex 12.7363 -14.0885 -0.1 + endloop + endfacet + facet normal 0.544571 0.838715 -0 + outer loop + vertex 12.7363 -14.0885 -0.1 + vertex 12.6087 -14.0056 0 + vertex 12.7363 -14.0885 0 + endloop + endfacet + facet normal 0.544571 0.838715 0 + outer loop + vertex 12.6087 -14.0056 0 + vertex 12.7363 -14.0885 -0.1 + vertex 12.6087 -14.0056 -0.1 + endloop + endfacet + facet normal 0.739657 0.672985 0 + outer loop + vertex 12.6087 -14.0056 0 + vertex 12.5013 -13.8876 -0.1 + vertex 12.5013 -13.8876 0 + endloop + endfacet + facet normal 0.739657 0.672985 0 + outer loop + vertex 12.5013 -13.8876 -0.1 + vertex 12.6087 -14.0056 0 + vertex 12.6087 -14.0056 -0.1 + endloop + endfacet + facet normal 0.888712 0.458466 0 + outer loop + vertex 12.5013 -13.8876 0 + vertex 12.4287 -13.7469 -0.1 + vertex 12.4287 -13.7469 0 + endloop + endfacet + facet normal 0.888712 0.458466 0 + outer loop + vertex 12.4287 -13.7469 -0.1 + vertex 12.5013 -13.8876 0 + vertex 12.5013 -13.8876 -0.1 + endloop + endfacet + facet normal 0.969282 0.245953 0 + outer loop + vertex 12.4287 -13.7469 0 + vertex 12.3997 -13.6324 -0.1 + vertex 12.3997 -13.6324 0 + endloop + endfacet + facet normal 0.969282 0.245953 0 + outer loop + vertex 12.3997 -13.6324 -0.1 + vertex 12.4287 -13.7469 0 + vertex 12.4287 -13.7469 -0.1 + endloop + endfacet + facet normal 0.995788 0.0916817 0 + outer loop + vertex 12.3997 -13.6324 0 + vertex 12.3889 -13.5153 -0.1 + vertex 12.3889 -13.5153 0 + endloop + endfacet + facet normal 0.995788 0.0916817 0 + outer loop + vertex 12.3889 -13.5153 -0.1 + vertex 12.3997 -13.6324 0 + vertex 12.3997 -13.6324 -0.1 + endloop + endfacet + facet normal 0.99207 -0.12569 0 + outer loop + vertex 12.3889 -13.5153 0 + vertex 12.419 -13.2773 -0.1 + vertex 12.419 -13.2773 0 + endloop + endfacet + facet normal 0.99207 -0.12569 0 + outer loop + vertex 12.419 -13.2773 -0.1 + vertex 12.3889 -13.5153 0 + vertex 12.3889 -13.5153 -0.1 + endloop + endfacet + facet normal 0.929521 -0.368768 0 + outer loop + vertex 12.419 -13.2773 0 + vertex 12.513 -13.0405 -0.1 + vertex 12.513 -13.0405 0 + endloop + endfacet + facet normal 0.929521 -0.368768 0 + outer loop + vertex 12.513 -13.0405 -0.1 + vertex 12.419 -13.2773 0 + vertex 12.419 -13.2773 -0.1 + endloop + endfacet + facet normal 0.832694 -0.553733 0 + outer loop + vertex 12.513 -13.0405 0 + vertex 12.6645 -12.8127 -0.1 + vertex 12.6645 -12.8127 0 + endloop + endfacet + facet normal 0.832694 -0.553733 0 + outer loop + vertex 12.6645 -12.8127 -0.1 + vertex 12.513 -13.0405 0 + vertex 12.513 -13.0405 -0.1 + endloop + endfacet + facet normal 0.721168 -0.69276 0 + outer loop + vertex 12.6645 -12.8127 0 + vertex 12.8673 -12.6015 -0.1 + vertex 12.8673 -12.6015 0 + endloop + endfacet + facet normal 0.721168 -0.69276 0 + outer loop + vertex 12.8673 -12.6015 -0.1 + vertex 12.6645 -12.8127 0 + vertex 12.6645 -12.8127 -0.1 + endloop + endfacet + facet normal 0.601691 -0.798729 0 + outer loop + vertex 12.8673 -12.6015 -0.1 + vertex 13.1153 -12.4148 0 + vertex 12.8673 -12.6015 0 + endloop + endfacet + facet normal 0.601691 -0.798729 0 + outer loop + vertex 13.1153 -12.4148 0 + vertex 12.8673 -12.6015 -0.1 + vertex 13.1153 -12.4148 -0.1 + endloop + endfacet + facet normal 0.474719 -0.880138 0 + outer loop + vertex 13.1153 -12.4148 -0.1 + vertex 13.4022 -12.26 0 + vertex 13.1153 -12.4148 0 + endloop + endfacet + facet normal 0.474719 -0.880138 0 + outer loop + vertex 13.4022 -12.26 0 + vertex 13.1153 -12.4148 -0.1 + vertex 13.4022 -12.26 -0.1 + endloop + endfacet + facet normal 0.33852 -0.940959 0 + outer loop + vertex 13.4022 -12.26 -0.1 + vertex 13.7217 -12.1451 0 + vertex 13.4022 -12.26 0 + endloop + endfacet + facet normal 0.33852 -0.940959 0 + outer loop + vertex 13.7217 -12.1451 0 + vertex 13.4022 -12.26 -0.1 + vertex 13.7217 -12.1451 -0.1 + endloop + endfacet + facet normal 0.283558 -0.958955 0 + outer loop + vertex 13.7217 -12.1451 -0.1 + vertex 16.811 -11.2316 0 + vertex 13.7217 -12.1451 0 + endloop + endfacet + facet normal 0.283558 -0.958955 0 + outer loop + vertex 16.811 -11.2316 0 + vertex 13.7217 -12.1451 -0.1 + vertex 16.811 -11.2316 -0.1 + endloop + endfacet + facet normal 0.280008 -0.959998 0 + outer loop + vertex 16.811 -11.2316 -0.1 + vertex 17.5824 -11.0066 0 + vertex 16.811 -11.2316 0 + endloop + endfacet + facet normal 0.280008 -0.959998 0 + outer loop + vertex 17.5824 -11.0066 0 + vertex 16.811 -11.2316 -0.1 + vertex 17.5824 -11.0066 -0.1 + endloop + endfacet + facet normal 0.251173 -0.967942 0 + outer loop + vertex 17.5824 -11.0066 -0.1 + vertex 18.2126 -10.843 0 + vertex 17.5824 -11.0066 0 + endloop + endfacet + facet normal 0.251173 -0.967942 0 + outer loop + vertex 18.2126 -10.843 0 + vertex 17.5824 -11.0066 -0.1 + vertex 18.2126 -10.843 -0.1 + endloop + endfacet + facet normal 0.200442 -0.979706 0 + outer loop + vertex 18.2126 -10.843 -0.1 + vertex 18.7132 -10.7406 0 + vertex 18.2126 -10.843 0 + endloop + endfacet + facet normal 0.200442 -0.979706 0 + outer loop + vertex 18.7132 -10.7406 0 + vertex 18.2126 -10.843 -0.1 + vertex 18.7132 -10.7406 -0.1 + endloop + endfacet + facet normal 0.10841 -0.994106 0 + outer loop + vertex 18.7132 -10.7406 -0.1 + vertex 19.0963 -10.6988 0 + vertex 18.7132 -10.7406 0 + endloop + endfacet + facet normal 0.10841 -0.994106 0 + outer loop + vertex 19.0963 -10.6988 0 + vertex 18.7132 -10.7406 -0.1 + vertex 19.0963 -10.6988 -0.1 + endloop + endfacet + facet normal -0.0664596 -0.997789 0 + outer loop + vertex 19.0963 -10.6988 -0.1 + vertex 19.3736 -10.7173 0 + vertex 19.0963 -10.6988 0 + endloop + endfacet + facet normal -0.0664596 -0.997789 -0 + outer loop + vertex 19.3736 -10.7173 0 + vertex 19.0963 -10.6988 -0.1 + vertex 19.3736 -10.7173 -0.1 + endloop + endfacet + facet normal -0.172939 0.984933 0 + outer loop + vertex 8.12348 -21.5274 -0.1 + vertex 7.71946 -21.5983 0 + vertex 8.12348 -21.5274 0 + endloop + endfacet + facet normal -0.172939 0.984933 0 + outer loop + vertex 7.71946 -21.5983 0 + vertex 8.12348 -21.5274 -0.1 + vertex 7.71946 -21.5983 -0.1 + endloop + endfacet + facet normal -0.287852 0.957675 0 + outer loop + vertex 7.71946 -21.5983 -0.1 + vertex 7.29763 -21.7251 0 + vertex 7.71946 -21.5983 0 + endloop + endfacet + facet normal -0.287852 0.957675 0 + outer loop + vertex 7.29763 -21.7251 0 + vertex 7.71946 -21.5983 -0.1 + vertex 7.29763 -21.7251 -0.1 + endloop + endfacet + facet normal -0.387479 0.921879 0 + outer loop + vertex 7.29763 -21.7251 -0.1 + vertex 6.8627 -21.9079 0 + vertex 7.29763 -21.7251 0 + endloop + endfacet + facet normal -0.387479 0.921879 0 + outer loop + vertex 6.8627 -21.9079 0 + vertex 7.29763 -21.7251 -0.1 + vertex 6.8627 -21.9079 -0.1 + endloop + endfacet + facet normal -0.474518 0.880246 0 + outer loop + vertex 6.8627 -21.9079 -0.1 + vertex 6.41939 -22.1469 0 + vertex 6.8627 -21.9079 0 + endloop + endfacet + facet normal -0.474518 0.880246 0 + outer loop + vertex 6.41939 -22.1469 0 + vertex 6.8627 -21.9079 -0.1 + vertex 6.41939 -22.1469 -0.1 + endloop + endfacet + facet normal -0.551235 0.83435 0 + outer loop + vertex 6.41939 -22.1469 -0.1 + vertex 5.97241 -22.4422 0 + vertex 6.41939 -22.1469 0 + endloop + endfacet + facet normal -0.551235 0.83435 0 + outer loop + vertex 5.97241 -22.4422 0 + vertex 6.41939 -22.1469 -0.1 + vertex 5.97241 -22.4422 -0.1 + endloop + endfacet + facet normal -0.619368 0.785101 0 + outer loop + vertex 5.97241 -22.4422 -0.1 + vertex 5.52647 -22.794 0 + vertex 5.97241 -22.4422 0 + endloop + endfacet + facet normal -0.619368 0.785101 0 + outer loop + vertex 5.52647 -22.794 0 + vertex 5.97241 -22.4422 -0.1 + vertex 5.52647 -22.794 -0.1 + endloop + endfacet + facet normal -0.680193 0.733033 0 + outer loop + vertex 5.52647 -22.794 -0.1 + vertex 5.08628 -23.2024 0 + vertex 5.52647 -22.794 0 + endloop + endfacet + facet normal -0.680193 0.733033 0 + outer loop + vertex 5.08628 -23.2024 0 + vertex 5.52647 -22.794 -0.1 + vertex 5.08628 -23.2024 -0.1 + endloop + endfacet + facet normal -0.733294 0.679911 0 + outer loop + vertex 4.45147 -23.8871 -0.1 + vertex 5.08628 -23.2024 0 + vertex 5.08628 -23.2024 -0.1 + endloop + endfacet + facet normal -0.733294 0.679911 0 + outer loop + vertex 5.08628 -23.2024 0 + vertex 4.45147 -23.8871 -0.1 + vertex 4.45147 -23.8871 0 + endloop + endfacet + facet normal -0.778151 0.628077 0 + outer loop + vertex 3.85887 -24.6213 -0.1 + vertex 4.45147 -23.8871 0 + vertex 4.45147 -23.8871 -0.1 + endloop + endfacet + facet normal -0.778151 0.628077 0 + outer loop + vertex 4.45147 -23.8871 0 + vertex 3.85887 -24.6213 -0.1 + vertex 3.85887 -24.6213 0 + endloop + endfacet + facet normal -0.816383 0.577511 0 + outer loop + vertex 3.31148 -25.3951 -0.1 + vertex 3.85887 -24.6213 0 + vertex 3.85887 -24.6213 -0.1 + endloop + endfacet + facet normal -0.816383 0.577511 0 + outer loop + vertex 3.85887 -24.6213 0 + vertex 3.31148 -25.3951 -0.1 + vertex 3.31148 -25.3951 0 + endloop + endfacet + facet normal -0.849413 0.527728 0 + outer loop + vertex 2.81229 -26.1986 -0.1 + vertex 3.31148 -25.3951 0 + vertex 3.31148 -25.3951 -0.1 + endloop + endfacet + facet normal -0.849413 0.527728 0 + outer loop + vertex 3.31148 -25.3951 0 + vertex 2.81229 -26.1986 -0.1 + vertex 2.81229 -26.1986 0 + endloop + endfacet + facet normal -0.878359 0.478001 0 + outer loop + vertex 2.36428 -27.0218 -0.1 + vertex 2.81229 -26.1986 0 + vertex 2.81229 -26.1986 -0.1 + endloop + endfacet + facet normal -0.878359 0.478001 0 + outer loop + vertex 2.81229 -26.1986 0 + vertex 2.36428 -27.0218 -0.1 + vertex 2.36428 -27.0218 0 + endloop + endfacet + facet normal -0.904067 0.427391 0 + outer loop + vertex 1.97046 -27.8549 -0.1 + vertex 2.36428 -27.0218 0 + vertex 2.36428 -27.0218 -0.1 + endloop + endfacet + facet normal -0.904067 0.427391 0 + outer loop + vertex 2.36428 -27.0218 0 + vertex 1.97046 -27.8549 -0.1 + vertex 1.97046 -27.8549 0 + endloop + endfacet + facet normal -0.927139 0.374717 0 + outer loop + vertex 1.63381 -28.6878 -0.1 + vertex 1.97046 -27.8549 0 + vertex 1.97046 -27.8549 -0.1 + endloop + endfacet + facet normal -0.927139 0.374717 0 + outer loop + vertex 1.97046 -27.8549 0 + vertex 1.63381 -28.6878 -0.1 + vertex 1.63381 -28.6878 0 + endloop + endfacet + facet normal -0.947927 0.318489 0 + outer loop + vertex 1.35733 -29.5107 -0.1 + vertex 1.63381 -28.6878 0 + vertex 1.63381 -28.6878 -0.1 + endloop + endfacet + facet normal -0.947927 0.318489 0 + outer loop + vertex 1.63381 -28.6878 0 + vertex 1.35733 -29.5107 -0.1 + vertex 1.35733 -29.5107 0 + endloop + endfacet + facet normal -0.966471 0.256775 0 + outer loop + vertex 1.144 -30.3137 -0.1 + vertex 1.35733 -29.5107 0 + vertex 1.35733 -29.5107 -0.1 + endloop + endfacet + facet normal -0.966471 0.256775 0 + outer loop + vertex 1.35733 -29.5107 0 + vertex 1.144 -30.3137 -0.1 + vertex 1.144 -30.3137 0 + endloop + endfacet + facet normal -0.982354 0.187033 0 + outer loop + vertex 0.99682 -31.0867 -0.1 + vertex 1.144 -30.3137 0 + vertex 1.144 -30.3137 -0.1 + endloop + endfacet + facet normal -0.982354 0.187033 0 + outer loop + vertex 1.144 -30.3137 0 + vertex 0.99682 -31.0867 -0.1 + vertex 0.99682 -31.0867 0 + endloop + endfacet + facet normal -0.994383 0.105841 0 + outer loop + vertex 0.918778 -31.8199 -0.1 + vertex 0.99682 -31.0867 0 + vertex 0.99682 -31.0867 -0.1 + endloop + endfacet + facet normal -0.994383 0.105841 0 + outer loop + vertex 0.99682 -31.0867 0 + vertex 0.918778 -31.8199 -0.1 + vertex 0.918778 -31.8199 0 + endloop + endfacet + facet normal -0.999392 0.0348629 0 + outer loop + vertex 0.906618 -32.1685 -0.1 + vertex 0.918778 -31.8199 0 + vertex 0.918778 -31.8199 -0.1 + endloop + endfacet + facet normal -0.999392 0.0348629 0 + outer loop + vertex 0.918778 -31.8199 0 + vertex 0.906618 -32.1685 -0.1 + vertex 0.906618 -32.1685 0 + endloop + endfacet + facet normal -0.999826 -0.0186499 0 + outer loop + vertex 0.912865 -32.5034 -0.1 + vertex 0.906618 -32.1685 0 + vertex 0.906618 -32.1685 -0.1 + endloop + endfacet + facet normal -0.999826 -0.0186499 0 + outer loop + vertex 0.906618 -32.1685 0 + vertex 0.912865 -32.5034 -0.1 + vertex 0.912865 -32.5034 0 + endloop + endfacet + facet normal -0.996955 -0.077982 0 + outer loop + vertex 0.937893 -32.8234 -0.1 + vertex 0.912865 -32.5034 0 + vertex 0.912865 -32.5034 -0.1 + endloop + endfacet + facet normal -0.996955 -0.077982 0 + outer loop + vertex 0.912865 -32.5034 0 + vertex 0.937893 -32.8234 -0.1 + vertex 0.937893 -32.8234 0 + endloop + endfacet + facet normal -0.98959 -0.143913 0 + outer loop + vertex 0.982074 -33.1272 -0.1 + vertex 0.937893 -32.8234 0 + vertex 0.937893 -32.8234 -0.1 + endloop + endfacet + facet normal -0.98959 -0.143913 0 + outer loop + vertex 0.937893 -32.8234 0 + vertex 0.982074 -33.1272 -0.1 + vertex 0.982074 -33.1272 0 + endloop + endfacet + facet normal -0.97614 -0.217144 0 + outer loop + vertex 1.04578 -33.4136 -0.1 + vertex 0.982074 -33.1272 0 + vertex 0.982074 -33.1272 -0.1 + endloop + endfacet + facet normal -0.97614 -0.217144 0 + outer loop + vertex 0.982074 -33.1272 0 + vertex 1.04578 -33.4136 -0.1 + vertex 1.04578 -33.4136 0 + endloop + endfacet + facet normal -0.954541 -0.298078 0 + outer loop + vertex 1.1294 -33.6813 -0.1 + vertex 1.04578 -33.4136 0 + vertex 1.04578 -33.4136 -0.1 + endloop + endfacet + facet normal -0.954541 -0.298078 0 + outer loop + vertex 1.04578 -33.4136 0 + vertex 1.1294 -33.6813 -0.1 + vertex 1.1294 -33.6813 0 + endloop + endfacet + facet normal -0.922268 -0.38655 0 + outer loop + vertex 1.23329 -33.9292 -0.1 + vertex 1.1294 -33.6813 0 + vertex 1.1294 -33.6813 -0.1 + endloop + endfacet + facet normal -0.922268 -0.38655 0 + outer loop + vertex 1.1294 -33.6813 0 + vertex 1.23329 -33.9292 -0.1 + vertex 1.23329 -33.9292 0 + endloop + endfacet + facet normal -0.876493 -0.481415 0 + outer loop + vertex 1.35782 -34.1559 -0.1 + vertex 1.23329 -33.9292 0 + vertex 1.23329 -33.9292 -0.1 + endloop + endfacet + facet normal -0.876493 -0.481415 0 + outer loop + vertex 1.23329 -33.9292 0 + vertex 1.35782 -34.1559 -0.1 + vertex 1.35782 -34.1559 0 + endloop + endfacet + facet normal -0.814521 -0.580134 0 + outer loop + vertex 1.50339 -34.3603 -0.1 + vertex 1.35782 -34.1559 0 + vertex 1.35782 -34.1559 -0.1 + endloop + endfacet + facet normal -0.814521 -0.580134 0 + outer loop + vertex 1.35782 -34.1559 0 + vertex 1.50339 -34.3603 -0.1 + vertex 1.50339 -34.3603 0 + endloop + endfacet + facet normal -0.734597 -0.678504 0 + outer loop + vertex 1.67035 -34.5411 -0.1 + vertex 1.50339 -34.3603 0 + vertex 1.50339 -34.3603 -0.1 + endloop + endfacet + facet normal -0.734597 -0.678504 0 + outer loop + vertex 1.50339 -34.3603 0 + vertex 1.67035 -34.5411 -0.1 + vertex 1.67035 -34.5411 0 + endloop + endfacet + facet normal -0.643892 -0.765116 0 + outer loop + vertex 1.67035 -34.5411 -0.1 + vertex 1.8149 -34.6627 0 + vertex 1.67035 -34.5411 0 + endloop + endfacet + facet normal -0.643892 -0.765116 -0 + outer loop + vertex 1.8149 -34.6627 0 + vertex 1.67035 -34.5411 -0.1 + vertex 1.8149 -34.6627 -0.1 + endloop + endfacet + facet normal -0.554297 -0.832319 0 + outer loop + vertex 1.8149 -34.6627 -0.1 + vertex 1.97535 -34.7696 0 + vertex 1.8149 -34.6627 0 + endloop + endfacet + facet normal -0.554297 -0.832319 -0 + outer loop + vertex 1.97535 -34.7696 0 + vertex 1.8149 -34.6627 -0.1 + vertex 1.97535 -34.7696 -0.1 + endloop + endfacet + facet normal -0.465589 -0.885001 0 + outer loop + vertex 1.97535 -34.7696 -0.1 + vertex 2.15022 -34.8616 0 + vertex 1.97535 -34.7696 0 + endloop + endfacet + facet normal -0.465589 -0.885001 -0 + outer loop + vertex 2.15022 -34.8616 0 + vertex 1.97535 -34.7696 -0.1 + vertex 2.15022 -34.8616 -0.1 + endloop + endfacet + facet normal -0.379703 -0.925108 0 + outer loop + vertex 2.15022 -34.8616 -0.1 + vertex 2.33801 -34.9386 0 + vertex 2.15022 -34.8616 0 + endloop + endfacet + facet normal -0.379703 -0.925108 -0 + outer loop + vertex 2.33801 -34.9386 0 + vertex 2.15022 -34.8616 -0.1 + vertex 2.33801 -34.9386 -0.1 + endloop + endfacet + facet normal -0.297589 -0.954694 0 + outer loop + vertex 2.33801 -34.9386 -0.1 + vertex 2.53723 -35.0007 0 + vertex 2.33801 -34.9386 0 + endloop + endfacet + facet normal -0.297589 -0.954694 -0 + outer loop + vertex 2.53723 -35.0007 0 + vertex 2.33801 -34.9386 -0.1 + vertex 2.53723 -35.0007 -0.1 + endloop + endfacet + facet normal -0.219494 -0.975614 0 + outer loop + vertex 2.53723 -35.0007 -0.1 + vertex 2.7464 -35.0478 0 + vertex 2.53723 -35.0007 0 + endloop + endfacet + facet normal -0.219494 -0.975614 -0 + outer loop + vertex 2.7464 -35.0478 0 + vertex 2.53723 -35.0007 -0.1 + vertex 2.7464 -35.0478 -0.1 + endloop + endfacet + facet normal -0.109599 -0.993976 0 + outer loop + vertex 2.7464 -35.0478 -0.1 + vertex 3.18861 -35.0966 0 + vertex 2.7464 -35.0478 0 + endloop + endfacet + facet normal -0.109599 -0.993976 -0 + outer loop + vertex 3.18861 -35.0966 0 + vertex 2.7464 -35.0478 -0.1 + vertex 3.18861 -35.0966 -0.1 + endloop + endfacet + facet normal 0.0261117 -0.999659 0 + outer loop + vertex 3.18861 -35.0966 -0.1 + vertex 3.65273 -35.0844 0 + vertex 3.18861 -35.0966 0 + endloop + endfacet + facet normal 0.0261117 -0.999659 0 + outer loop + vertex 3.65273 -35.0844 0 + vertex 3.18861 -35.0966 -0.1 + vertex 3.65273 -35.0844 -0.1 + endloop + endfacet + facet normal 0.153159 -0.988202 0 + outer loop + vertex 3.65273 -35.0844 -0.1 + vertex 4.12685 -35.011 0 + vertex 3.65273 -35.0844 0 + endloop + endfacet + facet normal 0.153159 -0.988202 0 + outer loop + vertex 4.12685 -35.011 0 + vertex 3.65273 -35.0844 -0.1 + vertex 4.12685 -35.011 -0.1 + endloop + endfacet + facet normal 0.275485 -0.961305 0 + outer loop + vertex 4.12685 -35.011 -0.1 + vertex 4.59905 -34.8756 0 + vertex 4.12685 -35.011 0 + endloop + endfacet + facet normal 0.275485 -0.961305 0 + outer loop + vertex 4.59905 -34.8756 0 + vertex 4.12685 -35.011 -0.1 + vertex 4.59905 -34.8756 -0.1 + endloop + endfacet + facet normal 0.39595 -0.918272 0 + outer loop + vertex 4.59905 -34.8756 -0.1 + vertex 5.05744 -34.678 0 + vertex 4.59905 -34.8756 0 + endloop + endfacet + facet normal 0.39595 -0.918272 0 + outer loop + vertex 5.05744 -34.678 0 + vertex 4.59905 -34.8756 -0.1 + vertex 5.05744 -34.678 -0.1 + endloop + endfacet + facet normal 0.498797 -0.866719 0 + outer loop + vertex 5.05744 -34.678 -0.1 + vertex 5.41146 -34.4742 0 + vertex 5.05744 -34.678 0 + endloop + endfacet + facet normal 0.498797 -0.866719 0 + outer loop + vertex 5.41146 -34.4742 0 + vertex 5.05744 -34.678 -0.1 + vertex 5.41146 -34.4742 -0.1 + endloop + endfacet + facet normal 0.615093 -0.788455 0 + outer loop + vertex 5.41146 -34.4742 -0.1 + vertex 5.72486 -34.2297 0 + vertex 5.41146 -34.4742 0 + endloop + endfacet + facet normal 0.615093 -0.788455 0 + outer loop + vertex 5.72486 -34.2297 0 + vertex 5.41146 -34.4742 -0.1 + vertex 5.72486 -34.2297 -0.1 + endloop + endfacet + facet normal 0.708025 -0.706188 0 + outer loop + vertex 5.72486 -34.2297 0 + vertex 5.87315 -34.0811 -0.1 + vertex 5.87315 -34.0811 0 + endloop + endfacet + facet normal 0.708025 -0.706188 0 + outer loop + vertex 5.87315 -34.0811 -0.1 + vertex 5.72486 -34.2297 0 + vertex 5.72486 -34.2297 -0.1 + endloop + endfacet + facet normal 0.762128 -0.647427 0 + outer loop + vertex 5.87315 -34.0811 0 + vertex 6.01946 -33.9088 -0.1 + vertex 6.01946 -33.9088 0 + endloop + endfacet + facet normal 0.762128 -0.647427 0 + outer loop + vertex 6.01946 -33.9088 -0.1 + vertex 5.87315 -34.0811 0 + vertex 5.87315 -34.0811 -0.1 + endloop + endfacet + facet normal 0.824099 -0.566446 0 + outer loop + vertex 6.01946 -33.9088 0 + vertex 6.31707 -33.4759 -0.1 + vertex 6.31707 -33.4759 0 + endloop + endfacet + facet normal 0.824099 -0.566446 0 + outer loop + vertex 6.31707 -33.4759 -0.1 + vertex 6.01946 -33.9088 0 + vertex 6.01946 -33.9088 -0.1 + endloop + endfacet + facet normal 0.874277 -0.485427 0 + outer loop + vertex 6.31707 -33.4759 0 + vertex 6.63949 -32.8952 -0.1 + vertex 6.63949 -32.8952 0 + endloop + endfacet + facet normal 0.874277 -0.485427 0 + outer loop + vertex 6.63949 -32.8952 -0.1 + vertex 6.31707 -33.4759 0 + vertex 6.31707 -33.4759 -0.1 + endloop + endfacet + facet normal 0.900468 -0.434923 0 + outer loop + vertex 6.63949 -32.8952 0 + vertex 7.00854 -32.1311 -0.1 + vertex 7.00854 -32.1311 0 + endloop + endfacet + facet normal 0.900468 -0.434923 0 + outer loop + vertex 7.00854 -32.1311 -0.1 + vertex 6.63949 -32.8952 0 + vertex 6.63949 -32.8952 -0.1 + endloop + endfacet + facet normal 0.913625 -0.406558 0 + outer loop + vertex 7.00854 -32.1311 0 + vertex 7.44603 -31.1479 -0.1 + vertex 7.44603 -31.1479 0 + endloop + endfacet + facet normal 0.913625 -0.406558 0 + outer loop + vertex 7.44603 -31.1479 -0.1 + vertex 7.00854 -32.1311 0 + vertex 7.00854 -32.1311 -0.1 + endloop + endfacet + facet normal 0.919886 -0.392186 0 + outer loop + vertex 7.44603 -31.1479 0 + vertex 7.97377 -29.9101 -0.1 + vertex 7.97377 -29.9101 0 + endloop + endfacet + facet normal 0.919886 -0.392186 0 + outer loop + vertex 7.97377 -29.9101 -0.1 + vertex 7.44603 -31.1479 0 + vertex 7.44603 -31.1479 -0.1 + endloop + endfacet + facet normal 0.924332 -0.381588 0 + outer loop + vertex 7.97377 -29.9101 0 + vertex 9.07864 -27.2338 -0.1 + vertex 9.07864 -27.2338 0 + endloop + endfacet + facet normal 0.924332 -0.381588 0 + outer loop + vertex 9.07864 -27.2338 -0.1 + vertex 7.97377 -29.9101 0 + vertex 7.97377 -29.9101 -0.1 + endloop + endfacet + facet normal 0.932155 -0.362059 0 + outer loop + vertex 9.07864 -27.2338 0 + vertex 9.46376 -26.2422 -0.1 + vertex 9.46376 -26.2422 0 + endloop + endfacet + facet normal 0.932155 -0.362059 0 + outer loop + vertex 9.46376 -26.2422 -0.1 + vertex 9.07864 -27.2338 0 + vertex 9.07864 -27.2338 -0.1 + endloop + endfacet + facet normal 0.941332 -0.337483 0 + outer loop + vertex 9.46376 -26.2422 0 + vertex 9.75283 -25.4359 -0.1 + vertex 9.75283 -25.4359 0 + endloop + endfacet + facet normal 0.941332 -0.337483 0 + outer loop + vertex 9.75283 -25.4359 -0.1 + vertex 9.46376 -26.2422 0 + vertex 9.46376 -26.2422 -0.1 + endloop + endfacet + facet normal 0.954562 -0.298012 0 + outer loop + vertex 9.75283 -25.4359 0 + vertex 9.95745 -24.7805 -0.1 + vertex 9.95745 -24.7805 0 + endloop + endfacet + facet normal 0.954562 -0.298012 0 + outer loop + vertex 9.95745 -24.7805 -0.1 + vertex 9.75283 -25.4359 0 + vertex 9.75283 -25.4359 -0.1 + endloop + endfacet + facet normal 0.971378 -0.237537 0 + outer loop + vertex 9.95745 -24.7805 0 + vertex 10.0892 -24.2416 -0.1 + vertex 10.0892 -24.2416 0 + endloop + endfacet + facet normal 0.971378 -0.237537 0 + outer loop + vertex 10.0892 -24.2416 -0.1 + vertex 9.95745 -24.7805 0 + vertex 9.95745 -24.7805 -0.1 + endloop + endfacet + facet normal 0.98828 -0.15265 0 + outer loop + vertex 10.0892 -24.2416 0 + vertex 10.1598 -23.7848 -0.1 + vertex 10.1598 -23.7848 0 + endloop + endfacet + facet normal 0.98828 -0.15265 0 + outer loop + vertex 10.1598 -23.7848 -0.1 + vertex 10.0892 -24.2416 0 + vertex 10.0892 -24.2416 -0.1 + endloop + endfacet + facet normal 0.998693 -0.0511194 0 + outer loop + vertex 10.1598 -23.7848 0 + vertex 10.1807 -23.3758 -0.1 + vertex 10.1807 -23.3758 0 + endloop + endfacet + facet normal 0.998693 -0.0511194 0 + outer loop + vertex 10.1807 -23.3758 -0.1 + vertex 10.1598 -23.7848 0 + vertex 10.1598 -23.7848 -0.1 + endloop + endfacet + facet normal 0.997227 0.0744219 0 + outer loop + vertex 10.1807 -23.3758 0 + vertex 10.149 -22.9513 -0.1 + vertex 10.149 -22.9513 0 + endloop + endfacet + facet normal 0.997227 0.0744219 0 + outer loop + vertex 10.149 -22.9513 -0.1 + vertex 10.1807 -23.3758 0 + vertex 10.1807 -23.3758 -0.1 + endloop + endfacet + facet normal 0.980241 0.197806 0 + outer loop + vertex 10.149 -22.9513 0 + vertex 10.1103 -22.7594 -0.1 + vertex 10.1103 -22.7594 0 + endloop + endfacet + facet normal 0.980241 0.197806 0 + outer loop + vertex 10.1103 -22.7594 -0.1 + vertex 10.149 -22.9513 0 + vertex 10.149 -22.9513 -0.1 + endloop + endfacet + facet normal 0.958253 0.285922 0 + outer loop + vertex 10.1103 -22.7594 0 + vertex 10.0571 -22.5812 -0.1 + vertex 10.0571 -22.5812 0 + endloop + endfacet + facet normal 0.958253 0.285922 0 + outer loop + vertex 10.0571 -22.5812 -0.1 + vertex 10.1103 -22.7594 0 + vertex 10.1103 -22.7594 -0.1 + endloop + endfacet + facet normal 0.926088 0.377307 0 + outer loop + vertex 10.0571 -22.5812 0 + vertex 9.99008 -22.4166 -0.1 + vertex 9.99008 -22.4166 0 + endloop + endfacet + facet normal 0.926088 0.377307 0 + outer loop + vertex 9.99008 -22.4166 -0.1 + vertex 10.0571 -22.5812 0 + vertex 10.0571 -22.5812 -0.1 + endloop + endfacet + facet normal 0.882715 0.469908 0 + outer loop + vertex 9.99008 -22.4166 0 + vertex 9.90973 -22.2656 -0.1 + vertex 9.90973 -22.2656 0 + endloop + endfacet + facet normal 0.882715 0.469908 0 + outer loop + vertex 9.90973 -22.2656 -0.1 + vertex 9.99008 -22.4166 0 + vertex 9.99008 -22.4166 -0.1 + endloop + endfacet + facet normal 0.827725 0.561134 0 + outer loop + vertex 9.90973 -22.2656 0 + vertex 9.81668 -22.1284 -0.1 + vertex 9.81668 -22.1284 0 + endloop + endfacet + facet normal 0.827725 0.561134 0 + outer loop + vertex 9.81668 -22.1284 -0.1 + vertex 9.90973 -22.2656 0 + vertex 9.90973 -22.2656 -0.1 + endloop + endfacet + facet normal 0.761518 0.648143 0 + outer loop + vertex 9.81668 -22.1284 0 + vertex 9.71152 -22.0048 -0.1 + vertex 9.71152 -22.0048 0 + endloop + endfacet + facet normal 0.761518 0.648143 0 + outer loop + vertex 9.71152 -22.0048 -0.1 + vertex 9.81668 -22.1284 0 + vertex 9.81668 -22.1284 -0.1 + endloop + endfacet + facet normal 0.685415 0.728153 -0 + outer loop + vertex 9.71152 -22.0048 -0.1 + vertex 9.59484 -21.895 0 + vertex 9.71152 -22.0048 0 + endloop + endfacet + facet normal 0.685415 0.728153 0 + outer loop + vertex 9.59484 -21.895 0 + vertex 9.71152 -22.0048 -0.1 + vertex 9.59484 -21.895 -0.1 + endloop + endfacet + facet normal 0.601514 0.798862 -0 + outer loop + vertex 9.59484 -21.895 -0.1 + vertex 9.46723 -21.7989 0 + vertex 9.59484 -21.895 0 + endloop + endfacet + facet normal 0.601514 0.798862 0 + outer loop + vertex 9.46723 -21.7989 0 + vertex 9.59484 -21.895 -0.1 + vertex 9.46723 -21.7989 -0.1 + endloop + endfacet + facet normal 0.467006 0.884254 -0 + outer loop + vertex 9.46723 -21.7989 -0.1 + vertex 9.18157 -21.6481 0 + vertex 9.46723 -21.7989 0 + endloop + endfacet + facet normal 0.467006 0.884254 0 + outer loop + vertex 9.18157 -21.6481 0 + vertex 9.46723 -21.7989 -0.1 + vertex 9.18157 -21.6481 -0.1 + endloop + endfacet + facet normal 0.284506 0.958674 -0 + outer loop + vertex 9.18157 -21.6481 -0.1 + vertex 8.85925 -21.5524 0 + vertex 9.18157 -21.6481 0 + endloop + endfacet + facet normal 0.284506 0.958674 0 + outer loop + vertex 8.85925 -21.5524 0 + vertex 9.18157 -21.6481 -0.1 + vertex 8.85925 -21.5524 -0.1 + endloop + endfacet + facet normal 0.112981 0.993597 -0 + outer loop + vertex 8.85925 -21.5524 -0.1 + vertex 8.50498 -21.5121 0 + vertex 8.85925 -21.5524 0 + endloop + endfacet + facet normal 0.112981 0.993597 0 + outer loop + vertex 8.50498 -21.5121 0 + vertex 8.85925 -21.5524 -0.1 + vertex 8.50498 -21.5121 -0.1 + endloop + endfacet + facet normal -0.039935 0.999202 0 + outer loop + vertex 8.50498 -21.5121 -0.1 + vertex 8.12348 -21.5274 0 + vertex 8.50498 -21.5121 0 + endloop + endfacet + facet normal -0.039935 0.999202 0 + outer loop + vertex 8.12348 -21.5274 0 + vertex 8.50498 -21.5121 -0.1 + vertex 8.12348 -21.5274 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.1179 -30.7807 -0.1 + vertex 30.2299 -31.0524 -0.1 + vertex 30.2187 -30.9454 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.1179 -30.7807 -0.1 + vertex 30.2187 -30.9454 -0.1 + vertex 30.1812 -30.855 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.2299 -31.0524 -0.1 + vertex 30.1179 -30.7807 -0.1 + vertex 30.2146 -31.1764 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.2146 -31.1764 -0.1 + vertex 30.1179 -30.7807 -0.1 + vertex 30.1726 -31.3179 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.9008 -30.6099 -0.1 + vertex 30.1726 -31.3179 -0.1 + vertex 30.1179 -30.7807 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.1726 -31.3179 -0.1 + vertex 29.9008 -30.6099 -0.1 + vertex 30.1034 -31.4773 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.7002 -30.4984 -0.1 + vertex 30.1034 -31.4773 -0.1 + vertex 29.9008 -30.6099 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.1034 -31.4773 -0.1 + vertex 29.7002 -30.4984 -0.1 + vertex 29.0845 -30.5466 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.8369 -30.6989 -0.1 + vertex 30.1034 -31.4773 -0.1 + vertex 29.0845 -30.5466 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.3033 -30.4642 -0.1 + vertex 29.7002 -30.4984 -0.1 + vertex 29.5048 -30.449 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.7002 -30.4984 -0.1 + vertex 29.3033 -30.4642 -0.1 + vertex 29.0845 -30.5466 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.1034 -31.4773 -0.1 + vertex 28.8369 -30.6989 -0.1 + vertex 29.8827 -31.8517 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.5495 -30.9236 -0.1 + vertex 29.8827 -31.8517 -0.1 + vertex 28.8369 -30.6989 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.8827 -31.8517 -0.1 + vertex 28.5495 -30.9236 -0.1 + vertex 29.5499 -32.3032 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.2108 -31.2235 -0.1 + vertex 29.5499 -32.3032 -0.1 + vertex 28.5495 -30.9236 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.5499 -32.3032 -0.1 + vertex 28.2108 -31.2235 -0.1 + vertex 29.1028 -32.8352 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.276 -32.055 -0.1 + vertex 29.1028 -32.8352 -0.1 + vertex 28.2108 -31.2235 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.1028 -32.8352 -0.1 + vertex 27.276 -32.055 -0.1 + vertex 28.539 -33.4515 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.539 -33.4515 -0.1 + vertex 27.276 -32.055 -0.1 + vertex 27.856 -34.1555 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.4309 -32.7448 -0.1 + vertex 27.856 -34.1555 -0.1 + vertex 27.276 -32.055 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.856 -34.1555 -0.1 + vertex 26.4309 -32.7448 -0.1 + vertex 27.3514 -34.6537 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.6577 -33.3022 -0.1 + vertex 27.3514 -34.6537 -0.1 + vertex 26.4309 -32.7448 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3514 -34.6537 -0.1 + vertex 25.6577 -33.3022 -0.1 + vertex 26.8832 -35.0925 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.2926 -33.5342 -0.1 + vertex 26.8832 -35.0925 -0.1 + vertex 25.6577 -33.3022 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.8832 -35.0925 -0.1 + vertex 25.2926 -33.5342 -0.1 + vertex 26.4377 -35.4824 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.9388 -33.7368 -0.1 + vertex 26.4377 -35.4824 -0.1 + vertex 25.2926 -33.5342 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.4377 -35.4824 -0.1 + vertex 24.9388 -33.7368 -0.1 + vertex 26.0012 -35.834 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.5942 -33.911 -0.1 + vertex 26.0012 -35.834 -0.1 + vertex 24.9388 -33.7368 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0012 -35.834 -0.1 + vertex 24.5942 -33.911 -0.1 + vertex 25.5601 -36.1579 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.2566 -34.0582 -0.1 + vertex 25.5601 -36.1579 -0.1 + vertex 24.5942 -33.911 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.5601 -36.1579 -0.1 + vertex 24.2566 -34.0582 -0.1 + vertex 25.1006 -36.4644 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.9237 -34.1793 -0.1 + vertex 25.1006 -36.4644 -0.1 + vertex 24.2566 -34.0582 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.1006 -36.4644 -0.1 + vertex 23.9237 -34.1793 -0.1 + vertex 24.6091 -36.7642 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.5933 -34.2758 -0.1 + vertex 24.6091 -36.7642 -0.1 + vertex 23.9237 -34.1793 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.2634 -34.3487 -0.1 + vertex 24.6091 -36.7642 -0.1 + vertex 23.5933 -34.2758 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6091 -36.7642 -0.1 + vertex 23.2634 -34.3487 -0.1 + vertex 24.0719 -37.0678 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.9315 -34.3992 -0.1 + vertex 24.0719 -37.0678 -0.1 + vertex 23.2634 -34.3487 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.0719 -37.0678 -0.1 + vertex 22.9315 -34.3992 -0.1 + vertex 23.2902 -37.4839 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.5956 -34.4285 -0.1 + vertex 23.2902 -37.4839 -0.1 + vertex 22.9315 -34.3992 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.2534 -34.4379 -0.1 + vertex 23.2902 -37.4839 -0.1 + vertex 22.5956 -34.4285 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.2902 -37.4839 -0.1 + vertex 22.2534 -34.4379 -0.1 + vertex 22.6041 -37.8201 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.8355 -34.4151 -0.1 + vertex 22.6041 -37.8201 -0.1 + vertex 22.2534 -34.4379 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.6041 -37.8201 -0.1 + vertex 21.8355 -34.4151 -0.1 + vertex 21.9889 -38.084 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.43 -34.349 -0.1 + vertex 21.9889 -38.084 -0.1 + vertex 21.8355 -34.4151 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.43 -34.349 -0.1 + vertex 21.4197 -38.2833 -0.1 + vertex 21.9889 -38.084 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0421 -34.2419 -0.1 + vertex 21.4197 -38.2833 -0.1 + vertex 21.43 -34.349 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0421 -34.2419 -0.1 + vertex 20.8717 -38.4255 -0.1 + vertex 21.4197 -38.2833 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3202 -38.5182 -0.1 + vertex 21.0421 -34.2419 -0.1 + vertex 20.6768 -34.0963 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7403 -38.5689 -0.1 + vertex 20.6768 -34.0963 -0.1 + vertex 20.3392 -33.9144 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0421 -34.2419 -0.1 + vertex 20.3202 -38.5182 -0.1 + vertex 20.8717 -38.4255 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4669 -38.5591 -0.1 + vertex 20.3392 -33.9144 -0.1 + vertex 20.0345 -33.6987 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.8529 -38.0675 -0.1 + vertex 20.0345 -33.6987 -0.1 + vertex 19.7677 -33.4516 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.6768 -34.0963 -0.1 + vertex 19.7403 -38.5689 -0.1 + vertex 20.3202 -38.5182 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.927 -35.9398 -0.1 + vertex 19.7677 -33.4516 -0.1 + vertex 19.5439 -33.1754 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.6774 -34.4466 -0.1 + vertex 19.5439 -33.1754 -0.1 + vertex 19.466 -33.0295 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.6656 -33.913 -0.1 + vertex 19.466 -33.0295 -0.1 + vertex 19.403 -32.8415 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.73 -32.8205 -0.1 + vertex 19.403 -32.8415 -0.1 + vertex 19.3545 -32.6156 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.8056 -32.2631 -0.1 + vertex 19.3545 -32.6156 -0.1 + vertex 19.3203 -32.3556 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3392 -33.9144 -0.1 + vertex 19.1073 -38.5852 -0.1 + vertex 19.7403 -38.5689 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9098 -31.6993 -0.1 + vertex 19.3203 -32.3556 -0.1 + vertex 19.2935 -31.7496 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4186 -23.1088 -0.1 + vertex 32.0619 -22.7991 -0.1 + vertex 32.0349 -22.2828 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 32.0619 -22.7991 -0.1 + vertex 27.4186 -23.1088 -0.1 + vertex 32.0372 -23.3848 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3785 -22.8574 -0.1 + vertex 32.0349 -22.2828 -0.1 + vertex 31.9549 -21.8223 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 27.4312 -23.3865 -0.1 + vertex 32.0372 -23.3848 -0.1 + vertex 27.4186 -23.1088 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3785 -22.8574 -0.1 + vertex 31.9549 -21.8223 -0.1 + vertex 31.8204 -21.404 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.4161 -23.6904 -0.1 + vertex 31.9625 -24.0535 -0.1 + vertex 27.4312 -23.3865 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3785 -22.8574 -0.1 + vertex 31.8204 -21.404 -0.1 + vertex 31.6298 -21.0145 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.9625 -24.0535 -0.1 + vertex 27.4161 -23.6904 -0.1 + vertex 31.8392 -24.8188 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.373 -24.0204 -0.1 + vertex 31.8392 -24.8188 -0.1 + vertex 27.4161 -23.6904 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.8392 -24.8188 -0.1 + vertex 27.2401 -24.8188 -0.1 + vertex 31.6784 -25.7224 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3785 -22.8574 -0.1 + vertex 31.6298 -21.0145 -0.1 + vertex 31.3816 -20.64 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2401 -24.8188 -0.1 + vertex 31.8392 -24.8188 -0.1 + vertex 27.373 -24.0204 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3111 -22.6325 -0.1 + vertex 31.3816 -20.64 -0.1 + vertex 31.074 -20.2742 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 29.58 -27.3827 -0.1 + vertex 31.6784 -25.7224 -0.1 + vertex 27.2401 -24.8188 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 30.0709 -27.3331 -0.1 + vertex 31.6784 -25.7224 -0.1 + vertex 29.58 -27.3827 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3111 -22.6325 -0.1 + vertex 31.074 -20.2742 -0.1 + vertex 30.7365 -19.9631 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 30.4717 -27.2602 -0.1 + vertex 31.6003 -26.0834 -0.1 + vertex 30.0709 -27.3331 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3111 -22.6325 -0.1 + vertex 30.7365 -19.9631 -0.1 + vertex 30.3649 -19.705 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 30.7934 -27.1595 -0.1 + vertex 31.5092 -26.3899 -0.1 + vertex 30.4717 -27.2602 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2166 -22.4344 -0.1 + vertex 30.3649 -19.705 -0.1 + vertex 29.9546 -19.4981 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 31.047 -27.0266 -0.1 + vertex 31.3939 -26.6463 -0.1 + vertex 30.7934 -27.1595 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2166 -22.4344 -0.1 + vertex 29.9546 -19.4981 -0.1 + vertex 29.5013 -19.3404 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2166 -22.4344 -0.1 + vertex 29.5013 -19.3404 -0.1 + vertex 29.0007 -19.2301 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.3939 -26.6463 -0.1 + vertex 31.047 -27.0266 -0.1 + vertex 31.2435 -26.857 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.0952 -22.2631 -0.1 + vertex 29.0007 -19.2301 -0.1 + vertex 28.4483 -19.1654 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9471 -22.1189 -0.1 + vertex 28.4483 -19.1654 -0.1 + vertex 27.8398 -19.1444 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 32.0372 -23.3848 -0.1 + vertex 27.4312 -23.3865 -0.1 + vertex 31.9625 -24.0535 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.6003 -26.0834 -0.1 + vertex 30.4717 -27.2602 -0.1 + vertex 31.5092 -26.3899 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.5092 -26.3899 -0.1 + vertex 30.7934 -27.1595 -0.1 + vertex 31.3939 -26.6463 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 32.0349 -22.2828 -0.1 + vertex 27.3785 -22.8574 -0.1 + vertex 27.4186 -23.1088 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.3816 -20.64 -0.1 + vertex 27.3111 -22.6325 -0.1 + vertex 27.3785 -22.8574 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.3649 -19.705 -0.1 + vertex 27.2166 -22.4344 -0.1 + vertex 27.3111 -22.6325 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7726 -22.0019 -0.1 + vertex 27.8398 -19.1444 -0.1 + vertex 27.1629 -19.1581 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.0007 -19.2301 -0.1 + vertex 27.0952 -22.2631 -0.1 + vertex 27.2166 -22.4344 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.4483 -19.1654 -0.1 + vertex 26.9471 -22.1189 -0.1 + vertex 27.0952 -22.2631 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.8398 -19.1444 -0.1 + vertex 26.7726 -22.0019 -0.1 + vertex 26.9471 -22.1189 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.1629 -19.1581 -0.1 + vertex 26.5717 -21.9122 -0.1 + vertex 26.7726 -22.0019 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.5531 -19.2026 -0.1 + vertex 26.5717 -21.9122 -0.1 + vertex 27.1629 -19.1581 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.5531 -19.2026 -0.1 + vertex 26.3449 -21.8501 -0.1 + vertex 26.5717 -21.9122 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.9886 -19.284 -0.1 + vertex 26.3449 -21.8501 -0.1 + vertex 26.5531 -19.2026 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.3449 -21.8501 -0.1 + vertex 25.9886 -19.284 -0.1 + vertex 26.0922 -21.8157 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.4477 -19.4082 -0.1 + vertex 26.0922 -21.8157 -0.1 + vertex 25.9886 -19.284 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0922 -21.8157 -0.1 + vertex 25.4477 -19.4082 -0.1 + vertex 25.8138 -21.8092 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.8138 -21.8092 -0.1 + vertex 25.4477 -19.4082 -0.1 + vertex 25.51 -21.8307 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.9086 -19.5812 -0.1 + vertex 25.51 -21.8307 -0.1 + vertex 25.4477 -19.4082 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.51 -21.8307 -0.1 + vertex 24.9086 -19.5812 -0.1 + vertex 25.181 -21.8805 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.3497 -19.8089 -0.1 + vertex 25.181 -21.8805 -0.1 + vertex 24.9086 -19.5812 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.181 -21.8805 -0.1 + vertex 24.3497 -19.8089 -0.1 + vertex 24.827 -21.9586 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.7493 -20.0973 -0.1 + vertex 24.827 -21.9586 -0.1 + vertex 24.3497 -19.8089 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.827 -21.9586 -0.1 + vertex 23.7493 -20.0973 -0.1 + vertex 24.5319 -22.0421 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.5319 -22.0421 -0.1 + vertex 23.7493 -20.0973 -0.1 + vertex 24.2621 -22.1397 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.0854 -20.4525 -0.1 + vertex 24.2621 -22.1397 -0.1 + vertex 23.7493 -20.0973 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2621 -22.1397 -0.1 + vertex 23.0854 -20.4525 -0.1 + vertex 24.0091 -22.2567 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.0091 -22.2567 -0.1 + vertex 23.0854 -20.4525 -0.1 + vertex 23.7644 -22.3987 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.3543 -20.8886 -0.1 + vertex 23.7644 -22.3987 -0.1 + vertex 23.0854 -20.4525 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.7644 -22.3987 -0.1 + vertex 22.3543 -20.8886 -0.1 + vertex 23.5194 -22.5712 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.5194 -22.5712 -0.1 + vertex 22.3543 -20.8886 -0.1 + vertex 23.2657 -22.7795 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.6485 -21.3703 -0.1 + vertex 23.2657 -22.7795 -0.1 + vertex 22.3543 -20.8886 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.2657 -22.7795 -0.1 + vertex 21.6485 -21.3703 -0.1 + vertex 22.6979 -23.3258 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 20.9665 -21.899 -0.1 + vertex 22.6979 -23.3258 -0.1 + vertex 21.6485 -21.3703 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.6979 -23.3258 -0.1 + vertex 20.9665 -21.899 -0.1 + vertex 22.2832 -23.7683 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 20.3071 -22.4759 -0.1 + vertex 22.2832 -23.7683 -0.1 + vertex 20.9665 -21.899 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.2832 -23.7683 -0.1 + vertex 20.3071 -22.4759 -0.1 + vertex 21.9437 -24.1601 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.9437 -24.1601 -0.1 + vertex 20.3071 -22.4759 -0.1 + vertex 21.7143 -24.4589 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.6689 -23.1024 -0.1 + vertex 21.7143 -24.4589 -0.1 + vertex 20.3071 -22.4759 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.6784 -25.7224 -0.1 + vertex 30.0709 -27.3331 -0.1 + vertex 31.6003 -26.0834 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.58 -27.3827 -0.1 + vertex 27.2401 -24.8188 -0.1 + vertex 28.988 -27.4135 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.988 -27.4135 -0.1 + vertex 27.2401 -24.8188 -0.1 + vertex 27.4568 -27.4364 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2401 -24.8188 -0.1 + vertex 25.3891 -27.4375 -0.1 + vertex 27.4568 -27.4364 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.435 -24.8188 -0.1 + vertex 25.3891 -27.4375 -0.1 + vertex 27.2401 -24.8188 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.3459 -24.8032 -0.1 + vertex 25.3891 -27.4375 -0.1 + vertex 24.435 -24.8188 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.454 -24.761 -0.1 + vertex 25.3891 -27.4375 -0.1 + vertex 23.3459 -24.8032 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.1247 -27.4424 -0.1 + vertex 22.454 -24.761 -0.1 + vertex 21.8514 -24.6984 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.1247 -27.4424 -0.1 + vertex 21.8514 -24.6984 -0.1 + vertex 21.6873 -24.6616 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.1247 -27.4424 -0.1 + vertex 21.6873 -24.6616 -0.1 + vertex 21.63 -24.6221 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.7143 -24.4589 -0.1 + vertex 19.6689 -23.1024 -0.1 + vertex 21.6518 -24.5601 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.454 -24.761 -0.1 + vertex 20.1247 -27.4424 -0.1 + vertex 25.3891 -27.4375 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.6518 -24.5601 -0.1 + vertex 19.6689 -23.1024 -0.1 + vertex 21.63 -24.6221 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.0503 -23.7798 -0.1 + vertex 21.63 -24.6221 -0.1 + vertex 19.6689 -23.1024 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.4501 -24.5093 -0.1 + vertex 21.63 -24.6221 -0.1 + vertex 19.0503 -23.7798 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.63 -24.6221 -0.1 + vertex 18.4501 -24.5093 -0.1 + vertex 20.1247 -27.4424 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 17.8667 -25.2923 -0.1 + vertex 20.1247 -27.4424 -0.1 + vertex 18.4501 -24.5093 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 17.4656 -25.8764 -0.1 + vertex 20.1247 -27.4424 -0.1 + vertex 17.8667 -25.2923 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 17.0901 -26.4624 -0.1 + vertex 20.1247 -27.4424 -0.1 + vertex 17.4656 -25.8764 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.1247 -27.4424 -0.1 + vertex 17.0901 -26.4624 -0.1 + vertex 19.9171 -28.0436 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 16.7406 -27.0496 -0.1 + vertex 19.9171 -28.0436 -0.1 + vertex 17.0901 -26.4624 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.9171 -28.0436 -0.1 + vertex 16.7406 -27.0496 -0.1 + vertex 19.6992 -28.7679 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 16.4172 -27.6373 -0.1 + vertex 19.6992 -28.7679 -0.1 + vertex 16.7406 -27.0496 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6992 -28.7679 -0.1 + vertex 16.4172 -27.6373 -0.1 + vertex 19.5256 -29.5327 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 16.1203 -28.2246 -0.1 + vertex 19.5256 -29.5327 -0.1 + vertex 16.4172 -27.6373 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.8502 -28.8109 -0.1 + vertex 19.5256 -29.5327 -0.1 + vertex 16.1203 -28.2246 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5256 -29.5327 -0.1 + vertex 15.8502 -28.8109 -0.1 + vertex 19.3985 -30.306 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.6071 -29.3953 -0.1 + vertex 19.3985 -30.306 -0.1 + vertex 15.8502 -28.8109 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.3912 -29.9771 -0.1 + vertex 19.3985 -30.306 -0.1 + vertex 15.6071 -29.3953 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3985 -30.306 -0.1 + vertex 15.3912 -29.9771 -0.1 + vertex 19.3204 -31.0557 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.2028 -30.5555 -0.1 + vertex 19.3204 -31.0557 -0.1 + vertex 15.3912 -29.9771 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3204 -31.0557 -0.1 + vertex 15.2028 -30.5555 -0.1 + vertex 19.2935 -31.7496 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.0423 -31.1299 -0.1 + vertex 19.2935 -31.7496 -0.1 + vertex 15.2028 -30.5555 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.9098 -31.6993 -0.1 + vertex 19.2935 -31.7496 -0.1 + vertex 15.0423 -31.1299 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3203 -32.3556 -0.1 + vertex 14.9098 -31.6993 -0.1 + vertex 14.8056 -32.2631 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3545 -32.6156 -0.1 + vertex 14.8056 -32.2631 -0.1 + vertex 14.73 -32.8205 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.403 -32.8415 -0.1 + vertex 14.73 -32.8205 -0.1 + vertex 14.6832 -33.3707 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.403 -32.8415 -0.1 + vertex 14.6832 -33.3707 -0.1 + vertex 14.6656 -33.913 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.466 -33.0295 -0.1 + vertex 14.6656 -33.913 -0.1 + vertex 14.6774 -34.4466 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5439 -33.1754 -0.1 + vertex 14.6774 -34.4466 -0.1 + vertex 14.7369 -35.0944 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3392 -33.9144 -0.1 + vertex 18.4669 -38.5591 -0.1 + vertex 19.1073 -38.5852 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0345 -33.6987 -0.1 + vertex 18.1792 -38.5233 -0.1 + vertex 18.4669 -38.5591 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0345 -33.6987 -0.1 + vertex 17.9062 -38.4707 -0.1 + vertex 18.1792 -38.5233 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0345 -33.6987 -0.1 + vertex 17.6424 -38.4 -0.1 + vertex 17.9062 -38.4707 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0345 -33.6987 -0.1 + vertex 17.3825 -38.3101 -0.1 + vertex 17.6424 -38.4 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0345 -33.6987 -0.1 + vertex 17.1211 -38.1997 -0.1 + vertex 17.3825 -38.3101 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0345 -33.6987 -0.1 + vertex 16.8529 -38.0675 -0.1 + vertex 17.1211 -38.1997 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5439 -33.1754 -0.1 + vertex 14.7369 -35.0944 -0.1 + vertex 14.8496 -35.6738 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 16.342 -37.7658 -0.1 + vertex 16.8529 -38.0675 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5439 -33.1754 -0.1 + vertex 14.8496 -35.6738 -0.1 + vertex 14.927 -35.9398 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 16.1153 -37.6039 -0.1 + vertex 16.342 -37.7658 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 15.907 -37.4336 -0.1 + vertex 16.1153 -37.6039 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 15.7167 -37.2541 -0.1 + vertex 15.907 -37.4336 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 15.544 -37.0647 -0.1 + vertex 15.7167 -37.2541 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 15.3884 -36.8644 -0.1 + vertex 15.544 -37.0647 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 15.2493 -36.6526 -0.1 + vertex 15.3884 -36.8644 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 15.1264 -36.4284 -0.1 + vertex 15.2493 -36.6526 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 14.927 -35.9398 -0.1 + vertex 15.0191 -36.1911 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 15.0191 -36.1911 -0.1 + vertex 15.1264 -36.4284 -0.1 + endloop + endfacet + facet normal -0.116346 -0.993209 0 + outer loop + vertex 28.4483 -19.1654 -0.1 + vertex 29.0007 -19.2301 0 + vertex 28.4483 -19.1654 0 + endloop + endfacet + facet normal -0.116346 -0.993209 -0 + outer loop + vertex 29.0007 -19.2301 0 + vertex 28.4483 -19.1654 -0.1 + vertex 29.0007 -19.2301 -0.1 + endloop + endfacet + facet normal -0.215114 -0.976589 0 + outer loop + vertex 29.0007 -19.2301 -0.1 + vertex 29.5013 -19.3404 0 + vertex 29.0007 -19.2301 0 + endloop + endfacet + facet normal -0.215114 -0.976589 -0 + outer loop + vertex 29.5013 -19.3404 0 + vertex 29.0007 -19.2301 -0.1 + vertex 29.5013 -19.3404 -0.1 + endloop + endfacet + facet normal -0.328588 -0.944473 0 + outer loop + vertex 29.5013 -19.3404 -0.1 + vertex 29.9546 -19.4981 0 + vertex 29.5013 -19.3404 0 + endloop + endfacet + facet normal -0.328588 -0.944473 -0 + outer loop + vertex 29.9546 -19.4981 0 + vertex 29.5013 -19.3404 -0.1 + vertex 29.9546 -19.4981 -0.1 + endloop + endfacet + facet normal -0.450382 -0.892836 0 + outer loop + vertex 29.9546 -19.4981 -0.1 + vertex 30.3649 -19.705 0 + vertex 29.9546 -19.4981 0 + endloop + endfacet + facet normal -0.450382 -0.892836 -0 + outer loop + vertex 30.3649 -19.705 0 + vertex 29.9546 -19.4981 -0.1 + vertex 30.3649 -19.705 -0.1 + endloop + endfacet + facet normal -0.570354 -0.821399 0 + outer loop + vertex 30.3649 -19.705 -0.1 + vertex 30.7365 -19.9631 0 + vertex 30.3649 -19.705 0 + endloop + endfacet + facet normal -0.570354 -0.821399 -0 + outer loop + vertex 30.7365 -19.9631 0 + vertex 30.3649 -19.705 -0.1 + vertex 30.7365 -19.9631 -0.1 + endloop + endfacet + facet normal -0.677745 -0.735297 0 + outer loop + vertex 30.7365 -19.9631 -0.1 + vertex 31.074 -20.2742 0 + vertex 30.7365 -19.9631 0 + endloop + endfacet + facet normal -0.677745 -0.735297 -0 + outer loop + vertex 31.074 -20.2742 0 + vertex 30.7365 -19.9631 -0.1 + vertex 31.074 -20.2742 -0.1 + endloop + endfacet + facet normal -0.765393 -0.643563 0 + outer loop + vertex 31.3816 -20.64 -0.1 + vertex 31.074 -20.2742 0 + vertex 31.074 -20.2742 -0.1 + endloop + endfacet + facet normal -0.765393 -0.643563 0 + outer loop + vertex 31.074 -20.2742 0 + vertex 31.3816 -20.64 -0.1 + vertex 31.3816 -20.64 0 + endloop + endfacet + facet normal -0.833589 -0.552384 0 + outer loop + vertex 31.6298 -21.0145 -0.1 + vertex 31.3816 -20.64 0 + vertex 31.3816 -20.64 -0.1 + endloop + endfacet + facet normal -0.833589 -0.552384 0 + outer loop + vertex 31.3816 -20.64 0 + vertex 31.6298 -21.0145 -0.1 + vertex 31.6298 -21.0145 0 + endloop + endfacet + facet normal -0.898247 -0.439492 0 + outer loop + vertex 31.8204 -21.404 -0.1 + vertex 31.6298 -21.0145 0 + vertex 31.6298 -21.0145 -0.1 + endloop + endfacet + facet normal -0.898247 -0.439492 0 + outer loop + vertex 31.6298 -21.0145 0 + vertex 31.8204 -21.404 -0.1 + vertex 31.8204 -21.404 0 + endloop + endfacet + facet normal -0.951943 -0.306275 0 + outer loop + vertex 31.9549 -21.8223 -0.1 + vertex 31.8204 -21.404 0 + vertex 31.8204 -21.404 -0.1 + endloop + endfacet + facet normal -0.951943 -0.306275 0 + outer loop + vertex 31.8204 -21.404 0 + vertex 31.9549 -21.8223 -0.1 + vertex 31.9549 -21.8223 0 + endloop + endfacet + facet normal -0.985239 -0.171183 0 + outer loop + vertex 32.0349 -22.2828 -0.1 + vertex 31.9549 -21.8223 0 + vertex 31.9549 -21.8223 -0.1 + endloop + endfacet + facet normal -0.985239 -0.171183 0 + outer loop + vertex 31.9549 -21.8223 0 + vertex 32.0349 -22.2828 -0.1 + vertex 32.0349 -22.2828 0 + endloop + endfacet + facet normal -0.998641 -0.0521185 0 + outer loop + vertex 32.0619 -22.7991 -0.1 + vertex 32.0349 -22.2828 0 + vertex 32.0349 -22.2828 -0.1 + endloop + endfacet + facet normal -0.998641 -0.0521185 0 + outer loop + vertex 32.0349 -22.2828 0 + vertex 32.0619 -22.7991 -0.1 + vertex 32.0619 -22.7991 0 + endloop + endfacet + facet normal -0.999117 0.0420155 0 + outer loop + vertex 32.0372 -23.3848 -0.1 + vertex 32.0619 -22.7991 0 + vertex 32.0619 -22.7991 -0.1 + endloop + endfacet + facet normal -0.999117 0.0420155 0 + outer loop + vertex 32.0619 -22.7991 0 + vertex 32.0372 -23.3848 -0.1 + vertex 32.0372 -23.3848 0 + endloop + endfacet + facet normal -0.993814 0.111054 0 + outer loop + vertex 31.9625 -24.0535 -0.1 + vertex 32.0372 -23.3848 0 + vertex 32.0372 -23.3848 -0.1 + endloop + endfacet + facet normal -0.993814 0.111054 0 + outer loop + vertex 32.0372 -23.3848 0 + vertex 31.9625 -24.0535 -0.1 + vertex 31.9625 -24.0535 0 + endloop + endfacet + facet normal -0.98726 0.159117 0 + outer loop + vertex 31.8392 -24.8188 -0.1 + vertex 31.9625 -24.0535 0 + vertex 31.9625 -24.0535 -0.1 + endloop + endfacet + facet normal -0.98726 0.159117 0 + outer loop + vertex 31.9625 -24.0535 0 + vertex 31.8392 -24.8188 -0.1 + vertex 31.8392 -24.8188 0 + endloop + endfacet + facet normal -0.984533 0.175198 0 + outer loop + vertex 31.6784 -25.7224 -0.1 + vertex 31.8392 -24.8188 0 + vertex 31.8392 -24.8188 -0.1 + endloop + endfacet + facet normal -0.984533 0.175198 0 + outer loop + vertex 31.8392 -24.8188 0 + vertex 31.6784 -25.7224 -0.1 + vertex 31.6784 -25.7224 0 + endloop + endfacet + facet normal -0.977413 0.211338 0 + outer loop + vertex 31.6003 -26.0834 -0.1 + vertex 31.6784 -25.7224 0 + vertex 31.6784 -25.7224 -0.1 + endloop + endfacet + facet normal -0.977413 0.211338 0 + outer loop + vertex 31.6784 -25.7224 0 + vertex 31.6003 -26.0834 -0.1 + vertex 31.6003 -26.0834 0 + endloop + endfacet + facet normal -0.958488 0.285133 0 + outer loop + vertex 31.5092 -26.3899 -0.1 + vertex 31.6003 -26.0834 0 + vertex 31.6003 -26.0834 -0.1 + endloop + endfacet + facet normal -0.958488 0.285133 0 + outer loop + vertex 31.6003 -26.0834 0 + vertex 31.5092 -26.3899 -0.1 + vertex 31.5092 -26.3899 0 + endloop + endfacet + facet normal -0.912047 0.410085 0 + outer loop + vertex 31.3939 -26.6463 -0.1 + vertex 31.5092 -26.3899 0 + vertex 31.5092 -26.3899 -0.1 + endloop + endfacet + facet normal -0.912047 0.410085 0 + outer loop + vertex 31.5092 -26.3899 0 + vertex 31.3939 -26.6463 -0.1 + vertex 31.3939 -26.6463 0 + endloop + endfacet + facet normal -0.814021 0.580836 0 + outer loop + vertex 31.2435 -26.857 -0.1 + vertex 31.3939 -26.6463 0 + vertex 31.3939 -26.6463 -0.1 + endloop + endfacet + facet normal -0.814021 0.580836 0 + outer loop + vertex 31.3939 -26.6463 0 + vertex 31.2435 -26.857 -0.1 + vertex 31.2435 -26.857 0 + endloop + endfacet + facet normal -0.653404 0.75701 0 + outer loop + vertex 31.2435 -26.857 -0.1 + vertex 31.047 -27.0266 0 + vertex 31.2435 -26.857 0 + endloop + endfacet + facet normal -0.653404 0.75701 0 + outer loop + vertex 31.047 -27.0266 0 + vertex 31.2435 -26.857 -0.1 + vertex 31.047 -27.0266 -0.1 + endloop + endfacet + facet normal -0.464184 0.885739 0 + outer loop + vertex 31.047 -27.0266 -0.1 + vertex 30.7934 -27.1595 0 + vertex 31.047 -27.0266 0 + endloop + endfacet + facet normal -0.464184 0.885739 0 + outer loop + vertex 30.7934 -27.1595 0 + vertex 31.047 -27.0266 -0.1 + vertex 30.7934 -27.1595 -0.1 + endloop + endfacet + facet normal -0.298657 0.954361 0 + outer loop + vertex 30.7934 -27.1595 -0.1 + vertex 30.4717 -27.2602 0 + vertex 30.7934 -27.1595 0 + endloop + endfacet + facet normal -0.298657 0.954361 0 + outer loop + vertex 30.4717 -27.2602 0 + vertex 30.7934 -27.1595 -0.1 + vertex 30.4717 -27.2602 -0.1 + endloop + endfacet + facet normal -0.17896 0.983856 0 + outer loop + vertex 30.4717 -27.2602 -0.1 + vertex 30.0709 -27.3331 0 + vertex 30.4717 -27.2602 0 + endloop + endfacet + facet normal -0.17896 0.983856 0 + outer loop + vertex 30.0709 -27.3331 0 + vertex 30.4717 -27.2602 -0.1 + vertex 30.0709 -27.3331 -0.1 + endloop + endfacet + facet normal -0.100534 0.994934 0 + outer loop + vertex 30.0709 -27.3331 -0.1 + vertex 29.58 -27.3827 0 + vertex 30.0709 -27.3331 0 + endloop + endfacet + facet normal -0.100534 0.994934 0 + outer loop + vertex 29.58 -27.3827 0 + vertex 30.0709 -27.3331 -0.1 + vertex 29.58 -27.3827 -0.1 + endloop + endfacet + facet normal -0.0519093 0.998652 0 + outer loop + vertex 29.58 -27.3827 -0.1 + vertex 28.988 -27.4135 0 + vertex 29.58 -27.3827 0 + endloop + endfacet + facet normal -0.0519093 0.998652 0 + outer loop + vertex 28.988 -27.4135 0 + vertex 29.58 -27.3827 -0.1 + vertex 28.988 -27.4135 -0.1 + endloop + endfacet + facet normal -0.014953 0.999888 0 + outer loop + vertex 28.988 -27.4135 -0.1 + vertex 27.4568 -27.4364 0 + vertex 28.988 -27.4135 0 + endloop + endfacet + facet normal -0.014953 0.999888 0 + outer loop + vertex 27.4568 -27.4364 0 + vertex 28.988 -27.4135 -0.1 + vertex 27.4568 -27.4364 -0.1 + endloop + endfacet + facet normal -0.000556252 1 0 + outer loop + vertex 27.4568 -27.4364 -0.1 + vertex 25.3891 -27.4375 0 + vertex 27.4568 -27.4364 0 + endloop + endfacet + facet normal -0.000556252 1 0 + outer loop + vertex 25.3891 -27.4375 0 + vertex 27.4568 -27.4364 -0.1 + vertex 25.3891 -27.4375 -0.1 + endloop + endfacet + facet normal -0.00092424 1 0 + outer loop + vertex 25.3891 -27.4375 -0.1 + vertex 20.1247 -27.4424 0 + vertex 25.3891 -27.4375 0 + endloop + endfacet + facet normal -0.00092424 1 0 + outer loop + vertex 20.1247 -27.4424 0 + vertex 25.3891 -27.4375 -0.1 + vertex 20.1247 -27.4424 -0.1 + endloop + endfacet + facet normal -0.945282 0.326254 0 + outer loop + vertex 19.9171 -28.0436 -0.1 + vertex 20.1247 -27.4424 0 + vertex 20.1247 -27.4424 -0.1 + endloop + endfacet + facet normal -0.945282 0.326254 0 + outer loop + vertex 20.1247 -27.4424 0 + vertex 19.9171 -28.0436 -0.1 + vertex 19.9171 -28.0436 0 + endloop + endfacet + facet normal -0.957593 0.288124 0 + outer loop + vertex 19.6992 -28.7679 -0.1 + vertex 19.9171 -28.0436 0 + vertex 19.9171 -28.0436 -0.1 + endloop + endfacet + facet normal -0.957593 0.288124 0 + outer loop + vertex 19.9171 -28.0436 0 + vertex 19.6992 -28.7679 -0.1 + vertex 19.6992 -28.7679 0 + endloop + endfacet + facet normal -0.97518 0.221412 0 + outer loop + vertex 19.5256 -29.5327 -0.1 + vertex 19.6992 -28.7679 0 + vertex 19.6992 -28.7679 -0.1 + endloop + endfacet + facet normal -0.97518 0.221412 0 + outer loop + vertex 19.6992 -28.7679 0 + vertex 19.5256 -29.5327 -0.1 + vertex 19.5256 -29.5327 0 + endloop + endfacet + facet normal -0.986769 0.16213 0 + outer loop + vertex 19.3985 -30.306 -0.1 + vertex 19.5256 -29.5327 0 + vertex 19.5256 -29.5327 -0.1 + endloop + endfacet + facet normal -0.986769 0.16213 0 + outer loop + vertex 19.5256 -29.5327 0 + vertex 19.3985 -30.306 -0.1 + vertex 19.3985 -30.306 0 + endloop + endfacet + facet normal -0.994613 0.103657 0 + outer loop + vertex 19.3204 -31.0557 -0.1 + vertex 19.3985 -30.306 0 + vertex 19.3985 -30.306 -0.1 + endloop + endfacet + facet normal -0.994613 0.103657 0 + outer loop + vertex 19.3985 -30.306 0 + vertex 19.3204 -31.0557 -0.1 + vertex 19.3204 -31.0557 0 + endloop + endfacet + facet normal -0.999252 0.0386793 0 + outer loop + vertex 19.2935 -31.7496 -0.1 + vertex 19.3204 -31.0557 0 + vertex 19.3204 -31.0557 -0.1 + endloop + endfacet + facet normal -0.999252 0.0386793 0 + outer loop + vertex 19.3204 -31.0557 0 + vertex 19.2935 -31.7496 -0.1 + vertex 19.2935 -31.7496 0 + endloop + endfacet + facet normal -0.999028 -0.0440878 0 + outer loop + vertex 19.3203 -32.3556 -0.1 + vertex 19.2935 -31.7496 0 + vertex 19.2935 -31.7496 -0.1 + endloop + endfacet + facet normal -0.999028 -0.0440878 0 + outer loop + vertex 19.2935 -31.7496 0 + vertex 19.3203 -32.3556 -0.1 + vertex 19.3203 -32.3556 0 + endloop + endfacet + facet normal -0.991457 -0.130433 0 + outer loop + vertex 19.3545 -32.6156 -0.1 + vertex 19.3203 -32.3556 0 + vertex 19.3203 -32.3556 -0.1 + endloop + endfacet + facet normal -0.991457 -0.130433 0 + outer loop + vertex 19.3203 -32.3556 0 + vertex 19.3545 -32.6156 -0.1 + vertex 19.3545 -32.6156 0 + endloop + endfacet + facet normal -0.977754 -0.209757 0 + outer loop + vertex 19.403 -32.8415 -0.1 + vertex 19.3545 -32.6156 0 + vertex 19.3545 -32.6156 -0.1 + endloop + endfacet + facet normal -0.977754 -0.209757 0 + outer loop + vertex 19.3545 -32.6156 0 + vertex 19.403 -32.8415 -0.1 + vertex 19.403 -32.8415 0 + endloop + endfacet + facet normal -0.948071 -0.31806 0 + outer loop + vertex 19.466 -33.0295 -0.1 + vertex 19.403 -32.8415 0 + vertex 19.403 -32.8415 -0.1 + endloop + endfacet + facet normal -0.948071 -0.31806 0 + outer loop + vertex 19.403 -32.8415 0 + vertex 19.466 -33.0295 -0.1 + vertex 19.466 -33.0295 0 + endloop + endfacet + facet normal -0.882102 -0.471058 0 + outer loop + vertex 19.5439 -33.1754 -0.1 + vertex 19.466 -33.0295 0 + vertex 19.466 -33.0295 -0.1 + endloop + endfacet + facet normal -0.882102 -0.471058 0 + outer loop + vertex 19.466 -33.0295 0 + vertex 19.5439 -33.1754 -0.1 + vertex 19.5439 -33.1754 0 + endloop + endfacet + facet normal -0.777019 -0.629477 0 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 19.5439 -33.1754 0 + vertex 19.5439 -33.1754 -0.1 + endloop + endfacet + facet normal -0.777019 -0.629477 0 + outer loop + vertex 19.5439 -33.1754 0 + vertex 19.7677 -33.4516 -0.1 + vertex 19.7677 -33.4516 0 + endloop + endfacet + facet normal -0.679559 -0.73362 0 + outer loop + vertex 19.7677 -33.4516 -0.1 + vertex 20.0345 -33.6987 0 + vertex 19.7677 -33.4516 0 + endloop + endfacet + facet normal -0.679559 -0.73362 -0 + outer loop + vertex 20.0345 -33.6987 0 + vertex 19.7677 -33.4516 -0.1 + vertex 20.0345 -33.6987 -0.1 + endloop + endfacet + facet normal -0.577724 -0.816232 0 + outer loop + vertex 20.0345 -33.6987 -0.1 + vertex 20.3392 -33.9144 0 + vertex 20.0345 -33.6987 0 + endloop + endfacet + facet normal -0.577724 -0.816232 -0 + outer loop + vertex 20.3392 -33.9144 0 + vertex 20.0345 -33.6987 -0.1 + vertex 20.3392 -33.9144 -0.1 + endloop + endfacet + facet normal -0.474279 -0.880374 0 + outer loop + vertex 20.3392 -33.9144 -0.1 + vertex 20.6768 -34.0963 0 + vertex 20.3392 -33.9144 0 + endloop + endfacet + facet normal -0.474279 -0.880374 -0 + outer loop + vertex 20.6768 -34.0963 0 + vertex 20.3392 -33.9144 -0.1 + vertex 20.6768 -34.0963 -0.1 + endloop + endfacet + facet normal -0.370342 -0.928896 0 + outer loop + vertex 20.6768 -34.0963 -0.1 + vertex 21.0421 -34.2419 0 + vertex 20.6768 -34.0963 0 + endloop + endfacet + facet normal -0.370342 -0.928896 -0 + outer loop + vertex 21.0421 -34.2419 0 + vertex 20.6768 -34.0963 -0.1 + vertex 21.0421 -34.2419 -0.1 + endloop + endfacet + facet normal -0.266037 -0.963963 0 + outer loop + vertex 21.0421 -34.2419 -0.1 + vertex 21.43 -34.349 0 + vertex 21.0421 -34.2419 0 + endloop + endfacet + facet normal -0.266037 -0.963963 -0 + outer loop + vertex 21.43 -34.349 0 + vertex 21.0421 -34.2419 -0.1 + vertex 21.43 -34.349 -0.1 + endloop + endfacet + facet normal -0.160906 -0.98697 0 + outer loop + vertex 21.43 -34.349 -0.1 + vertex 21.8355 -34.4151 0 + vertex 21.43 -34.349 0 + endloop + endfacet + facet normal -0.160906 -0.98697 -0 + outer loop + vertex 21.8355 -34.4151 0 + vertex 21.43 -34.349 -0.1 + vertex 21.8355 -34.4151 -0.1 + endloop + endfacet + facet normal -0.0544036 -0.998519 0 + outer loop + vertex 21.8355 -34.4151 -0.1 + vertex 22.2534 -34.4379 0 + vertex 21.8355 -34.4151 0 + endloop + endfacet + facet normal -0.0544036 -0.998519 -0 + outer loop + vertex 22.2534 -34.4379 0 + vertex 21.8355 -34.4151 -0.1 + vertex 22.2534 -34.4379 -0.1 + endloop + endfacet + facet normal 0.0273252 -0.999627 0 + outer loop + vertex 22.2534 -34.4379 -0.1 + vertex 22.5956 -34.4285 0 + vertex 22.2534 -34.4379 0 + endloop + endfacet + facet normal 0.0273252 -0.999627 0 + outer loop + vertex 22.5956 -34.4285 0 + vertex 22.2534 -34.4379 -0.1 + vertex 22.5956 -34.4285 -0.1 + endloop + endfacet + facet normal 0.0869987 -0.996208 0 + outer loop + vertex 22.5956 -34.4285 -0.1 + vertex 22.9315 -34.3992 0 + vertex 22.5956 -34.4285 0 + endloop + endfacet + facet normal 0.0869987 -0.996208 0 + outer loop + vertex 22.9315 -34.3992 0 + vertex 22.5956 -34.4285 -0.1 + vertex 22.9315 -34.3992 -0.1 + endloop + endfacet + facet normal 0.150489 -0.988612 0 + outer loop + vertex 22.9315 -34.3992 -0.1 + vertex 23.2634 -34.3487 0 + vertex 22.9315 -34.3992 0 + endloop + endfacet + facet normal 0.150489 -0.988612 0 + outer loop + vertex 23.2634 -34.3487 0 + vertex 22.9315 -34.3992 -0.1 + vertex 23.2634 -34.3487 -0.1 + endloop + endfacet + facet normal 0.215659 -0.976469 0 + outer loop + vertex 23.2634 -34.3487 -0.1 + vertex 23.5933 -34.2758 0 + vertex 23.2634 -34.3487 0 + endloop + endfacet + facet normal 0.215659 -0.976469 0 + outer loop + vertex 23.5933 -34.2758 0 + vertex 23.2634 -34.3487 -0.1 + vertex 23.5933 -34.2758 -0.1 + endloop + endfacet + facet normal 0.280239 -0.95993 0 + outer loop + vertex 23.5933 -34.2758 -0.1 + vertex 23.9237 -34.1793 0 + vertex 23.5933 -34.2758 0 + endloop + endfacet + facet normal 0.280239 -0.95993 0 + outer loop + vertex 23.9237 -34.1793 0 + vertex 23.5933 -34.2758 -0.1 + vertex 23.9237 -34.1793 -0.1 + endloop + endfacet + facet normal 0.342076 -0.939672 0 + outer loop + vertex 23.9237 -34.1793 -0.1 + vertex 24.2566 -34.0582 0 + vertex 23.9237 -34.1793 0 + endloop + endfacet + facet normal 0.342076 -0.939672 0 + outer loop + vertex 24.2566 -34.0582 0 + vertex 23.9237 -34.1793 -0.1 + vertex 24.2566 -34.0582 -0.1 + endloop + endfacet + facet normal 0.399452 -0.916754 0 + outer loop + vertex 24.2566 -34.0582 -0.1 + vertex 24.5942 -33.911 0 + vertex 24.2566 -34.0582 0 + endloop + endfacet + facet normal 0.399452 -0.916754 0 + outer loop + vertex 24.5942 -33.911 0 + vertex 24.2566 -34.0582 -0.1 + vertex 24.5942 -33.911 -0.1 + endloop + endfacet + facet normal 0.451238 -0.892404 0 + outer loop + vertex 24.5942 -33.911 -0.1 + vertex 24.9388 -33.7368 0 + vertex 24.5942 -33.911 0 + endloop + endfacet + facet normal 0.451238 -0.892404 0 + outer loop + vertex 24.9388 -33.7368 0 + vertex 24.5942 -33.911 -0.1 + vertex 24.9388 -33.7368 -0.1 + endloop + endfacet + facet normal 0.496895 -0.867811 0 + outer loop + vertex 24.9388 -33.7368 -0.1 + vertex 25.2926 -33.5342 0 + vertex 24.9388 -33.7368 0 + endloop + endfacet + facet normal 0.496895 -0.867811 0 + outer loop + vertex 25.2926 -33.5342 0 + vertex 24.9388 -33.7368 -0.1 + vertex 25.2926 -33.5342 -0.1 + endloop + endfacet + facet normal 0.536389 -0.843971 0 + outer loop + vertex 25.2926 -33.5342 -0.1 + vertex 25.6577 -33.3022 0 + vertex 25.2926 -33.5342 0 + endloop + endfacet + facet normal 0.536389 -0.843971 0 + outer loop + vertex 25.6577 -33.3022 0 + vertex 25.2926 -33.5342 -0.1 + vertex 25.6577 -33.3022 -0.1 + endloop + endfacet + facet normal 0.584792 -0.811183 0 + outer loop + vertex 25.6577 -33.3022 -0.1 + vertex 26.4309 -32.7448 0 + vertex 25.6577 -33.3022 0 + endloop + endfacet + facet normal 0.584792 -0.811183 0 + outer loop + vertex 26.4309 -32.7448 0 + vertex 25.6577 -33.3022 -0.1 + vertex 26.4309 -32.7448 -0.1 + endloop + endfacet + facet normal 0.632266 -0.774751 0 + outer loop + vertex 26.4309 -32.7448 -0.1 + vertex 27.276 -32.055 0 + vertex 26.4309 -32.7448 0 + endloop + endfacet + facet normal 0.632266 -0.774751 0 + outer loop + vertex 27.276 -32.055 0 + vertex 26.4309 -32.7448 -0.1 + vertex 27.276 -32.055 -0.1 + endloop + endfacet + facet normal 0.66466 -0.747146 0 + outer loop + vertex 27.276 -32.055 -0.1 + vertex 28.2108 -31.2235 0 + vertex 27.276 -32.055 0 + endloop + endfacet + facet normal 0.66466 -0.747146 0 + outer loop + vertex 28.2108 -31.2235 0 + vertex 27.276 -32.055 -0.1 + vertex 28.2108 -31.2235 -0.1 + endloop + endfacet + facet normal 0.662871 -0.748733 0 + outer loop + vertex 28.2108 -31.2235 -0.1 + vertex 28.5495 -30.9236 0 + vertex 28.2108 -31.2235 0 + endloop + endfacet + facet normal 0.662871 -0.748733 0 + outer loop + vertex 28.5495 -30.9236 0 + vertex 28.2108 -31.2235 -0.1 + vertex 28.5495 -30.9236 -0.1 + endloop + endfacet + facet normal 0.615947 -0.787787 0 + outer loop + vertex 28.5495 -30.9236 -0.1 + vertex 28.8369 -30.6989 0 + vertex 28.5495 -30.9236 0 + endloop + endfacet + facet normal 0.615947 -0.787787 0 + outer loop + vertex 28.8369 -30.6989 0 + vertex 28.5495 -30.9236 -0.1 + vertex 28.8369 -30.6989 -0.1 + endloop + endfacet + facet normal 0.524001 -0.851718 0 + outer loop + vertex 28.8369 -30.6989 -0.1 + vertex 29.0845 -30.5466 0 + vertex 28.8369 -30.6989 0 + endloop + endfacet + facet normal 0.524001 -0.851718 0 + outer loop + vertex 29.0845 -30.5466 0 + vertex 28.8369 -30.6989 -0.1 + vertex 29.0845 -30.5466 -0.1 + endloop + endfacet + facet normal 0.352437 -0.935836 0 + outer loop + vertex 29.0845 -30.5466 -0.1 + vertex 29.3033 -30.4642 0 + vertex 29.0845 -30.5466 0 + endloop + endfacet + facet normal 0.352437 -0.935836 0 + outer loop + vertex 29.3033 -30.4642 0 + vertex 29.0845 -30.5466 -0.1 + vertex 29.3033 -30.4642 -0.1 + endloop + endfacet + facet normal 0.0751321 -0.997174 0 + outer loop + vertex 29.3033 -30.4642 -0.1 + vertex 29.5048 -30.449 0 + vertex 29.3033 -30.4642 0 + endloop + endfacet + facet normal 0.0751321 -0.997174 0 + outer loop + vertex 29.5048 -30.449 0 + vertex 29.3033 -30.4642 -0.1 + vertex 29.5048 -30.449 -0.1 + endloop + endfacet + facet normal -0.245256 -0.969458 0 + outer loop + vertex 29.5048 -30.449 -0.1 + vertex 29.7002 -30.4984 0 + vertex 29.5048 -30.449 0 + endloop + endfacet + facet normal -0.245256 -0.969458 -0 + outer loop + vertex 29.7002 -30.4984 0 + vertex 29.5048 -30.449 -0.1 + vertex 29.7002 -30.4984 -0.1 + endloop + endfacet + facet normal -0.485575 -0.874195 0 + outer loop + vertex 29.7002 -30.4984 -0.1 + vertex 29.9008 -30.6099 0 + vertex 29.7002 -30.4984 0 + endloop + endfacet + facet normal -0.485575 -0.874195 -0 + outer loop + vertex 29.9008 -30.6099 0 + vertex 29.7002 -30.4984 -0.1 + vertex 29.9008 -30.6099 -0.1 + endloop + endfacet + facet normal -0.618314 -0.785931 0 + outer loop + vertex 29.9008 -30.6099 -0.1 + vertex 30.1179 -30.7807 0 + vertex 29.9008 -30.6099 0 + endloop + endfacet + facet normal -0.618314 -0.785931 -0 + outer loop + vertex 30.1179 -30.7807 0 + vertex 29.9008 -30.6099 -0.1 + vertex 30.1179 -30.7807 -0.1 + endloop + endfacet + facet normal -0.761006 -0.648745 0 + outer loop + vertex 30.1812 -30.855 -0.1 + vertex 30.1179 -30.7807 0 + vertex 30.1179 -30.7807 -0.1 + endloop + endfacet + facet normal -0.761006 -0.648745 0 + outer loop + vertex 30.1179 -30.7807 0 + vertex 30.1812 -30.855 -0.1 + vertex 30.1812 -30.855 0 + endloop + endfacet + facet normal -0.923965 -0.382477 0 + outer loop + vertex 30.2187 -30.9454 -0.1 + vertex 30.1812 -30.855 0 + vertex 30.1812 -30.855 -0.1 + endloop + endfacet + facet normal -0.923965 -0.382477 0 + outer loop + vertex 30.1812 -30.855 0 + vertex 30.2187 -30.9454 -0.1 + vertex 30.2187 -30.9454 0 + endloop + endfacet + facet normal -0.994533 -0.104423 0 + outer loop + vertex 30.2299 -31.0524 -0.1 + vertex 30.2187 -30.9454 0 + vertex 30.2187 -30.9454 -0.1 + endloop + endfacet + facet normal -0.994533 -0.104423 0 + outer loop + vertex 30.2187 -30.9454 0 + vertex 30.2299 -31.0524 -0.1 + vertex 30.2299 -31.0524 0 + endloop + endfacet + facet normal -0.992515 0.122124 0 + outer loop + vertex 30.2146 -31.1764 -0.1 + vertex 30.2299 -31.0524 0 + vertex 30.2299 -31.0524 -0.1 + endloop + endfacet + facet normal -0.992515 0.122124 0 + outer loop + vertex 30.2299 -31.0524 0 + vertex 30.2146 -31.1764 -0.1 + vertex 30.2146 -31.1764 0 + endloop + endfacet + facet normal -0.95856 0.284892 0 + outer loop + vertex 30.1726 -31.3179 -0.1 + vertex 30.2146 -31.1764 0 + vertex 30.2146 -31.1764 -0.1 + endloop + endfacet + facet normal -0.95856 0.284892 0 + outer loop + vertex 30.2146 -31.1764 0 + vertex 30.1726 -31.3179 -0.1 + vertex 30.1726 -31.3179 0 + endloop + endfacet + facet normal -0.917421 0.397919 0 + outer loop + vertex 30.1034 -31.4773 -0.1 + vertex 30.1726 -31.3179 0 + vertex 30.1726 -31.3179 -0.1 + endloop + endfacet + facet normal -0.917421 0.397919 0 + outer loop + vertex 30.1726 -31.3179 0 + vertex 30.1034 -31.4773 -0.1 + vertex 30.1034 -31.4773 0 + endloop + endfacet + facet normal -0.861393 0.50794 0 + outer loop + vertex 29.8827 -31.8517 -0.1 + vertex 30.1034 -31.4773 0 + vertex 30.1034 -31.4773 -0.1 + endloop + endfacet + facet normal -0.861393 0.50794 0 + outer loop + vertex 30.1034 -31.4773 0 + vertex 29.8827 -31.8517 -0.1 + vertex 29.8827 -31.8517 0 + endloop + endfacet + facet normal -0.804973 0.593311 0 + outer loop + vertex 29.5499 -32.3032 -0.1 + vertex 29.8827 -31.8517 0 + vertex 29.8827 -31.8517 -0.1 + endloop + endfacet + facet normal -0.804973 0.593311 0 + outer loop + vertex 29.8827 -31.8517 0 + vertex 29.5499 -32.3032 -0.1 + vertex 29.5499 -32.3032 0 + endloop + endfacet + facet normal -0.76559 0.643329 0 + outer loop + vertex 29.1028 -32.8352 -0.1 + vertex 29.5499 -32.3032 0 + vertex 29.5499 -32.3032 -0.1 + endloop + endfacet + facet normal -0.76559 0.643329 0 + outer loop + vertex 29.5499 -32.3032 0 + vertex 29.1028 -32.8352 -0.1 + vertex 29.1028 -32.8352 0 + endloop + endfacet + facet normal -0.73778 0.675042 0 + outer loop + vertex 28.539 -33.4515 -0.1 + vertex 29.1028 -32.8352 0 + vertex 29.1028 -32.8352 -0.1 + endloop + endfacet + facet normal -0.73778 0.675042 0 + outer loop + vertex 29.1028 -32.8352 0 + vertex 28.539 -33.4515 -0.1 + vertex 28.539 -33.4515 0 + endloop + endfacet + facet normal -0.717743 0.696309 0 + outer loop + vertex 27.856 -34.1555 -0.1 + vertex 28.539 -33.4515 0 + vertex 28.539 -33.4515 -0.1 + endloop + endfacet + facet normal -0.717743 0.696309 0 + outer loop + vertex 28.539 -33.4515 0 + vertex 27.856 -34.1555 -0.1 + vertex 27.856 -34.1555 0 + endloop + endfacet + facet normal -0.702585 0.7116 0 + outer loop + vertex 27.856 -34.1555 -0.1 + vertex 27.3514 -34.6537 0 + vertex 27.856 -34.1555 0 + endloop + endfacet + facet normal -0.702585 0.7116 0 + outer loop + vertex 27.3514 -34.6537 0 + vertex 27.856 -34.1555 -0.1 + vertex 27.3514 -34.6537 -0.1 + endloop + endfacet + facet normal -0.683825 0.729646 0 + outer loop + vertex 27.3514 -34.6537 -0.1 + vertex 26.8832 -35.0925 0 + vertex 27.3514 -34.6537 0 + endloop + endfacet + facet normal -0.683825 0.729646 0 + outer loop + vertex 26.8832 -35.0925 0 + vertex 27.3514 -34.6537 -0.1 + vertex 26.8832 -35.0925 -0.1 + endloop + endfacet + facet normal -0.65863 0.752467 0 + outer loop + vertex 26.8832 -35.0925 -0.1 + vertex 26.4377 -35.4824 0 + vertex 26.8832 -35.0925 0 + endloop + endfacet + facet normal -0.65863 0.752467 0 + outer loop + vertex 26.4377 -35.4824 0 + vertex 26.8832 -35.0925 -0.1 + vertex 26.4377 -35.4824 -0.1 + endloop + endfacet + facet normal -0.627338 0.778747 0 + outer loop + vertex 26.4377 -35.4824 -0.1 + vertex 26.0012 -35.834 0 + vertex 26.4377 -35.4824 0 + endloop + endfacet + facet normal -0.627338 0.778747 0 + outer loop + vertex 26.0012 -35.834 0 + vertex 26.4377 -35.4824 -0.1 + vertex 26.0012 -35.834 -0.1 + endloop + endfacet + facet normal -0.591741 0.806128 0 + outer loop + vertex 26.0012 -35.834 -0.1 + vertex 25.5601 -36.1579 0 + vertex 26.0012 -35.834 0 + endloop + endfacet + facet normal -0.591741 0.806128 0 + outer loop + vertex 25.5601 -36.1579 0 + vertex 26.0012 -35.834 -0.1 + vertex 25.5601 -36.1579 -0.1 + endloop + endfacet + facet normal -0.554992 0.831856 0 + outer loop + vertex 25.5601 -36.1579 -0.1 + vertex 25.1006 -36.4644 0 + vertex 25.5601 -36.1579 0 + endloop + endfacet + facet normal -0.554992 0.831856 0 + outer loop + vertex 25.1006 -36.4644 0 + vertex 25.5601 -36.1579 -0.1 + vertex 25.1006 -36.4644 -0.1 + endloop + endfacet + facet normal -0.520754 0.853707 0 + outer loop + vertex 25.1006 -36.4644 -0.1 + vertex 24.6091 -36.7642 0 + vertex 25.1006 -36.4644 0 + endloop + endfacet + facet normal -0.520754 0.853707 0 + outer loop + vertex 24.6091 -36.7642 0 + vertex 25.1006 -36.4644 -0.1 + vertex 24.6091 -36.7642 -0.1 + endloop + endfacet + facet normal -0.492012 0.870588 0 + outer loop + vertex 24.6091 -36.7642 -0.1 + vertex 24.0719 -37.0678 0 + vertex 24.6091 -36.7642 0 + endloop + endfacet + facet normal -0.492012 0.870588 0 + outer loop + vertex 24.0719 -37.0678 0 + vertex 24.6091 -36.7642 -0.1 + vertex 24.0719 -37.0678 -0.1 + endloop + endfacet + facet normal -0.469837 0.882753 0 + outer loop + vertex 24.0719 -37.0678 -0.1 + vertex 23.2902 -37.4839 0 + vertex 24.0719 -37.0678 0 + endloop + endfacet + facet normal -0.469837 0.882753 0 + outer loop + vertex 23.2902 -37.4839 0 + vertex 24.0719 -37.0678 -0.1 + vertex 23.2902 -37.4839 -0.1 + endloop + endfacet + facet normal -0.440052 0.897972 0 + outer loop + vertex 23.2902 -37.4839 -0.1 + vertex 22.6041 -37.8201 0 + vertex 23.2902 -37.4839 0 + endloop + endfacet + facet normal -0.440052 0.897972 0 + outer loop + vertex 22.6041 -37.8201 0 + vertex 23.2902 -37.4839 -0.1 + vertex 22.6041 -37.8201 -0.1 + endloop + endfacet + facet normal -0.394271 0.918994 0 + outer loop + vertex 22.6041 -37.8201 -0.1 + vertex 21.9889 -38.084 0 + vertex 22.6041 -37.8201 0 + endloop + endfacet + facet normal -0.394271 0.918994 0 + outer loop + vertex 21.9889 -38.084 0 + vertex 22.6041 -37.8201 -0.1 + vertex 21.9889 -38.084 -0.1 + endloop + endfacet + facet normal -0.330435 0.943829 0 + outer loop + vertex 21.9889 -38.084 -0.1 + vertex 21.4197 -38.2833 0 + vertex 21.9889 -38.084 0 + endloop + endfacet + facet normal -0.330435 0.943829 0 + outer loop + vertex 21.4197 -38.2833 0 + vertex 21.9889 -38.084 -0.1 + vertex 21.4197 -38.2833 -0.1 + endloop + endfacet + facet normal -0.251155 0.967947 0 + outer loop + vertex 21.4197 -38.2833 -0.1 + vertex 20.8717 -38.4255 0 + vertex 21.4197 -38.2833 0 + endloop + endfacet + facet normal -0.251155 0.967947 0 + outer loop + vertex 20.8717 -38.4255 0 + vertex 21.4197 -38.2833 -0.1 + vertex 20.8717 -38.4255 -0.1 + endloop + endfacet + facet normal -0.165695 0.986177 0 + outer loop + vertex 20.8717 -38.4255 -0.1 + vertex 20.3202 -38.5182 0 + vertex 20.8717 -38.4255 0 + endloop + endfacet + facet normal -0.165695 0.986177 0 + outer loop + vertex 20.3202 -38.5182 0 + vertex 20.8717 -38.4255 -0.1 + vertex 20.3202 -38.5182 -0.1 + endloop + endfacet + facet normal -0.0871415 0.996196 0 + outer loop + vertex 20.3202 -38.5182 -0.1 + vertex 19.7403 -38.5689 0 + vertex 20.3202 -38.5182 0 + endloop + endfacet + facet normal -0.0871415 0.996196 0 + outer loop + vertex 19.7403 -38.5689 0 + vertex 20.3202 -38.5182 -0.1 + vertex 19.7403 -38.5689 -0.1 + endloop + endfacet + facet normal -0.0258263 0.999666 0 + outer loop + vertex 19.7403 -38.5689 -0.1 + vertex 19.1073 -38.5852 0 + vertex 19.7403 -38.5689 0 + endloop + endfacet + facet normal -0.0258263 0.999666 0 + outer loop + vertex 19.1073 -38.5852 0 + vertex 19.7403 -38.5689 -0.1 + vertex 19.1073 -38.5852 -0.1 + endloop + endfacet + facet normal 0.0407265 0.99917 -0 + outer loop + vertex 19.1073 -38.5852 -0.1 + vertex 18.4669 -38.5591 0 + vertex 19.1073 -38.5852 0 + endloop + endfacet + facet normal 0.0407265 0.99917 0 + outer loop + vertex 18.4669 -38.5591 0 + vertex 19.1073 -38.5852 -0.1 + vertex 18.4669 -38.5591 -0.1 + endloop + endfacet + facet normal 0.12356 0.992337 -0 + outer loop + vertex 18.4669 -38.5591 -0.1 + vertex 18.1792 -38.5233 0 + vertex 18.4669 -38.5591 0 + endloop + endfacet + facet normal 0.12356 0.992337 0 + outer loop + vertex 18.1792 -38.5233 0 + vertex 18.4669 -38.5591 -0.1 + vertex 18.1792 -38.5233 -0.1 + endloop + endfacet + facet normal 0.189246 0.98193 -0 + outer loop + vertex 18.1792 -38.5233 -0.1 + vertex 17.9062 -38.4707 0 + vertex 18.1792 -38.5233 0 + endloop + endfacet + facet normal 0.189246 0.98193 0 + outer loop + vertex 17.9062 -38.4707 0 + vertex 18.1792 -38.5233 -0.1 + vertex 17.9062 -38.4707 -0.1 + endloop + endfacet + facet normal 0.258743 0.965946 -0 + outer loop + vertex 17.9062 -38.4707 -0.1 + vertex 17.6424 -38.4 0 + vertex 17.9062 -38.4707 0 + endloop + endfacet + facet normal 0.258743 0.965946 0 + outer loop + vertex 17.6424 -38.4 0 + vertex 17.9062 -38.4707 -0.1 + vertex 17.6424 -38.4 -0.1 + endloop + endfacet + facet normal 0.326993 0.945027 -0 + outer loop + vertex 17.6424 -38.4 -0.1 + vertex 17.3825 -38.3101 0 + vertex 17.6424 -38.4 0 + endloop + endfacet + facet normal 0.326993 0.945027 0 + outer loop + vertex 17.3825 -38.3101 0 + vertex 17.6424 -38.4 -0.1 + vertex 17.3825 -38.3101 -0.1 + endloop + endfacet + facet normal 0.389172 0.921165 -0 + outer loop + vertex 17.3825 -38.3101 -0.1 + vertex 17.1211 -38.1997 0 + vertex 17.3825 -38.3101 0 + endloop + endfacet + facet normal 0.389172 0.921165 0 + outer loop + vertex 17.1211 -38.1997 0 + vertex 17.3825 -38.3101 -0.1 + vertex 17.1211 -38.1997 -0.1 + endloop + endfacet + facet normal 0.442006 0.897012 -0 + outer loop + vertex 17.1211 -38.1997 -0.1 + vertex 16.8529 -38.0675 0 + vertex 17.1211 -38.1997 0 + endloop + endfacet + facet normal 0.442006 0.897012 0 + outer loop + vertex 16.8529 -38.0675 0 + vertex 17.1211 -38.1997 -0.1 + vertex 16.8529 -38.0675 -0.1 + endloop + endfacet + facet normal 0.508496 0.861064 -0 + outer loop + vertex 16.8529 -38.0675 -0.1 + vertex 16.342 -37.7658 0 + vertex 16.8529 -38.0675 0 + endloop + endfacet + facet normal 0.508496 0.861064 0 + outer loop + vertex 16.342 -37.7658 0 + vertex 16.8529 -38.0675 -0.1 + vertex 16.342 -37.7658 -0.1 + endloop + endfacet + facet normal 0.581032 0.813881 -0 + outer loop + vertex 16.342 -37.7658 -0.1 + vertex 16.1153 -37.6039 0 + vertex 16.342 -37.7658 0 + endloop + endfacet + facet normal 0.581032 0.813881 0 + outer loop + vertex 16.1153 -37.6039 0 + vertex 16.342 -37.7658 -0.1 + vertex 16.1153 -37.6039 -0.1 + endloop + endfacet + facet normal 0.632987 0.774162 -0 + outer loop + vertex 16.1153 -37.6039 -0.1 + vertex 15.907 -37.4336 0 + vertex 16.1153 -37.6039 0 + endloop + endfacet + facet normal 0.632987 0.774162 0 + outer loop + vertex 15.907 -37.4336 0 + vertex 16.1153 -37.6039 -0.1 + vertex 15.907 -37.4336 -0.1 + endloop + endfacet + facet normal 0.68624 0.727375 -0 + outer loop + vertex 15.907 -37.4336 -0.1 + vertex 15.7167 -37.2541 0 + vertex 15.907 -37.4336 0 + endloop + endfacet + facet normal 0.68624 0.727375 0 + outer loop + vertex 15.7167 -37.2541 0 + vertex 15.907 -37.4336 -0.1 + vertex 15.7167 -37.2541 -0.1 + endloop + endfacet + facet normal 0.739053 0.673647 0 + outer loop + vertex 15.7167 -37.2541 0 + vertex 15.544 -37.0647 -0.1 + vertex 15.544 -37.0647 0 + endloop + endfacet + facet normal 0.739053 0.673647 0 + outer loop + vertex 15.544 -37.0647 -0.1 + vertex 15.7167 -37.2541 0 + vertex 15.7167 -37.2541 -0.1 + endloop + endfacet + facet normal 0.789576 0.613652 0 + outer loop + vertex 15.544 -37.0647 0 + vertex 15.3884 -36.8644 -0.1 + vertex 15.3884 -36.8644 0 + endloop + endfacet + facet normal 0.789576 0.613652 0 + outer loop + vertex 15.3884 -36.8644 -0.1 + vertex 15.544 -37.0647 0 + vertex 15.544 -37.0647 -0.1 + endloop + endfacet + facet normal 0.835985 0.548752 0 + outer loop + vertex 15.3884 -36.8644 0 + vertex 15.2493 -36.6526 -0.1 + vertex 15.2493 -36.6526 0 + endloop + endfacet + facet normal 0.835985 0.548752 0 + outer loop + vertex 15.2493 -36.6526 -0.1 + vertex 15.3884 -36.8644 0 + vertex 15.3884 -36.8644 -0.1 + endloop + endfacet + facet normal 0.876837 0.480788 0 + outer loop + vertex 15.2493 -36.6526 0 + vertex 15.1264 -36.4284 -0.1 + vertex 15.1264 -36.4284 0 + endloop + endfacet + facet normal 0.876837 0.480788 0 + outer loop + vertex 15.1264 -36.4284 -0.1 + vertex 15.2493 -36.6526 0 + vertex 15.2493 -36.6526 -0.1 + endloop + endfacet + facet normal 0.911228 0.411902 0 + outer loop + vertex 15.1264 -36.4284 0 + vertex 15.0191 -36.1911 -0.1 + vertex 15.0191 -36.1911 0 + endloop + endfacet + facet normal 0.911228 0.411902 0 + outer loop + vertex 15.0191 -36.1911 -0.1 + vertex 15.1264 -36.4284 0 + vertex 15.1264 -36.4284 -0.1 + endloop + endfacet + facet normal 0.938903 0.344183 0 + outer loop + vertex 15.0191 -36.1911 0 + vertex 14.927 -35.9398 -0.1 + vertex 14.927 -35.9398 0 + endloop + endfacet + facet normal 0.938903 0.344183 0 + outer loop + vertex 14.927 -35.9398 -0.1 + vertex 15.0191 -36.1911 0 + vertex 15.0191 -36.1911 -0.1 + endloop + endfacet + facet normal 0.960161 0.279447 0 + outer loop + vertex 14.927 -35.9398 0 + vertex 14.8496 -35.6738 -0.1 + vertex 14.8496 -35.6738 0 + endloop + endfacet + facet normal 0.960161 0.279447 0 + outer loop + vertex 14.8496 -35.6738 -0.1 + vertex 14.927 -35.9398 0 + vertex 14.927 -35.9398 -0.1 + endloop + endfacet + facet normal 0.981615 0.190873 0 + outer loop + vertex 14.8496 -35.6738 0 + vertex 14.7369 -35.0944 -0.1 + vertex 14.7369 -35.0944 0 + endloop + endfacet + facet normal 0.981615 0.190873 0 + outer loop + vertex 14.7369 -35.0944 -0.1 + vertex 14.8496 -35.6738 0 + vertex 14.8496 -35.6738 -0.1 + endloop + endfacet + facet normal 0.995797 0.0915901 0 + outer loop + vertex 14.7369 -35.0944 0 + vertex 14.6774 -34.4466 -0.1 + vertex 14.6774 -34.4466 0 + endloop + endfacet + facet normal 0.995797 0.0915901 0 + outer loop + vertex 14.6774 -34.4466 -0.1 + vertex 14.7369 -35.0944 0 + vertex 14.7369 -35.0944 -0.1 + endloop + endfacet + facet normal 0.999758 0.0220201 0 + outer loop + vertex 14.6774 -34.4466 0 + vertex 14.6656 -33.913 -0.1 + vertex 14.6656 -33.913 0 + endloop + endfacet + facet normal 0.999758 0.0220201 0 + outer loop + vertex 14.6656 -33.913 -0.1 + vertex 14.6774 -34.4466 0 + vertex 14.6774 -34.4466 -0.1 + endloop + endfacet + facet normal 0.999472 -0.03249 0 + outer loop + vertex 14.6656 -33.913 0 + vertex 14.6832 -33.3707 -0.1 + vertex 14.6832 -33.3707 0 + endloop + endfacet + facet normal 0.999472 -0.03249 0 + outer loop + vertex 14.6832 -33.3707 -0.1 + vertex 14.6656 -33.913 0 + vertex 14.6656 -33.913 -0.1 + endloop + endfacet + facet normal 0.996411 -0.0846524 0 + outer loop + vertex 14.6832 -33.3707 0 + vertex 14.73 -32.8205 -0.1 + vertex 14.73 -32.8205 0 + endloop + endfacet + facet normal 0.996411 -0.0846524 0 + outer loop + vertex 14.73 -32.8205 -0.1 + vertex 14.6832 -33.3707 0 + vertex 14.6832 -33.3707 -0.1 + endloop + endfacet + facet normal 0.990928 -0.134393 0 + outer loop + vertex 14.73 -32.8205 0 + vertex 14.8056 -32.2631 -0.1 + vertex 14.8056 -32.2631 0 + endloop + endfacet + facet normal 0.990928 -0.134393 0 + outer loop + vertex 14.8056 -32.2631 -0.1 + vertex 14.73 -32.8205 0 + vertex 14.73 -32.8205 -0.1 + endloop + endfacet + facet normal 0.983352 -0.181712 0 + outer loop + vertex 14.8056 -32.2631 0 + vertex 14.9098 -31.6993 -0.1 + vertex 14.9098 -31.6993 0 + endloop + endfacet + facet normal 0.983352 -0.181712 0 + outer loop + vertex 14.9098 -31.6993 -0.1 + vertex 14.8056 -32.2631 0 + vertex 14.8056 -32.2631 -0.1 + endloop + endfacet + facet normal 0.973979 -0.226639 0 + outer loop + vertex 14.9098 -31.6993 0 + vertex 15.0423 -31.1299 -0.1 + vertex 15.0423 -31.1299 0 + endloop + endfacet + facet normal 0.973979 -0.226639 0 + outer loop + vertex 15.0423 -31.1299 -0.1 + vertex 14.9098 -31.6993 0 + vertex 14.9098 -31.6993 -0.1 + endloop + endfacet + facet normal 0.963072 -0.269246 0 + outer loop + vertex 15.0423 -31.1299 0 + vertex 15.2028 -30.5555 -0.1 + vertex 15.2028 -30.5555 0 + endloop + endfacet + facet normal 0.963072 -0.269246 0 + outer loop + vertex 15.2028 -30.5555 -0.1 + vertex 15.0423 -31.1299 0 + vertex 15.0423 -31.1299 -0.1 + endloop + endfacet + facet normal 0.950861 -0.309619 0 + outer loop + vertex 15.2028 -30.5555 0 + vertex 15.3912 -29.9771 -0.1 + vertex 15.3912 -29.9771 0 + endloop + endfacet + facet normal 0.950861 -0.309619 0 + outer loop + vertex 15.3912 -29.9771 -0.1 + vertex 15.2028 -30.5555 0 + vertex 15.2028 -30.5555 -0.1 + endloop + endfacet + facet normal 0.93754 -0.347877 0 + outer loop + vertex 15.3912 -29.9771 0 + vertex 15.6071 -29.3953 -0.1 + vertex 15.6071 -29.3953 0 + endloop + endfacet + facet normal 0.93754 -0.347877 0 + outer loop + vertex 15.6071 -29.3953 -0.1 + vertex 15.3912 -29.9771 0 + vertex 15.3912 -29.9771 -0.1 + endloop + endfacet + facet normal 0.92328 -0.384128 0 + outer loop + vertex 15.6071 -29.3953 0 + vertex 15.8502 -28.8109 -0.1 + vertex 15.8502 -28.8109 0 + endloop + endfacet + facet normal 0.92328 -0.384128 0 + outer loop + vertex 15.8502 -28.8109 -0.1 + vertex 15.6071 -29.3953 0 + vertex 15.6071 -29.3953 -0.1 + endloop + endfacet + facet normal 0.908217 -0.418499 0 + outer loop + vertex 15.8502 -28.8109 0 + vertex 16.1203 -28.2246 -0.1 + vertex 16.1203 -28.2246 0 + endloop + endfacet + facet normal 0.908217 -0.418499 0 + outer loop + vertex 16.1203 -28.2246 -0.1 + vertex 15.8502 -28.8109 0 + vertex 15.8502 -28.8109 -0.1 + endloop + endfacet + facet normal 0.892471 -0.451106 0 + outer loop + vertex 16.1203 -28.2246 0 + vertex 16.4172 -27.6373 -0.1 + vertex 16.4172 -27.6373 0 + endloop + endfacet + facet normal 0.892471 -0.451106 0 + outer loop + vertex 16.4172 -27.6373 -0.1 + vertex 16.1203 -28.2246 0 + vertex 16.1203 -28.2246 -0.1 + endloop + endfacet + facet normal 0.876136 -0.482063 0 + outer loop + vertex 16.4172 -27.6373 0 + vertex 16.7406 -27.0496 -0.1 + vertex 16.7406 -27.0496 0 + endloop + endfacet + facet normal 0.876136 -0.482063 0 + outer loop + vertex 16.7406 -27.0496 -0.1 + vertex 16.4172 -27.6373 0 + vertex 16.4172 -27.6373 -0.1 + endloop + endfacet + facet normal 0.85929 -0.511489 0 + outer loop + vertex 16.7406 -27.0496 0 + vertex 17.0901 -26.4624 -0.1 + vertex 17.0901 -26.4624 0 + endloop + endfacet + facet normal 0.85929 -0.511489 0 + outer loop + vertex 17.0901 -26.4624 -0.1 + vertex 16.7406 -27.0496 0 + vertex 16.7406 -27.0496 -0.1 + endloop + endfacet + facet normal 0.841993 -0.539488 0 + outer loop + vertex 17.0901 -26.4624 0 + vertex 17.4656 -25.8764 -0.1 + vertex 17.4656 -25.8764 0 + endloop + endfacet + facet normal 0.841993 -0.539488 0 + outer loop + vertex 17.4656 -25.8764 -0.1 + vertex 17.0901 -26.4624 0 + vertex 17.0901 -26.4624 -0.1 + endloop + endfacet + facet normal 0.8243 -0.566153 0 + outer loop + vertex 17.4656 -25.8764 0 + vertex 17.8667 -25.2923 -0.1 + vertex 17.8667 -25.2923 0 + endloop + endfacet + facet normal 0.8243 -0.566153 0 + outer loop + vertex 17.8667 -25.2923 -0.1 + vertex 17.4656 -25.8764 0 + vertex 17.4656 -25.8764 -0.1 + endloop + endfacet + facet normal 0.801921 -0.59743 0 + outer loop + vertex 17.8667 -25.2923 0 + vertex 18.4501 -24.5093 -0.1 + vertex 18.4501 -24.5093 0 + endloop + endfacet + facet normal 0.801921 -0.59743 0 + outer loop + vertex 18.4501 -24.5093 -0.1 + vertex 17.8667 -25.2923 0 + vertex 17.8667 -25.2923 -0.1 + endloop + endfacet + facet normal 0.772213 -0.635364 0 + outer loop + vertex 18.4501 -24.5093 0 + vertex 19.0503 -23.7798 -0.1 + vertex 19.0503 -23.7798 0 + endloop + endfacet + facet normal 0.772213 -0.635364 0 + outer loop + vertex 19.0503 -23.7798 -0.1 + vertex 18.4501 -24.5093 0 + vertex 18.4501 -24.5093 -0.1 + endloop + endfacet + facet normal 0.738434 -0.674325 0 + outer loop + vertex 19.0503 -23.7798 0 + vertex 19.6689 -23.1024 -0.1 + vertex 19.6689 -23.1024 0 + endloop + endfacet + facet normal 0.738434 -0.674325 0 + outer loop + vertex 19.6689 -23.1024 -0.1 + vertex 19.0503 -23.7798 0 + vertex 19.0503 -23.7798 -0.1 + endloop + endfacet + facet normal 0.700496 -0.713656 0 + outer loop + vertex 19.6689 -23.1024 -0.1 + vertex 20.3071 -22.4759 0 + vertex 19.6689 -23.1024 0 + endloop + endfacet + facet normal 0.700496 -0.713656 0 + outer loop + vertex 20.3071 -22.4759 0 + vertex 19.6689 -23.1024 -0.1 + vertex 20.3071 -22.4759 -0.1 + endloop + endfacet + facet normal 0.658485 -0.752594 0 + outer loop + vertex 20.3071 -22.4759 -0.1 + vertex 20.9665 -21.899 0 + vertex 20.3071 -22.4759 0 + endloop + endfacet + facet normal 0.658485 -0.752594 0 + outer loop + vertex 20.9665 -21.899 0 + vertex 20.3071 -22.4759 -0.1 + vertex 20.9665 -21.899 -0.1 + endloop + endfacet + facet normal 0.612713 -0.790306 0 + outer loop + vertex 20.9665 -21.899 -0.1 + vertex 21.6485 -21.3703 0 + vertex 20.9665 -21.899 0 + endloop + endfacet + facet normal 0.612713 -0.790306 0 + outer loop + vertex 21.6485 -21.3703 0 + vertex 20.9665 -21.899 -0.1 + vertex 21.6485 -21.3703 -0.1 + endloop + endfacet + facet normal 0.563707 -0.825975 0 + outer loop + vertex 21.6485 -21.3703 -0.1 + vertex 22.3543 -20.8886 0 + vertex 21.6485 -21.3703 0 + endloop + endfacet + facet normal 0.563707 -0.825975 0 + outer loop + vertex 22.3543 -20.8886 0 + vertex 21.6485 -21.3703 -0.1 + vertex 22.3543 -20.8886 -0.1 + endloop + endfacet + facet normal 0.512208 -0.858861 0 + outer loop + vertex 22.3543 -20.8886 -0.1 + vertex 23.0854 -20.4525 0 + vertex 22.3543 -20.8886 0 + endloop + endfacet + facet normal 0.512208 -0.858861 0 + outer loop + vertex 23.0854 -20.4525 0 + vertex 22.3543 -20.8886 -0.1 + vertex 23.0854 -20.4525 -0.1 + endloop + endfacet + facet normal 0.471781 -0.881716 0 + outer loop + vertex 23.0854 -20.4525 -0.1 + vertex 23.7493 -20.0973 0 + vertex 23.0854 -20.4525 0 + endloop + endfacet + facet normal 0.471781 -0.881716 0 + outer loop + vertex 23.7493 -20.0973 0 + vertex 23.0854 -20.4525 -0.1 + vertex 23.7493 -20.0973 -0.1 + endloop + endfacet + facet normal 0.433016 -0.901386 0 + outer loop + vertex 23.7493 -20.0973 -0.1 + vertex 24.3497 -19.8089 0 + vertex 23.7493 -20.0973 0 + endloop + endfacet + facet normal 0.433016 -0.901386 0 + outer loop + vertex 24.3497 -19.8089 0 + vertex 23.7493 -20.0973 -0.1 + vertex 24.3497 -19.8089 -0.1 + endloop + endfacet + facet normal 0.377334 -0.926077 0 + outer loop + vertex 24.3497 -19.8089 -0.1 + vertex 24.9086 -19.5812 0 + vertex 24.3497 -19.8089 0 + endloop + endfacet + facet normal 0.377334 -0.926077 0 + outer loop + vertex 24.9086 -19.5812 0 + vertex 24.3497 -19.8089 -0.1 + vertex 24.9086 -19.5812 -0.1 + endloop + endfacet + facet normal 0.305529 -0.952183 0 + outer loop + vertex 24.9086 -19.5812 -0.1 + vertex 25.4477 -19.4082 0 + vertex 24.9086 -19.5812 0 + endloop + endfacet + facet normal 0.305529 -0.952183 0 + outer loop + vertex 25.4477 -19.4082 0 + vertex 24.9086 -19.5812 -0.1 + vertex 25.4477 -19.4082 -0.1 + endloop + endfacet + facet normal 0.223751 -0.974646 0 + outer loop + vertex 25.4477 -19.4082 -0.1 + vertex 25.9886 -19.284 0 + vertex 25.4477 -19.4082 0 + endloop + endfacet + facet normal 0.223751 -0.974646 0 + outer loop + vertex 25.9886 -19.284 0 + vertex 25.4477 -19.4082 -0.1 + vertex 25.9886 -19.284 -0.1 + endloop + endfacet + facet normal 0.142672 -0.98977 0 + outer loop + vertex 25.9886 -19.284 -0.1 + vertex 26.5531 -19.2026 0 + vertex 25.9886 -19.284 0 + endloop + endfacet + facet normal 0.142672 -0.98977 0 + outer loop + vertex 26.5531 -19.2026 0 + vertex 25.9886 -19.284 -0.1 + vertex 26.5531 -19.2026 -0.1 + endloop + endfacet + facet normal 0.072849 -0.997343 0 + outer loop + vertex 26.5531 -19.2026 -0.1 + vertex 27.1629 -19.1581 0 + vertex 26.5531 -19.2026 0 + endloop + endfacet + facet normal 0.072849 -0.997343 0 + outer loop + vertex 27.1629 -19.1581 0 + vertex 26.5531 -19.2026 -0.1 + vertex 27.1629 -19.1581 -0.1 + endloop + endfacet + facet normal 0.0202302 -0.999795 0 + outer loop + vertex 27.1629 -19.1581 -0.1 + vertex 27.8398 -19.1444 0 + vertex 27.1629 -19.1581 0 + endloop + endfacet + facet normal 0.0202302 -0.999795 0 + outer loop + vertex 27.8398 -19.1444 0 + vertex 27.1629 -19.1581 -0.1 + vertex 27.8398 -19.1444 -0.1 + endloop + endfacet + facet normal -0.0344796 -0.999405 0 + outer loop + vertex 27.8398 -19.1444 -0.1 + vertex 28.4483 -19.1654 0 + vertex 27.8398 -19.1444 0 + endloop + endfacet + facet normal -0.0344796 -0.999405 -0 + outer loop + vertex 28.4483 -19.1654 0 + vertex 27.8398 -19.1444 -0.1 + vertex 28.4483 -19.1654 -0.1 + endloop + endfacet + facet normal -0.149538 0.988756 0 + outer loop + vertex 25.51 -21.8307 -0.1 + vertex 25.181 -21.8805 0 + vertex 25.51 -21.8307 0 + endloop + endfacet + facet normal -0.149538 0.988756 0 + outer loop + vertex 25.181 -21.8805 0 + vertex 25.51 -21.8307 -0.1 + vertex 25.181 -21.8805 -0.1 + endloop + endfacet + facet normal -0.215553 0.976492 0 + outer loop + vertex 25.181 -21.8805 -0.1 + vertex 24.827 -21.9586 0 + vertex 25.181 -21.8805 0 + endloop + endfacet + facet normal -0.215553 0.976492 0 + outer loop + vertex 24.827 -21.9586 0 + vertex 25.181 -21.8805 -0.1 + vertex 24.827 -21.9586 -0.1 + endloop + endfacet + facet normal -0.27228 0.962218 0 + outer loop + vertex 24.827 -21.9586 -0.1 + vertex 24.5319 -22.0421 0 + vertex 24.827 -21.9586 0 + endloop + endfacet + facet normal -0.27228 0.962218 0 + outer loop + vertex 24.5319 -22.0421 0 + vertex 24.827 -21.9586 -0.1 + vertex 24.5319 -22.0421 -0.1 + endloop + endfacet + facet normal -0.339982 0.940432 0 + outer loop + vertex 24.5319 -22.0421 -0.1 + vertex 24.2621 -22.1397 0 + vertex 24.5319 -22.0421 0 + endloop + endfacet + facet normal -0.339982 0.940432 0 + outer loop + vertex 24.2621 -22.1397 0 + vertex 24.5319 -22.0421 -0.1 + vertex 24.2621 -22.1397 -0.1 + endloop + endfacet + facet normal -0.419841 0.907598 0 + outer loop + vertex 24.2621 -22.1397 -0.1 + vertex 24.0091 -22.2567 0 + vertex 24.2621 -22.1397 0 + endloop + endfacet + facet normal -0.419841 0.907598 0 + outer loop + vertex 24.0091 -22.2567 0 + vertex 24.2621 -22.1397 -0.1 + vertex 24.0091 -22.2567 -0.1 + endloop + endfacet + facet normal -0.501876 0.864939 0 + outer loop + vertex 24.0091 -22.2567 -0.1 + vertex 23.7644 -22.3987 0 + vertex 24.0091 -22.2567 0 + endloop + endfacet + facet normal -0.501876 0.864939 0 + outer loop + vertex 23.7644 -22.3987 0 + vertex 24.0091 -22.2567 -0.1 + vertex 23.7644 -22.3987 -0.1 + endloop + endfacet + facet normal -0.575619 0.817718 0 + outer loop + vertex 23.7644 -22.3987 -0.1 + vertex 23.5194 -22.5712 0 + vertex 23.7644 -22.3987 0 + endloop + endfacet + facet normal -0.575619 0.817718 0 + outer loop + vertex 23.5194 -22.5712 0 + vertex 23.7644 -22.3987 -0.1 + vertex 23.5194 -22.5712 -0.1 + endloop + endfacet + facet normal -0.634613 0.77283 0 + outer loop + vertex 23.5194 -22.5712 -0.1 + vertex 23.2657 -22.7795 0 + vertex 23.5194 -22.5712 0 + endloop + endfacet + facet normal -0.634613 0.77283 0 + outer loop + vertex 23.2657 -22.7795 0 + vertex 23.5194 -22.5712 -0.1 + vertex 23.2657 -22.7795 -0.1 + endloop + endfacet + facet normal -0.693326 0.720624 0 + outer loop + vertex 23.2657 -22.7795 -0.1 + vertex 22.6979 -23.3258 0 + vertex 23.2657 -22.7795 0 + endloop + endfacet + facet normal -0.693326 0.720624 0 + outer loop + vertex 22.6979 -23.3258 0 + vertex 23.2657 -22.7795 -0.1 + vertex 22.6979 -23.3258 -0.1 + endloop + endfacet + facet normal -0.729687 0.683781 0 + outer loop + vertex 22.2832 -23.7683 -0.1 + vertex 22.6979 -23.3258 0 + vertex 22.6979 -23.3258 -0.1 + endloop + endfacet + facet normal -0.729687 0.683781 0 + outer loop + vertex 22.6979 -23.3258 0 + vertex 22.2832 -23.7683 -0.1 + vertex 22.2832 -23.7683 0 + endloop + endfacet + facet normal -0.755777 0.65483 0 + outer loop + vertex 21.9437 -24.1601 -0.1 + vertex 22.2832 -23.7683 0 + vertex 22.2832 -23.7683 -0.1 + endloop + endfacet + facet normal -0.755777 0.65483 0 + outer loop + vertex 22.2832 -23.7683 0 + vertex 21.9437 -24.1601 -0.1 + vertex 21.9437 -24.1601 0 + endloop + endfacet + facet normal -0.793147 0.60903 0 + outer loop + vertex 21.7143 -24.4589 -0.1 + vertex 21.9437 -24.1601 0 + vertex 21.9437 -24.1601 -0.1 + endloop + endfacet + facet normal -0.793147 0.60903 0 + outer loop + vertex 21.9437 -24.1601 0 + vertex 21.7143 -24.4589 -0.1 + vertex 21.7143 -24.4589 0 + endloop + endfacet + facet normal -0.850912 0.525308 0 + outer loop + vertex 21.6518 -24.5601 -0.1 + vertex 21.7143 -24.4589 0 + vertex 21.7143 -24.4589 -0.1 + endloop + endfacet + facet normal -0.850912 0.525308 0 + outer loop + vertex 21.7143 -24.4589 0 + vertex 21.6518 -24.5601 -0.1 + vertex 21.6518 -24.5601 0 + endloop + endfacet + facet normal -0.943329 0.331858 0 + outer loop + vertex 21.63 -24.6221 -0.1 + vertex 21.6518 -24.5601 0 + vertex 21.6518 -24.5601 -0.1 + endloop + endfacet + facet normal -0.943329 0.331858 0 + outer loop + vertex 21.6518 -24.5601 0 + vertex 21.63 -24.6221 -0.1 + vertex 21.63 -24.6221 0 + endloop + endfacet + facet normal -0.568017 -0.823017 0 + outer loop + vertex 21.63 -24.6221 -0.1 + vertex 21.6873 -24.6616 0 + vertex 21.63 -24.6221 0 + endloop + endfacet + facet normal -0.568017 -0.823017 -0 + outer loop + vertex 21.6873 -24.6616 0 + vertex 21.63 -24.6221 -0.1 + vertex 21.6873 -24.6616 -0.1 + endloop + endfacet + facet normal -0.21919 -0.975682 0 + outer loop + vertex 21.6873 -24.6616 -0.1 + vertex 21.8514 -24.6984 0 + vertex 21.6873 -24.6616 0 + endloop + endfacet + facet normal -0.21919 -0.975682 -0 + outer loop + vertex 21.8514 -24.6984 0 + vertex 21.6873 -24.6616 -0.1 + vertex 21.8514 -24.6984 -0.1 + endloop + endfacet + facet normal -0.103226 -0.994658 0 + outer loop + vertex 21.8514 -24.6984 -0.1 + vertex 22.454 -24.761 0 + vertex 21.8514 -24.6984 0 + endloop + endfacet + facet normal -0.103226 -0.994658 -0 + outer loop + vertex 22.454 -24.761 0 + vertex 21.8514 -24.6984 -0.1 + vertex 22.454 -24.761 -0.1 + endloop + endfacet + facet normal -0.0473276 -0.998879 0 + outer loop + vertex 22.454 -24.761 -0.1 + vertex 23.3459 -24.8032 0 + vertex 22.454 -24.761 0 + endloop + endfacet + facet normal -0.0473276 -0.998879 -0 + outer loop + vertex 23.3459 -24.8032 0 + vertex 22.454 -24.761 -0.1 + vertex 23.3459 -24.8032 -0.1 + endloop + endfacet + facet normal -0.0142485 -0.999898 0 + outer loop + vertex 23.3459 -24.8032 -0.1 + vertex 24.435 -24.8188 0 + vertex 23.3459 -24.8032 0 + endloop + endfacet + facet normal -0.0142485 -0.999898 -0 + outer loop + vertex 24.435 -24.8188 0 + vertex 23.3459 -24.8032 -0.1 + vertex 24.435 -24.8188 -0.1 + endloop + endfacet + facet normal 0 -1 0 + outer loop + vertex 24.435 -24.8188 -0.1 + vertex 27.2401 -24.8188 0 + vertex 24.435 -24.8188 0 + endloop + endfacet + facet normal 0 -1 -0 + outer loop + vertex 27.2401 -24.8188 0 + vertex 24.435 -24.8188 -0.1 + vertex 27.2401 -24.8188 -0.1 + endloop + endfacet + facet normal 0.986418 -0.164252 0 + outer loop + vertex 27.2401 -24.8188 0 + vertex 27.373 -24.0204 -0.1 + vertex 27.373 -24.0204 0 + endloop + endfacet + facet normal 0.986418 -0.164252 0 + outer loop + vertex 27.373 -24.0204 -0.1 + vertex 27.2401 -24.8188 0 + vertex 27.2401 -24.8188 -0.1 + endloop + endfacet + facet normal 0.99159 -0.129416 0 + outer loop + vertex 27.373 -24.0204 0 + vertex 27.4161 -23.6904 -0.1 + vertex 27.4161 -23.6904 0 + endloop + endfacet + facet normal 0.99159 -0.129416 0 + outer loop + vertex 27.4161 -23.6904 -0.1 + vertex 27.373 -24.0204 0 + vertex 27.373 -24.0204 -0.1 + endloop + endfacet + facet normal 0.998763 -0.0497285 0 + outer loop + vertex 27.4161 -23.6904 0 + vertex 27.4312 -23.3865 -0.1 + vertex 27.4312 -23.3865 0 + endloop + endfacet + facet normal 0.998763 -0.0497285 0 + outer loop + vertex 27.4312 -23.3865 -0.1 + vertex 27.4161 -23.6904 0 + vertex 27.4161 -23.6904 -0.1 + endloop + endfacet + facet normal 0.998974 0.0452785 0 + outer loop + vertex 27.4312 -23.3865 0 + vertex 27.4186 -23.1088 -0.1 + vertex 27.4186 -23.1088 0 + endloop + endfacet + facet normal 0.998974 0.0452785 0 + outer loop + vertex 27.4186 -23.1088 -0.1 + vertex 27.4312 -23.3865 0 + vertex 27.4312 -23.3865 -0.1 + endloop + endfacet + facet normal 0.987512 0.157546 0 + outer loop + vertex 27.4186 -23.1088 0 + vertex 27.3785 -22.8574 -0.1 + vertex 27.3785 -22.8574 0 + endloop + endfacet + facet normal 0.987512 0.157546 0 + outer loop + vertex 27.3785 -22.8574 -0.1 + vertex 27.4186 -23.1088 0 + vertex 27.4186 -23.1088 -0.1 + endloop + endfacet + facet normal 0.957877 0.287177 0 + outer loop + vertex 27.3785 -22.8574 0 + vertex 27.3111 -22.6325 -0.1 + vertex 27.3111 -22.6325 0 + endloop + endfacet + facet normal 0.957877 0.287177 0 + outer loop + vertex 27.3111 -22.6325 -0.1 + vertex 27.3785 -22.8574 0 + vertex 27.3785 -22.8574 -0.1 + endloop + endfacet + facet normal 0.902589 0.430503 0 + outer loop + vertex 27.3111 -22.6325 0 + vertex 27.2166 -22.4344 -0.1 + vertex 27.2166 -22.4344 0 + endloop + endfacet + facet normal 0.902589 0.430503 0 + outer loop + vertex 27.2166 -22.4344 -0.1 + vertex 27.3111 -22.6325 0 + vertex 27.3111 -22.6325 -0.1 + endloop + endfacet + facet normal 0.815851 0.578262 0 + outer loop + vertex 27.2166 -22.4344 0 + vertex 27.0952 -22.2631 -0.1 + vertex 27.0952 -22.2631 0 + endloop + endfacet + facet normal 0.815851 0.578262 0 + outer loop + vertex 27.0952 -22.2631 -0.1 + vertex 27.2166 -22.4344 0 + vertex 27.2166 -22.4344 -0.1 + endloop + endfacet + facet normal 0.697754 0.716337 -0 + outer loop + vertex 27.0952 -22.2631 -0.1 + vertex 26.9471 -22.1189 0 + vertex 27.0952 -22.2631 0 + endloop + endfacet + facet normal 0.697754 0.716337 0 + outer loop + vertex 26.9471 -22.1189 0 + vertex 27.0952 -22.2631 -0.1 + vertex 26.9471 -22.1189 -0.1 + endloop + endfacet + facet normal 0.556877 0.830595 -0 + outer loop + vertex 26.9471 -22.1189 -0.1 + vertex 26.7726 -22.0019 0 + vertex 26.9471 -22.1189 0 + endloop + endfacet + facet normal 0.556877 0.830595 0 + outer loop + vertex 26.7726 -22.0019 0 + vertex 26.9471 -22.1189 -0.1 + vertex 26.7726 -22.0019 -0.1 + endloop + endfacet + facet normal 0.40766 0.913134 -0 + outer loop + vertex 26.7726 -22.0019 -0.1 + vertex 26.5717 -21.9122 0 + vertex 26.7726 -22.0019 0 + endloop + endfacet + facet normal 0.40766 0.913134 0 + outer loop + vertex 26.5717 -21.9122 0 + vertex 26.7726 -22.0019 -0.1 + vertex 26.5717 -21.9122 -0.1 + endloop + endfacet + facet normal 0.264042 0.964511 -0 + outer loop + vertex 26.5717 -21.9122 -0.1 + vertex 26.3449 -21.8501 0 + vertex 26.5717 -21.9122 0 + endloop + endfacet + facet normal 0.264042 0.964511 0 + outer loop + vertex 26.3449 -21.8501 0 + vertex 26.5717 -21.9122 -0.1 + vertex 26.3449 -21.8501 -0.1 + endloop + endfacet + facet normal 0.134852 0.990866 -0 + outer loop + vertex 26.3449 -21.8501 -0.1 + vertex 26.0922 -21.8157 0 + vertex 26.3449 -21.8501 0 + endloop + endfacet + facet normal 0.134852 0.990866 0 + outer loop + vertex 26.0922 -21.8157 0 + vertex 26.3449 -21.8501 -0.1 + vertex 26.0922 -21.8157 -0.1 + endloop + endfacet + facet normal 0.0233803 0.999727 -0 + outer loop + vertex 26.0922 -21.8157 -0.1 + vertex 25.8138 -21.8092 0 + vertex 26.0922 -21.8157 0 + endloop + endfacet + facet normal 0.0233803 0.999727 0 + outer loop + vertex 25.8138 -21.8092 0 + vertex 26.0922 -21.8157 -0.1 + vertex 25.8138 -21.8092 -0.1 + endloop + endfacet + facet normal -0.0707205 0.997496 0 + outer loop + vertex 25.8138 -21.8092 -0.1 + vertex 25.51 -21.8307 0 + vertex 25.8138 -21.8092 0 + endloop + endfacet + facet normal -0.0707205 0.997496 0 + outer loop + vertex 25.51 -21.8307 0 + vertex 25.8138 -21.8092 -0.1 + vertex 25.51 -21.8307 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.0431 -18.7102 -0.1 + vertex -32.1476 -18.5412 -0.1 + vertex -36.5163 -17.3821 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.1476 -18.5412 -0.1 + vertex -37.0431 -18.7102 -0.1 + vertex -33.2902 -21.4299 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.2902 -21.4299 -0.1 + vertex -37.0431 -18.7102 -0.1 + vertex -33.4325 -21.7956 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.3469 -21.8682 -0.1 + vertex -33.4325 -21.7956 -0.1 + vertex -37.0431 -18.7102 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.4325 -21.7956 -0.1 + vertex -38.3469 -21.8682 -0.1 + vertex -33.503 -22.0719 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.503 -22.0719 -0.1 + vertex -38.3469 -21.8682 -0.1 + vertex -34.9509 -25.4747 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.8955 -25.4747 -0.1 + vertex -34.9509 -25.4747 -0.1 + vertex -38.3469 -21.8682 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.9509 -25.4747 -0.1 + vertex -39.8955 -25.4747 -0.1 + vertex -35.4707 -26.6225 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.4707 -26.6225 -0.1 + vertex -39.8955 -25.4747 -0.1 + vertex -36.4516 -28.8697 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -41.2695 -28.6585 -0.1 + vertex -36.4516 -28.8697 -0.1 + vertex -39.8955 -25.4747 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.4516 -28.8697 -0.1 + vertex -41.2695 -28.6585 -0.1 + vertex -37.5165 -31.4193 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -42.2252 -30.9405 -0.1 + vertex -37.5165 -31.4193 -0.1 + vertex -41.2695 -28.6585 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.5165 -31.4193 -0.1 + vertex -42.2252 -30.9405 -0.1 + vertex -38.3711 -33.5534 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4764 -11.5321 -0.1 + vertex -17.4002 -11.6639 -0.1 + vertex -17.4268 -11.5861 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 -0.1 + vertex -17.5514 -11.4978 -0.1 + vertex -17.3941 -11.77 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 -0.1 + vertex -17.4764 -11.5321 -0.1 + vertex -17.5514 -11.4978 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7876 -11.4712 -0.1 + vertex -17.3941 -11.77 -0.1 + vertex -17.5514 -11.4978 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.3941 -11.77 -0.1 + vertex -17.7876 -11.4712 -0.1 + vertex -17.4339 -12.0833 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4339 -12.0833 -0.1 + vertex -17.7876 -11.4712 -0.1 + vertex -17.5116 -12.3759 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5116 -12.3759 -0.1 + vertex -17.7876 -11.4712 -0.1 + vertex -17.6664 -12.8441 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.9412 -14.6683 -0.1 + vertex -17.6664 -12.8441 -0.1 + vertex -17.7876 -11.4712 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.6664 -12.8441 -0.1 + vertex -21.9412 -14.6683 -0.1 + vertex -18.1466 -14.1495 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -21.6284 -15.0493 -0.1 + vertex -18.1466 -14.1495 -0.1 + vertex -21.6966 -14.8935 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -21.5879 -15.2616 -0.1 + vertex -18.7537 -15.6836 -0.1 + vertex -21.6284 -15.0493 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -21.5693 -15.5508 -0.1 + vertex -18.7537 -15.6836 -0.1 + vertex -21.5879 -15.2616 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.5729 -16.4428 -0.1 + vertex -19.3667 -17.1305 -0.1 + vertex -21.5693 -15.5508 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.3667 -17.1305 -0.1 + vertex -21.5729 -16.4428 -0.1 + vertex -19.4996 -17.3696 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.4996 -17.3696 -0.1 + vertex -21.5729 -16.4428 -0.1 + vertex -19.6713 -17.584 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.5774 -17.3273 -0.1 + vertex -19.8743 -17.7693 -0.1 + vertex -21.5729 -16.4428 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.8743 -17.7693 -0.1 + vertex -21.5774 -17.3273 -0.1 + vertex -20.1009 -17.9213 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.1009 -17.9213 -0.1 + vertex -21.5774 -17.3273 -0.1 + vertex -20.3435 -18.0357 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.5945 -18.108 -0.1 + vertex -21.5774 -17.3273 -0.1 + vertex -20.8463 -18.1339 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -21.5614 -17.6077 -0.1 + vertex -20.8463 -18.1339 -0.1 + vertex -21.5774 -17.3273 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.8463 -18.1339 -0.1 + vertex -21.5614 -17.6077 -0.1 + vertex -21.0912 -18.1093 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.0912 -18.1093 -0.1 + vertex -21.5614 -17.6077 -0.1 + vertex -21.2545 -18.0693 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2545 -18.0693 -0.1 + vertex -21.5263 -17.8042 -0.1 + vertex -21.378 -18.0171 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.3435 -18.0357 -0.1 + vertex -21.5774 -17.3273 -0.1 + vertex -20.5945 -18.108 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.6713 -17.584 -0.1 + vertex -21.5729 -16.4428 -0.1 + vertex -19.8743 -17.7693 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.7537 -15.6836 -0.1 + vertex -21.5693 -15.5508 -0.1 + vertex -19.3667 -17.1305 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.1466 -14.1495 -0.1 + vertex -21.6284 -15.0493 -0.1 + vertex -18.7537 -15.6836 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.1466 -14.1495 -0.1 + vertex -21.7989 -14.7733 -0.1 + vertex -21.6966 -14.8935 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.1466 -14.1495 -0.1 + vertex -21.9412 -14.6683 -0.1 + vertex -21.7989 -14.7733 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7876 -11.4712 -0.1 + vertex -22.1296 -14.5577 -0.1 + vertex -21.9412 -14.6683 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7876 -11.4712 -0.1 + vertex -22.3213 -14.4724 -0.1 + vertex -22.1296 -14.5577 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7876 -11.4712 -0.1 + vertex -22.5778 -14.3998 -0.1 + vertex -22.3213 -14.4724 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7876 -11.4712 -0.1 + vertex -22.9103 -14.3386 -0.1 + vertex -22.5778 -14.3998 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7876 -11.4712 -0.1 + vertex -23.3301 -14.2877 -0.1 + vertex -22.9103 -14.3386 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.175 -11.3523 -0.1 + vertex -23.3301 -14.2877 -0.1 + vertex -17.7876 -11.4712 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.3301 -14.2877 -0.1 + vertex -27.175 -11.3523 -0.1 + vertex -24.4767 -14.2125 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.4767 -14.2125 -0.1 + vertex -27.175 -11.3523 -0.1 + vertex -26.1077 -14.1654 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.175 -11.3523 -0.1 + vertex -28.2448 -14.1442 -0.1 + vertex -26.1077 -14.1654 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.175 -11.3523 -0.1 + vertex -28.9898 -14.1579 -0.1 + vertex -28.2448 -14.1442 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.175 -11.3523 -0.1 + vertex -29.549 -14.1906 -0.1 + vertex -28.9898 -14.1579 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.0944 -11.3029 -0.1 + vertex -29.549 -14.1906 -0.1 + vertex -27.175 -11.3523 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.549 -14.1906 -0.1 + vertex -32.0944 -11.3029 -0.1 + vertex -29.9449 -14.2443 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.9449 -14.2443 -0.1 + vertex -32.0944 -11.3029 -0.1 + vertex -30.1999 -14.321 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3673 -14.4836 -0.1 + vertex -30.4158 -14.7057 -0.1 + vertex -30.377 -14.5514 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3673 -14.4836 -0.1 + vertex -30.5215 -14.964 -0.1 + vertex -30.4158 -14.7057 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.4754 -14.1281 -0.1 + vertex -30.5215 -14.964 -0.1 + vertex -30.3673 -14.4836 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.5215 -14.964 -0.1 + vertex -35.4754 -14.1281 -0.1 + vertex -30.678 -15.2903 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.678 -15.2903 -0.1 + vertex -35.4754 -14.1281 -0.1 + vertex -30.8691 -15.6487 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -35.5123 -14.4274 -0.1 + vertex -30.8691 -15.6487 -0.1 + vertex -35.4754 -14.1281 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1999 -14.321 -0.1 + vertex -32.0944 -11.3029 -0.1 + vertex -30.2816 -14.3686 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.0944 -11.3029 -0.1 + vertex -30.3364 -14.4227 -0.1 + vertex -30.2816 -14.3686 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.0944 -11.3029 -0.1 + vertex -30.3673 -14.4836 -0.1 + vertex -30.3364 -14.4227 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -35.4904 -13.894 -0.1 + vertex -30.3673 -14.4836 -0.1 + vertex -32.0944 -11.3029 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.8691 -15.6487 -0.1 + vertex -35.5123 -14.4274 -0.1 + vertex -31.1223 -16.1487 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -35.5964 -14.799 -0.1 + vertex -31.1223 -16.1487 -0.1 + vertex -35.5123 -14.4274 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.1223 -16.1487 -0.1 + vertex -35.5964 -14.799 -0.1 + vertex -31.4477 -16.8607 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -35.7796 -15.3934 -0.1 + vertex -31.4477 -16.8607 -0.1 + vertex -35.5964 -14.799 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.4477 -16.8607 -0.1 + vertex -35.7796 -15.3934 -0.1 + vertex -31.8034 -17.6899 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.4904 -13.894 -0.1 + vertex -32.0944 -11.3029 -0.1 + vertex -33.7011 -11.3017 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -21.5263 -17.8042 -0.1 + vertex -21.2545 -18.0693 -0.1 + vertex -21.5614 -17.6077 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.378 -18.0171 -0.1 + vertex -21.5263 -17.8042 -0.1 + vertex -21.4669 -17.9347 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.4624 -26.9141 -0.1 + vertex -27.8988 -26.2055 -0.1 + vertex -27.8924 -26.5154 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.2929 -22.2506 -0.1 + vertex -27.9236 -26.0946 -0.1 + vertex -27.8988 -26.2055 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.2929 -22.2506 -0.1 + vertex -27.9636 -26.0069 -0.1 + vertex -27.9236 -26.0946 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.2929 -22.2506 -0.1 + vertex -28.0195 -25.9379 -0.1 + vertex -27.9636 -26.0069 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.2929 -22.2506 -0.1 + vertex -28.0919 -25.8829 -0.1 + vertex -28.0195 -25.9379 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2888 -25.7968 -0.1 + vertex -27.6923 -22.3658 -0.1 + vertex -28.1242 -22.4577 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.6923 -22.3658 -0.1 + vertex -28.2888 -25.7968 -0.1 + vertex -28.0919 -25.8829 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.1242 -22.4577 -0.1 + vertex -28.5596 -25.7117 -0.1 + vertex -28.2888 -25.7968 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -28.5914 -22.5277 -0.1 + vertex -28.5596 -25.7117 -0.1 + vertex -28.1242 -22.4577 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.5914 -22.5277 -0.1 + vertex -28.7678 -25.6646 -0.1 + vertex -28.5596 -25.7117 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.5914 -22.5277 -0.1 + vertex -29.0734 -25.6205 -0.1 + vertex -28.7678 -25.6646 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -29.0966 -22.5767 -0.1 + vertex -29.0734 -25.6205 -0.1 + vertex -28.5914 -22.5277 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -29.6427 -22.606 -0.1 + vertex -29.0734 -25.6205 -0.1 + vertex -29.0966 -22.5767 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.6427 -22.606 -0.1 + vertex -29.9179 -25.5457 -0.1 + vertex -29.0734 -25.6205 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -30.2322 -22.6168 -0.1 + vertex -29.9179 -25.5457 -0.1 + vertex -29.6427 -22.606 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.9759 -25.4949 -0.1 + vertex -30.2322 -22.6168 -0.1 + vertex -30.868 -22.6102 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2322 -22.6168 -0.1 + vertex -30.9759 -25.4949 -0.1 + vertex -29.9179 -25.5457 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.8095 -22.5865 -0.1 + vertex -30.9759 -25.4949 -0.1 + vertex -30.868 -22.6102 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.8095 -22.5865 -0.1 + vertex -32.1303 -25.4759 -0.1 + vertex -30.9759 -25.4949 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.5132 -22.5543 -0.1 + vertex -32.1303 -25.4759 -0.1 + vertex -31.8095 -22.5865 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.0067 -22.5002 -0.1 + vertex -32.1303 -25.4759 -0.1 + vertex -32.5132 -22.5543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.1833 -22.4608 -0.1 + vertex -32.1303 -25.4759 -0.1 + vertex -33.0067 -22.5002 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.9509 -25.4747 -0.1 + vertex -33.1833 -22.4608 -0.1 + vertex -33.3177 -22.4108 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.9509 -25.4747 -0.1 + vertex -33.3177 -22.4108 -0.1 + vertex -33.4135 -22.3486 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.9509 -25.4747 -0.1 + vertex -33.4135 -22.3486 -0.1 + vertex -33.4739 -22.2725 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -36.0907 -16.2655 -0.1 + vertex -31.8034 -17.6899 -0.1 + vertex -35.7796 -15.3934 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.5622 -13.718 -0.1 + vertex -33.7011 -11.3017 -0.1 + vertex -34.8583 -11.3197 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.1833 -22.4608 -0.1 + vertex -34.9509 -25.4747 -0.1 + vertex -32.1303 -25.4759 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.5026 -22.1809 -0.1 + vertex -34.9509 -25.4747 -0.1 + vertex -33.4739 -22.2725 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.8034 -17.6899 -0.1 + vertex -36.0907 -16.2655 -0.1 + vertex -32.1476 -18.5412 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.503 -22.0719 -0.1 + vertex -34.9509 -25.4747 -0.1 + vertex -33.5026 -22.1809 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -36.5163 -17.3821 -0.1 + vertex -32.1476 -18.5412 -0.1 + vertex -36.0907 -16.2655 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3673 -14.4836 -0.1 + vertex -35.4904 -13.894 -0.1 + vertex -35.4754 -14.1281 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.7011 -11.3017 -0.1 + vertex -35.5189 -13.7992 -0.1 + vertex -35.4904 -13.894 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.7011 -11.3017 -0.1 + vertex -35.5622 -13.718 -0.1 + vertex -35.5189 -13.7992 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.8583 -11.3197 -0.1 + vertex -35.6209 -13.6496 -0.1 + vertex -35.5622 -13.718 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.6956 -13.593 -0.1 + vertex -34.8583 -11.3197 -0.1 + vertex -35.6555 -11.3595 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.8583 -11.3197 -0.1 + vertex -35.6956 -13.593 -0.1 + vertex -35.6209 -13.6496 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.6555 -11.3595 -0.1 + vertex -35.8956 -13.512 -0.1 + vertex -35.6956 -13.593 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -36.1819 -11.4238 -0.1 + vertex -35.8956 -13.512 -0.1 + vertex -35.6555 -11.3595 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.8956 -13.512 -0.1 + vertex -36.1819 -11.4238 -0.1 + vertex -36.1669 -13.4677 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -36.527 -11.5152 -0.1 + vertex -36.1669 -13.4677 -0.1 + vertex -36.1819 -11.4238 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -36.7802 -11.6364 -0.1 + vertex -36.1669 -13.4677 -0.1 + vertex -36.527 -11.5152 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.1669 -13.4677 -0.1 + vertex -36.7802 -11.6364 -0.1 + vertex -36.5145 -13.4531 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -36.9755 -11.7636 -0.1 + vertex -36.5145 -13.4531 -0.1 + vertex -36.7802 -11.6364 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -37.1409 -11.9004 -0.1 + vertex -36.5145 -13.4531 -0.1 + vertex -36.9755 -11.7636 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.5145 -13.4531 -0.1 + vertex -37.1409 -11.9004 -0.1 + vertex -36.7305 -13.4387 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -37.2767 -12.0443 -0.1 + vertex -36.7305 -13.4387 -0.1 + vertex -37.1409 -11.9004 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.7305 -13.4387 -0.1 + vertex -37.2767 -12.0443 -0.1 + vertex -36.9216 -13.3997 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -37.3834 -12.1929 -0.1 + vertex -36.9216 -13.3997 -0.1 + vertex -37.2767 -12.0443 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -37.4611 -12.3438 -0.1 + vertex -36.9216 -13.3997 -0.1 + vertex -37.3834 -12.1929 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.9216 -13.3997 -0.1 + vertex -37.4611 -12.3438 -0.1 + vertex -37.0874 -13.3385 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -37.5104 -12.4945 -0.1 + vertex -37.0874 -13.3385 -0.1 + vertex -37.4611 -12.3438 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.0874 -13.3385 -0.1 + vertex -37.5104 -12.4945 -0.1 + vertex -37.2276 -13.2576 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -37.5315 -12.6425 -0.1 + vertex -37.2276 -13.2576 -0.1 + vertex -37.5104 -12.4945 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.2276 -13.2576 -0.1 + vertex -37.5315 -12.6425 -0.1 + vertex -37.3418 -13.1594 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.3418 -13.1594 -0.1 + vertex -37.5315 -12.6425 -0.1 + vertex -37.4296 -13.0463 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.4296 -13.0463 -0.1 + vertex -37.5315 -12.6425 -0.1 + vertex -37.4908 -12.9209 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.4908 -12.9209 -0.1 + vertex -37.5315 -12.6425 -0.1 + vertex -37.5249 -12.7854 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.9739 -18.9651 -0.1 + vertex -22.585 -19.4947 -0.1 + vertex -22.594 -19.3555 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.8524 -19.008 -0.1 + vertex -22.594 -19.3555 -0.1 + vertex -22.625 -19.2389 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.7539 -19.0668 -0.1 + vertex -22.625 -19.2389 -0.1 + vertex -22.6782 -19.1432 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.594 -19.3555 -0.1 + vertex -22.8524 -19.008 -0.1 + vertex -22.9739 -18.9651 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.625 -19.2389 -0.1 + vertex -22.7539 -19.0668 -0.1 + vertex -22.8524 -19.008 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.1186 -18.9365 -0.1 + vertex -22.585 -19.4947 -0.1 + vertex -22.9739 -18.9651 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.585 -19.4947 -0.1 + vertex -23.1186 -18.9365 -0.1 + vertex -22.5978 -19.6581 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.4791 -18.9156 -0.1 + vertex -22.5978 -19.6581 -0.1 + vertex -23.1186 -18.9365 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.5978 -19.6581 -0.1 + vertex -23.4791 -18.9156 -0.1 + vertex -22.6874 -20.0641 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -23.6632 -18.9241 -0.1 + vertex -22.6874 -20.0641 -0.1 + vertex -23.4791 -18.9156 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.3738 -19.4278 -0.1 + vertex -22.6874 -20.0641 -0.1 + vertex -24.2328 -19.2424 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.6874 -20.0641 -0.1 + vertex -23.6632 -18.9241 -0.1 + vertex -24.2328 -19.2424 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.0993 -19.1062 -0.1 + vertex -23.6632 -18.9241 -0.1 + vertex -23.8226 -18.954 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.0993 -19.1062 -0.1 + vertex -23.8226 -18.954 -0.1 + vertex -23.9653 -19.0124 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.6632 -18.9241 -0.1 + vertex -24.0993 -19.1062 -0.1 + vertex -24.2328 -19.2424 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.6874 -20.0641 -0.1 + vertex -24.3738 -19.4278 -0.1 + vertex -22.8608 -20.5868 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.7108 -19.9745 -0.1 + vertex -22.8608 -20.5868 -0.1 + vertex -24.3738 -19.4278 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.8608 -20.5868 -0.1 + vertex -24.7108 -19.9745 -0.1 + vertex -23.116 -21.2395 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.9407 -20.3516 -0.1 + vertex -23.116 -21.2395 -0.1 + vertex -24.7108 -19.9745 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.1784 -20.695 -0.1 + vertex -23.116 -21.2395 -0.1 + vertex -24.9407 -20.3516 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.4267 -21.0057 -0.1 + vertex -23.116 -21.2395 -0.1 + vertex -25.1784 -20.695 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.6884 -21.2849 -0.1 + vertex -23.116 -21.2395 -0.1 + vertex -25.4267 -21.0057 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.116 -21.2395 -0.1 + vertex -25.6884 -21.2849 -0.1 + vertex -24.3958 -24.3815 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.9661 -21.5339 -0.1 + vertex -24.3958 -24.3815 -0.1 + vertex -25.6884 -21.2849 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.2627 -21.7538 -0.1 + vertex -24.3958 -24.3815 -0.1 + vertex -25.9661 -21.5339 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.5809 -21.9457 -0.1 + vertex -24.3958 -24.3815 -0.1 + vertex -26.2627 -21.7538 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.9234 -22.1109 -0.1 + vertex -24.3958 -24.3815 -0.1 + vertex -26.5809 -21.9457 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.2929 -22.2506 -0.1 + vertex -24.3958 -24.3815 -0.1 + vertex -26.9234 -22.1109 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3958 -24.3815 -0.1 + vertex -27.2929 -22.2506 -0.1 + vertex -24.9793 -25.8003 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.4624 -26.9141 -0.1 + vertex -27.8924 -26.5154 -0.1 + vertex -25.8688 -27.7587 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.8688 -27.7587 -0.1 + vertex -27.9393 -26.9734 -0.1 + vertex -26.0506 -28.0911 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.0506 -28.0911 -0.1 + vertex -27.9393 -26.9734 -0.1 + vertex -26.2221 -28.3696 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.9393 -26.9734 -0.1 + vertex -25.8688 -27.7587 -0.1 + vertex -27.8924 -26.5154 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.2221 -28.3696 -0.1 + vertex -27.9393 -26.9734 -0.1 + vertex -26.3861 -28.5987 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -28.1721 -28.4809 -0.1 + vertex -26.3861 -28.5987 -0.1 + vertex -27.9393 -26.9734 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.8988 -26.2055 -0.1 + vertex -24.9793 -25.8003 -0.1 + vertex -27.2929 -22.2506 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.3861 -28.5987 -0.1 + vertex -28.1721 -28.4809 -0.1 + vertex -26.5458 -28.7827 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.5458 -28.7827 -0.1 + vertex -28.1721 -28.4809 -0.1 + vertex -26.7039 -28.9262 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.8988 -26.2055 -0.1 + vertex -25.4624 -26.9141 -0.1 + vertex -24.9793 -25.8003 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.7039 -28.9262 -0.1 + vertex -28.1721 -28.4809 -0.1 + vertex -26.8635 -29.0336 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.8635 -29.0336 -0.1 + vertex -28.1721 -28.4809 -0.1 + vertex -27.0275 -29.1093 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.0919 -25.8829 -0.1 + vertex -27.2929 -22.2506 -0.1 + vertex -27.6923 -22.3658 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.0275 -29.1093 -0.1 + vertex -28.1721 -28.4809 -0.1 + vertex -27.1989 -29.1579 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.1989 -29.1579 -0.1 + vertex -28.1721 -28.4809 -0.1 + vertex -27.3805 -29.1838 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.3805 -29.1838 -0.1 + vertex -28.1721 -28.4809 -0.1 + vertex -27.5755 -29.1914 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -28.2235 -28.8853 -0.1 + vertex -27.5755 -29.1914 -0.1 + vertex -28.1721 -28.4809 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.5755 -29.1914 -0.1 + vertex -28.2235 -28.8853 -0.1 + vertex -27.9775 -29.1782 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.9775 -29.1782 -0.1 + vertex -28.2235 -28.8853 -0.1 + vertex -28.0989 -29.15 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -28.2154 -29.0113 -0.1 + vertex -28.0989 -29.15 -0.1 + vertex -28.2235 -28.8853 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.0989 -29.15 -0.1 + vertex -28.2154 -29.0113 -0.1 + vertex -28.176 -29.097 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.4571 -30.6716 -0.1 + vertex -23.4513 -30.847 -0.1 + vertex -23.4345 -30.738 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.5012 -30.6026 -0.1 + vertex -23.4513 -30.847 -0.1 + vertex -23.4571 -30.6716 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.6433 -30.465 -0.1 + vertex -23.4513 -30.847 -0.1 + vertex -23.5012 -30.6026 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.4513 -30.847 -0.1 + vertex -23.6433 -30.465 -0.1 + vertex -23.5218 -31.031 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.8399 -30.3412 -0.1 + vertex -23.5218 -31.031 -0.1 + vertex -23.6433 -30.465 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.0701 -30.2475 -0.1 + vertex -23.5218 -31.031 -0.1 + vertex -23.8399 -30.3412 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.5218 -31.031 -0.1 + vertex -24.0701 -30.2475 -0.1 + vertex -23.8031 -31.5911 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.8452 -30.2998 -0.1 + vertex -23.8031 -31.5911 -0.1 + vertex -24.0701 -30.2475 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8452 -30.2998 -0.1 + vertex -24.0701 -30.2475 -0.1 + vertex -24.2803 -30.1833 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.6311 -30.1847 -0.1 + vertex -24.2803 -30.1833 -0.1 + vertex -24.455 -30.1541 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.6311 -30.1847 -0.1 + vertex -24.455 -30.1541 -0.1 + vertex -24.5406 -30.1604 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.2803 -30.1833 -0.1 + vertex -24.6311 -30.1847 -0.1 + vertex -24.8452 -30.2998 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.8031 -31.5911 -0.1 + vertex -24.8452 -30.2998 -0.1 + vertex -25.1341 -30.5242 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.5344 -30.8827 -0.1 + vertex -23.8031 -31.5911 -0.1 + vertex -25.1341 -30.5242 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.8031 -31.5911 -0.1 + vertex -25.5344 -30.8827 -0.1 + vertex -24.2375 -32.3527 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.2375 -32.3527 -0.1 + vertex -25.5344 -30.8827 -0.1 + vertex -24.7839 -33.2498 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.8166 -32.1012 -0.1 + vertex -24.7839 -33.2498 -0.1 + vertex -25.5344 -30.8827 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.7839 -33.2498 -0.1 + vertex -26.8166 -32.1012 -0.1 + vertex -25.4011 -34.2168 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.3602 -32.5933 -0.1 + vertex -25.4011 -34.2168 -0.1 + vertex -26.8166 -32.1012 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.924 -33.0516 -0.1 + vertex -25.4011 -34.2168 -0.1 + vertex -27.3602 -32.5933 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.4011 -34.2168 -0.1 + vertex -27.924 -33.0516 -0.1 + vertex -26.0482 -35.1877 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -28.5012 -33.4718 -0.1 + vertex -26.0482 -35.1877 -0.1 + vertex -27.924 -33.0516 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.0482 -35.1877 -0.1 + vertex -28.5012 -33.4718 -0.1 + vertex -26.6839 -36.0968 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -29.0852 -33.8499 -0.1 + vertex -26.6839 -36.0968 -0.1 + vertex -28.5012 -33.4718 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.6839 -36.0968 -0.1 + vertex -29.0852 -33.8499 -0.1 + vertex -27.2673 -36.8782 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -29.669 -34.1817 -0.1 + vertex -27.2673 -36.8782 -0.1 + vertex -29.0852 -33.8499 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -30.2461 -34.4632 -0.1 + vertex -27.2673 -36.8782 -0.1 + vertex -29.669 -34.1817 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.2673 -36.8782 -0.1 + vertex -30.2461 -34.4632 -0.1 + vertex -28.2718 -38.1638 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -30.8095 -34.6902 -0.1 + vertex -28.2718 -38.1638 -0.1 + vertex -30.2461 -34.4632 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -31.3526 -34.8586 -0.1 + vertex -28.2718 -38.1638 -0.1 + vertex -30.8095 -34.6902 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -31.5797 -34.902 -0.1 + vertex -28.2718 -38.1638 -0.1 + vertex -31.3526 -34.8586 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -31.9023 -34.9414 -0.1 + vertex -28.2718 -38.1638 -0.1 + vertex -31.5797 -34.902 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -32.7769 -35.0076 -0.1 + vertex -28.2718 -38.1638 -0.1 + vertex -31.9023 -34.9414 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.6203 -38.1325 -0.1 + vertex -32.7769 -35.0076 -0.1 + vertex -33.8615 -35.0556 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.6203 -38.1325 -0.1 + vertex -33.8615 -35.0556 -0.1 + vertex -35.0412 -35.0835 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.6203 -38.1325 -0.1 + vertex -35.0412 -35.0835 -0.1 + vertex -36.2012 -35.0898 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.6203 -38.1325 -0.1 + vertex -36.2012 -35.0898 -0.1 + vertex -37.2267 -35.0727 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.7769 -35.0076 -0.1 + vertex -37.6203 -38.1325 -0.1 + vertex -28.2718 -38.1638 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.0027 -35.0306 -0.1 + vertex -37.6203 -38.1325 -0.1 + vertex -37.2267 -35.0727 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.2613 -34.9997 -0.1 + vertex -37.6203 -38.1325 -0.1 + vertex -38.0027 -35.0306 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.4144 -34.9619 -0.1 + vertex -37.6203 -38.1325 -0.1 + vertex -38.2613 -34.9997 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -41.2883 -38.1087 -0.1 + vertex -38.4144 -34.9619 -0.1 + vertex -38.5336 -34.8886 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -41.2883 -38.1087 -0.1 + vertex -38.5336 -34.8886 -0.1 + vertex -38.6312 -34.7874 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -41.2883 -38.1087 -0.1 + vertex -38.6312 -34.7874 -0.1 + vertex -38.6971 -34.6715 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -42.7651 -32.2453 -0.1 + vertex -38.3711 -33.5534 -0.1 + vertex -42.2252 -30.9405 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.3711 -33.5534 -0.1 + vertex -42.7651 -32.2453 -0.1 + vertex -38.6277 -34.2404 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.6277 -34.2404 -0.1 + vertex -42.7651 -32.2453 -0.1 + vertex -38.7214 -34.5543 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -43.2426 -33.2915 -0.1 + vertex -38.7214 -34.5543 -0.1 + vertex -42.7651 -32.2453 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -43.4655 -33.7273 -0.1 + vertex -38.7214 -34.5543 -0.1 + vertex -43.2426 -33.2915 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.7214 -34.5543 -0.1 + vertex -43.4655 -33.7273 -0.1 + vertex -38.6971 -34.6715 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.4144 -34.9619 -0.1 + vertex -41.2883 -38.1087 -0.1 + vertex -37.6203 -38.1325 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -43.682 -34.1098 -0.1 + vertex -38.6971 -34.6715 -0.1 + vertex -43.4655 -33.7273 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.6971 -34.6715 -0.1 + vertex -43.682 -34.1098 -0.1 + vertex -41.2883 -38.1087 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -43.8952 -34.443 -0.1 + vertex -41.2883 -38.1087 -0.1 + vertex -43.682 -34.1098 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -44.108 -34.7306 -0.1 + vertex -41.2883 -38.1087 -0.1 + vertex -43.8952 -34.443 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -44.3237 -34.9765 -0.1 + vertex -41.2883 -38.1087 -0.1 + vertex -44.108 -34.7306 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -44.3237 -34.9765 -0.1 + vertex -44.3648 -38.0673 -0.1 + vertex -41.2883 -38.1087 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -44.5451 -35.1844 -0.1 + vertex -44.3648 -38.0673 -0.1 + vertex -44.3237 -34.9765 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -44.7755 -35.3583 -0.1 + vertex -44.3648 -38.0673 -0.1 + vertex -44.5451 -35.1844 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -45.0179 -35.5019 -0.1 + vertex -44.3648 -38.0673 -0.1 + vertex -44.7755 -35.3583 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -45.2753 -35.6191 -0.1 + vertex -44.3648 -38.0673 -0.1 + vertex -45.0179 -35.5019 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -45.5508 -35.7136 -0.1 + vertex -44.3648 -38.0673 -0.1 + vertex -45.2753 -35.6191 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -45.8475 -35.7893 -0.1 + vertex -44.3648 -38.0673 -0.1 + vertex -45.5508 -35.7136 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -46.5272 -38.014 -0.1 + vertex -45.8475 -35.7893 -0.1 + vertex -46.1684 -35.8499 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -46.5272 -38.014 -0.1 + vertex -46.1684 -35.8499 -0.1 + vertex -46.4544 -35.9117 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -45.8475 -35.7893 -0.1 + vertex -46.5272 -38.014 -0.1 + vertex -44.3648 -38.0673 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -46.7228 -35.999 -0.1 + vertex -46.5272 -38.014 -0.1 + vertex -46.4544 -35.9117 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -46.9715 -36.1082 -0.1 + vertex -46.5272 -38.014 -0.1 + vertex -46.7228 -35.999 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -47.1985 -36.2359 -0.1 + vertex -46.5272 -38.014 -0.1 + vertex -46.9715 -36.1082 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -47.4015 -36.3788 -0.1 + vertex -46.5272 -38.014 -0.1 + vertex -47.1985 -36.2359 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -46.5272 -38.014 -0.1 + vertex -47.4015 -36.3788 -0.1 + vertex -47.1648 -37.9848 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -47.5785 -36.5332 -0.1 + vertex -47.1648 -37.9848 -0.1 + vertex -47.4015 -36.3788 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -47.7274 -36.6957 -0.1 + vertex -47.1648 -37.9848 -0.1 + vertex -47.5785 -36.5332 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -47.846 -36.863 -0.1 + vertex -47.1648 -37.9848 -0.1 + vertex -47.7274 -36.6957 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.1648 -37.9848 -0.1 + vertex -47.846 -36.863 -0.1 + vertex -47.4529 -37.9547 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -47.9322 -37.0315 -0.1 + vertex -47.4529 -37.9547 -0.1 + vertex -47.846 -36.863 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.4529 -37.9547 -0.1 + vertex -47.9322 -37.0315 -0.1 + vertex -47.6522 -37.8745 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -47.984 -37.1977 -0.1 + vertex -47.6522 -37.8745 -0.1 + vertex -47.9322 -37.0315 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.6522 -37.8745 -0.1 + vertex -47.984 -37.1977 -0.1 + vertex -47.8044 -37.7712 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -47.9993 -37.3583 -0.1 + vertex -47.8044 -37.7712 -0.1 + vertex -47.984 -37.1977 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.8044 -37.7712 -0.1 + vertex -47.9993 -37.3583 -0.1 + vertex -47.9115 -37.6485 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.9115 -37.6485 -0.1 + vertex -47.9993 -37.3583 -0.1 + vertex -47.9758 -37.5097 -0.1 + endloop + endfacet + facet normal -0.0100487 -0.99995 0 + outer loop + vertex -32.0944 -11.3029 -0.1 + vertex -27.175 -11.3523 0 + vertex -32.0944 -11.3029 0 + endloop + endfacet + facet normal -0.0100487 -0.99995 -0 + outer loop + vertex -27.175 -11.3523 0 + vertex -32.0944 -11.3029 -0.1 + vertex -27.175 -11.3523 -0.1 + endloop + endfacet + facet normal -0.0126654 -0.99992 0 + outer loop + vertex -27.175 -11.3523 -0.1 + vertex -17.7876 -11.4712 0 + vertex -27.175 -11.3523 0 + endloop + endfacet + facet normal -0.0126654 -0.99992 -0 + outer loop + vertex -17.7876 -11.4712 0 + vertex -27.175 -11.3523 -0.1 + vertex -17.7876 -11.4712 -0.1 + endloop + endfacet + facet normal -0.111827 -0.993728 0 + outer loop + vertex -17.7876 -11.4712 -0.1 + vertex -17.5514 -11.4978 0 + vertex -17.7876 -11.4712 0 + endloop + endfacet + facet normal -0.111827 -0.993728 -0 + outer loop + vertex -17.5514 -11.4978 0 + vertex -17.7876 -11.4712 -0.1 + vertex -17.5514 -11.4978 -0.1 + endloop + endfacet + facet normal -0.415864 -0.909427 0 + outer loop + vertex -17.5514 -11.4978 -0.1 + vertex -17.4764 -11.5321 0 + vertex -17.5514 -11.4978 0 + endloop + endfacet + facet normal -0.415864 -0.909427 -0 + outer loop + vertex -17.4764 -11.5321 0 + vertex -17.5514 -11.4978 -0.1 + vertex -17.4764 -11.5321 -0.1 + endloop + endfacet + facet normal -0.736355 -0.676596 0 + outer loop + vertex -17.4268 -11.5861 -0.1 + vertex -17.4764 -11.5321 0 + vertex -17.4764 -11.5321 -0.1 + endloop + endfacet + facet normal -0.736355 -0.676596 0 + outer loop + vertex -17.4764 -11.5321 0 + vertex -17.4268 -11.5861 -0.1 + vertex -17.4268 -11.5861 0 + endloop + endfacet + facet normal -0.946306 -0.323273 0 + outer loop + vertex -17.4002 -11.6639 -0.1 + vertex -17.4268 -11.5861 0 + vertex -17.4268 -11.5861 -0.1 + endloop + endfacet + facet normal -0.946306 -0.323273 0 + outer loop + vertex -17.4268 -11.5861 0 + vertex -17.4002 -11.6639 -0.1 + vertex -17.4002 -11.6639 0 + endloop + endfacet + facet normal -0.998372 -0.057036 0 + outer loop + vertex -17.3941 -11.77 -0.1 + vertex -17.4002 -11.6639 0 + vertex -17.4002 -11.6639 -0.1 + endloop + endfacet + facet normal -0.998372 -0.057036 0 + outer loop + vertex -17.4002 -11.6639 0 + vertex -17.3941 -11.77 -0.1 + vertex -17.3941 -11.77 0 + endloop + endfacet + facet normal -0.992058 0.125781 0 + outer loop + vertex -17.4339 -12.0833 -0.1 + vertex -17.3941 -11.77 0 + vertex -17.3941 -11.77 -0.1 + endloop + endfacet + facet normal -0.992058 0.125781 0 + outer loop + vertex -17.3941 -11.77 0 + vertex -17.4339 -12.0833 -0.1 + vertex -17.4339 -12.0833 0 + endloop + endfacet + facet normal -0.966487 0.256715 0 + outer loop + vertex -17.5116 -12.3759 -0.1 + vertex -17.4339 -12.0833 0 + vertex -17.4339 -12.0833 -0.1 + endloop + endfacet + facet normal -0.966487 0.256715 0 + outer loop + vertex -17.4339 -12.0833 0 + vertex -17.5116 -12.3759 -0.1 + vertex -17.5116 -12.3759 0 + endloop + endfacet + facet normal -0.949465 0.313873 0 + outer loop + vertex -17.6664 -12.8441 -0.1 + vertex -17.5116 -12.3759 0 + vertex -17.5116 -12.3759 -0.1 + endloop + endfacet + facet normal -0.949465 0.313873 0 + outer loop + vertex -17.5116 -12.3759 0 + vertex -17.6664 -12.8441 -0.1 + vertex -17.6664 -12.8441 0 + endloop + endfacet + facet normal -0.938494 0.345297 0 + outer loop + vertex -18.1466 -14.1495 -0.1 + vertex -17.6664 -12.8441 0 + vertex -17.6664 -12.8441 -0.1 + endloop + endfacet + facet normal -0.938494 0.345297 0 + outer loop + vertex -17.6664 -12.8441 0 + vertex -18.1466 -14.1495 -0.1 + vertex -18.1466 -14.1495 0 + endloop + endfacet + facet normal -0.929834 0.367979 0 + outer loop + vertex -18.7537 -15.6836 -0.1 + vertex -18.1466 -14.1495 0 + vertex -18.1466 -14.1495 -0.1 + endloop + endfacet + facet normal -0.929834 0.367979 0 + outer loop + vertex -18.1466 -14.1495 0 + vertex -18.7537 -15.6836 -0.1 + vertex -18.7537 -15.6836 0 + endloop + endfacet + facet normal -0.920782 0.390077 0 + outer loop + vertex -19.3667 -17.1305 -0.1 + vertex -18.7537 -15.6836 0 + vertex -18.7537 -15.6836 -0.1 + endloop + endfacet + facet normal -0.920782 0.390077 0 + outer loop + vertex -18.7537 -15.6836 0 + vertex -19.3667 -17.1305 -0.1 + vertex -19.3667 -17.1305 0 + endloop + endfacet + facet normal -0.87414 0.485675 0 + outer loop + vertex -19.4996 -17.3696 -0.1 + vertex -19.3667 -17.1305 0 + vertex -19.3667 -17.1305 -0.1 + endloop + endfacet + facet normal -0.87414 0.485675 0 + outer loop + vertex -19.3667 -17.1305 0 + vertex -19.4996 -17.3696 -0.1 + vertex -19.4996 -17.3696 0 + endloop + endfacet + facet normal -0.780486 0.625173 0 + outer loop + vertex -19.6713 -17.584 -0.1 + vertex -19.4996 -17.3696 0 + vertex -19.4996 -17.3696 -0.1 + endloop + endfacet + facet normal -0.780486 0.625173 0 + outer loop + vertex -19.4996 -17.3696 0 + vertex -19.6713 -17.584 -0.1 + vertex -19.6713 -17.584 0 + endloop + endfacet + facet normal -0.674318 0.738441 0 + outer loop + vertex -19.6713 -17.584 -0.1 + vertex -19.8743 -17.7693 0 + vertex -19.6713 -17.584 0 + endloop + endfacet + facet normal -0.674318 0.738441 0 + outer loop + vertex -19.8743 -17.7693 0 + vertex -19.6713 -17.584 -0.1 + vertex -19.8743 -17.7693 -0.1 + endloop + endfacet + facet normal -0.55704 0.830486 0 + outer loop + vertex -19.8743 -17.7693 -0.1 + vertex -20.1009 -17.9213 0 + vertex -19.8743 -17.7693 0 + endloop + endfacet + facet normal -0.55704 0.830486 0 + outer loop + vertex -20.1009 -17.9213 0 + vertex -19.8743 -17.7693 -0.1 + vertex -20.1009 -17.9213 -0.1 + endloop + endfacet + facet normal -0.42623 0.904615 0 + outer loop + vertex -20.1009 -17.9213 -0.1 + vertex -20.3435 -18.0357 0 + vertex -20.1009 -17.9213 0 + endloop + endfacet + facet normal -0.42623 0.904615 0 + outer loop + vertex -20.3435 -18.0357 0 + vertex -20.1009 -17.9213 -0.1 + vertex -20.3435 -18.0357 -0.1 + endloop + endfacet + facet normal -0.276826 0.96092 0 + outer loop + vertex -20.3435 -18.0357 -0.1 + vertex -20.5945 -18.108 0 + vertex -20.3435 -18.0357 0 + endloop + endfacet + facet normal -0.276826 0.96092 0 + outer loop + vertex -20.5945 -18.108 0 + vertex -20.3435 -18.0357 -0.1 + vertex -20.5945 -18.108 -0.1 + endloop + endfacet + facet normal -0.102621 0.994721 0 + outer loop + vertex -20.5945 -18.108 -0.1 + vertex -20.8463 -18.1339 0 + vertex -20.5945 -18.108 0 + endloop + endfacet + facet normal -0.102621 0.994721 0 + outer loop + vertex -20.8463 -18.1339 0 + vertex -20.5945 -18.108 -0.1 + vertex -20.8463 -18.1339 -0.1 + endloop + endfacet + facet normal 0.100283 0.994959 -0 + outer loop + vertex -20.8463 -18.1339 -0.1 + vertex -21.0912 -18.1093 0 + vertex -20.8463 -18.1339 0 + endloop + endfacet + facet normal 0.100283 0.994959 0 + outer loop + vertex -21.0912 -18.1093 0 + vertex -20.8463 -18.1339 -0.1 + vertex -21.0912 -18.1093 -0.1 + endloop + endfacet + facet normal 0.237758 0.971324 -0 + outer loop + vertex -21.0912 -18.1093 -0.1 + vertex -21.2545 -18.0693 0 + vertex -21.0912 -18.1093 0 + endloop + endfacet + facet normal 0.237758 0.971324 0 + outer loop + vertex -21.2545 -18.0693 0 + vertex -21.0912 -18.1093 -0.1 + vertex -21.2545 -18.0693 -0.1 + endloop + endfacet + facet normal 0.389432 0.921055 -0 + outer loop + vertex -21.2545 -18.0693 -0.1 + vertex -21.378 -18.0171 0 + vertex -21.2545 -18.0693 0 + endloop + endfacet + facet normal 0.389432 0.921055 0 + outer loop + vertex -21.378 -18.0171 0 + vertex -21.2545 -18.0693 -0.1 + vertex -21.378 -18.0171 -0.1 + endloop + endfacet + facet normal 0.679889 0.733315 -0 + outer loop + vertex -21.378 -18.0171 -0.1 + vertex -21.4669 -17.9347 0 + vertex -21.378 -18.0171 0 + endloop + endfacet + facet normal 0.679889 0.733315 0 + outer loop + vertex -21.4669 -17.9347 0 + vertex -21.378 -18.0171 -0.1 + vertex -21.4669 -17.9347 -0.1 + endloop + endfacet + facet normal 0.910139 0.414303 0 + outer loop + vertex -21.4669 -17.9347 0 + vertex -21.5263 -17.8042 -0.1 + vertex -21.5263 -17.8042 0 + endloop + endfacet + facet normal 0.910139 0.414303 0 + outer loop + vertex -21.5263 -17.8042 -0.1 + vertex -21.4669 -17.9347 0 + vertex -21.4669 -17.9347 -0.1 + endloop + endfacet + facet normal 0.984407 0.175905 0 + outer loop + vertex -21.5263 -17.8042 0 + vertex -21.5614 -17.6077 -0.1 + vertex -21.5614 -17.6077 0 + endloop + endfacet + facet normal 0.984407 0.175905 0 + outer loop + vertex -21.5614 -17.6077 -0.1 + vertex -21.5263 -17.8042 0 + vertex -21.5263 -17.8042 -0.1 + endloop + endfacet + facet normal 0.998374 0.057002 0 + outer loop + vertex -21.5614 -17.6077 0 + vertex -21.5774 -17.3273 -0.1 + vertex -21.5774 -17.3273 0 + endloop + endfacet + facet normal 0.998374 0.057002 0 + outer loop + vertex -21.5774 -17.3273 -0.1 + vertex -21.5614 -17.6077 0 + vertex -21.5614 -17.6077 -0.1 + endloop + endfacet + facet normal 0.999987 -0.00513458 0 + outer loop + vertex -21.5774 -17.3273 0 + vertex -21.5729 -16.4428 -0.1 + vertex -21.5729 -16.4428 0 + endloop + endfacet + facet normal 0.999987 -0.00513458 0 + outer loop + vertex -21.5729 -16.4428 -0.1 + vertex -21.5774 -17.3273 0 + vertex -21.5774 -17.3273 -0.1 + endloop + endfacet + facet normal 0.999992 -0.00401347 0 + outer loop + vertex -21.5729 -16.4428 0 + vertex -21.5693 -15.5508 -0.1 + vertex -21.5693 -15.5508 0 + endloop + endfacet + facet normal 0.999992 -0.00401347 0 + outer loop + vertex -21.5693 -15.5508 -0.1 + vertex -21.5729 -16.4428 0 + vertex -21.5729 -16.4428 -0.1 + endloop + endfacet + facet normal 0.997925 0.0643945 0 + outer loop + vertex -21.5693 -15.5508 0 + vertex -21.5879 -15.2616 -0.1 + vertex -21.5879 -15.2616 0 + endloop + endfacet + facet normal 0.997925 0.0643945 0 + outer loop + vertex -21.5879 -15.2616 -0.1 + vertex -21.5693 -15.5508 0 + vertex -21.5693 -15.5508 -0.1 + endloop + endfacet + facet normal 0.982338 0.187114 0 + outer loop + vertex -21.5879 -15.2616 0 + vertex -21.6284 -15.0493 -0.1 + vertex -21.6284 -15.0493 0 + endloop + endfacet + facet normal 0.982338 0.187114 0 + outer loop + vertex -21.6284 -15.0493 -0.1 + vertex -21.5879 -15.2616 0 + vertex -21.5879 -15.2616 -0.1 + endloop + endfacet + facet normal 0.915958 0.401274 0 + outer loop + vertex -21.6284 -15.0493 0 + vertex -21.6966 -14.8935 -0.1 + vertex -21.6966 -14.8935 0 + endloop + endfacet + facet normal 0.915958 0.401274 0 + outer loop + vertex -21.6966 -14.8935 -0.1 + vertex -21.6284 -15.0493 0 + vertex -21.6284 -15.0493 -0.1 + endloop + endfacet + facet normal 0.761577 0.648074 0 + outer loop + vertex -21.6966 -14.8935 0 + vertex -21.7989 -14.7733 -0.1 + vertex -21.7989 -14.7733 0 + endloop + endfacet + facet normal 0.761577 0.648074 0 + outer loop + vertex -21.7989 -14.7733 -0.1 + vertex -21.6966 -14.8935 0 + vertex -21.6966 -14.8935 -0.1 + endloop + endfacet + facet normal 0.593991 0.804472 -0 + outer loop + vertex -21.7989 -14.7733 -0.1 + vertex -21.9412 -14.6683 0 + vertex -21.7989 -14.7733 0 + endloop + endfacet + facet normal 0.593991 0.804472 0 + outer loop + vertex -21.9412 -14.6683 0 + vertex -21.7989 -14.7733 -0.1 + vertex -21.9412 -14.6683 -0.1 + endloop + endfacet + facet normal 0.506241 0.862392 -0 + outer loop + vertex -21.9412 -14.6683 -0.1 + vertex -22.1296 -14.5577 0 + vertex -21.9412 -14.6683 0 + endloop + endfacet + facet normal 0.506241 0.862392 0 + outer loop + vertex -22.1296 -14.5577 0 + vertex -21.9412 -14.6683 -0.1 + vertex -22.1296 -14.5577 -0.1 + endloop + endfacet + facet normal 0.406178 0.913794 -0 + outer loop + vertex -22.1296 -14.5577 -0.1 + vertex -22.3213 -14.4724 0 + vertex -22.1296 -14.5577 0 + endloop + endfacet + facet normal 0.406178 0.913794 0 + outer loop + vertex -22.3213 -14.4724 0 + vertex -22.1296 -14.5577 -0.1 + vertex -22.3213 -14.4724 -0.1 + endloop + endfacet + facet normal 0.272589 0.962131 -0 + outer loop + vertex -22.3213 -14.4724 -0.1 + vertex -22.5778 -14.3998 0 + vertex -22.3213 -14.4724 0 + endloop + endfacet + facet normal 0.272589 0.962131 0 + outer loop + vertex -22.5778 -14.3998 0 + vertex -22.3213 -14.4724 -0.1 + vertex -22.5778 -14.3998 -0.1 + endloop + endfacet + facet normal 0.181059 0.983472 -0 + outer loop + vertex -22.5778 -14.3998 -0.1 + vertex -22.9103 -14.3386 0 + vertex -22.5778 -14.3998 0 + endloop + endfacet + facet normal 0.181059 0.983472 0 + outer loop + vertex -22.9103 -14.3386 0 + vertex -22.5778 -14.3998 -0.1 + vertex -22.9103 -14.3386 -0.1 + endloop + endfacet + facet normal 0.120311 0.992736 -0 + outer loop + vertex -22.9103 -14.3386 -0.1 + vertex -23.3301 -14.2877 0 + vertex -22.9103 -14.3386 0 + endloop + endfacet + facet normal 0.120311 0.992736 0 + outer loop + vertex -23.3301 -14.2877 0 + vertex -22.9103 -14.3386 -0.1 + vertex -23.3301 -14.2877 -0.1 + endloop + endfacet + facet normal 0.0654234 0.997858 -0 + outer loop + vertex -23.3301 -14.2877 -0.1 + vertex -24.4767 -14.2125 0 + vertex -23.3301 -14.2877 0 + endloop + endfacet + facet normal 0.0654234 0.997858 0 + outer loop + vertex -24.4767 -14.2125 0 + vertex -23.3301 -14.2877 -0.1 + vertex -24.4767 -14.2125 -0.1 + endloop + endfacet + facet normal 0.0288976 0.999582 -0 + outer loop + vertex -24.4767 -14.2125 -0.1 + vertex -26.1077 -14.1654 0 + vertex -24.4767 -14.2125 0 + endloop + endfacet + facet normal 0.0288976 0.999582 0 + outer loop + vertex -26.1077 -14.1654 0 + vertex -24.4767 -14.2125 -0.1 + vertex -26.1077 -14.1654 -0.1 + endloop + endfacet + facet normal 0.0099076 0.999951 -0 + outer loop + vertex -26.1077 -14.1654 -0.1 + vertex -28.2448 -14.1442 0 + vertex -26.1077 -14.1654 0 + endloop + endfacet + facet normal 0.0099076 0.999951 0 + outer loop + vertex -28.2448 -14.1442 0 + vertex -26.1077 -14.1654 -0.1 + vertex -28.2448 -14.1442 -0.1 + endloop + endfacet + facet normal -0.0184714 0.999829 0 + outer loop + vertex -28.2448 -14.1442 -0.1 + vertex -28.9898 -14.1579 0 + vertex -28.2448 -14.1442 0 + endloop + endfacet + facet normal -0.0184714 0.999829 0 + outer loop + vertex -28.9898 -14.1579 0 + vertex -28.2448 -14.1442 -0.1 + vertex -28.9898 -14.1579 -0.1 + endloop + endfacet + facet normal -0.0583775 0.998295 0 + outer loop + vertex -28.9898 -14.1579 -0.1 + vertex -29.549 -14.1906 0 + vertex -28.9898 -14.1579 0 + endloop + endfacet + facet normal -0.0583775 0.998295 0 + outer loop + vertex -29.549 -14.1906 0 + vertex -28.9898 -14.1579 -0.1 + vertex -29.549 -14.1906 -0.1 + endloop + endfacet + facet normal -0.134346 0.990934 0 + outer loop + vertex -29.549 -14.1906 -0.1 + vertex -29.9449 -14.2443 0 + vertex -29.549 -14.1906 0 + endloop + endfacet + facet normal -0.134346 0.990934 0 + outer loop + vertex -29.9449 -14.2443 0 + vertex -29.549 -14.1906 -0.1 + vertex -29.9449 -14.2443 -0.1 + endloop + endfacet + facet normal -0.287948 0.957646 0 + outer loop + vertex -29.9449 -14.2443 -0.1 + vertex -30.1999 -14.321 0 + vertex -29.9449 -14.2443 0 + endloop + endfacet + facet normal -0.287948 0.957646 0 + outer loop + vertex -30.1999 -14.321 0 + vertex -29.9449 -14.2443 -0.1 + vertex -30.1999 -14.321 -0.1 + endloop + endfacet + facet normal -0.503498 0.863996 0 + outer loop + vertex -30.1999 -14.321 -0.1 + vertex -30.2816 -14.3686 0 + vertex -30.1999 -14.321 0 + endloop + endfacet + facet normal -0.503498 0.863996 0 + outer loop + vertex -30.2816 -14.3686 0 + vertex -30.1999 -14.321 -0.1 + vertex -30.2816 -14.3686 -0.1 + endloop + endfacet + facet normal -0.702151 0.712028 0 + outer loop + vertex -30.2816 -14.3686 -0.1 + vertex -30.3364 -14.4227 0 + vertex -30.2816 -14.3686 0 + endloop + endfacet + facet normal -0.702151 0.712028 0 + outer loop + vertex -30.3364 -14.4227 0 + vertex -30.2816 -14.3686 -0.1 + vertex -30.3364 -14.4227 -0.1 + endloop + endfacet + facet normal -0.891918 0.452198 0 + outer loop + vertex -30.3673 -14.4836 -0.1 + vertex -30.3364 -14.4227 0 + vertex -30.3364 -14.4227 -0.1 + endloop + endfacet + facet normal -0.891918 0.452198 0 + outer loop + vertex -30.3364 -14.4227 0 + vertex -30.3673 -14.4836 -0.1 + vertex -30.3673 -14.4836 0 + endloop + endfacet + facet normal -0.990022 0.140913 0 + outer loop + vertex -30.377 -14.5514 -0.1 + vertex -30.3673 -14.4836 0 + vertex -30.3673 -14.4836 -0.1 + endloop + endfacet + facet normal -0.990022 0.140913 0 + outer loop + vertex -30.3673 -14.4836 0 + vertex -30.377 -14.5514 -0.1 + vertex -30.377 -14.5514 0 + endloop + endfacet + facet normal -0.969743 0.244126 0 + outer loop + vertex -30.4158 -14.7057 -0.1 + vertex -30.377 -14.5514 0 + vertex -30.377 -14.5514 -0.1 + endloop + endfacet + facet normal -0.969743 0.244126 0 + outer loop + vertex -30.377 -14.5514 0 + vertex -30.4158 -14.7057 -0.1 + vertex -30.4158 -14.7057 0 + endloop + endfacet + facet normal -0.925454 0.378859 0 + outer loop + vertex -30.5215 -14.964 -0.1 + vertex -30.4158 -14.7057 0 + vertex -30.4158 -14.7057 -0.1 + endloop + endfacet + facet normal -0.925454 0.378859 0 + outer loop + vertex -30.4158 -14.7057 0 + vertex -30.5215 -14.964 -0.1 + vertex -30.5215 -14.964 0 + endloop + endfacet + facet normal -0.901668 0.432429 0 + outer loop + vertex -30.678 -15.2903 -0.1 + vertex -30.5215 -14.964 0 + vertex -30.5215 -14.964 -0.1 + endloop + endfacet + facet normal -0.901668 0.432429 0 + outer loop + vertex -30.5215 -14.964 0 + vertex -30.678 -15.2903 -0.1 + vertex -30.678 -15.2903 0 + endloop + endfacet + facet normal -0.882363 0.47057 0 + outer loop + vertex -30.8691 -15.6487 -0.1 + vertex -30.678 -15.2903 0 + vertex -30.678 -15.2903 -0.1 + endloop + endfacet + facet normal -0.882363 0.47057 0 + outer loop + vertex -30.678 -15.2903 0 + vertex -30.8691 -15.6487 -0.1 + vertex -30.8691 -15.6487 0 + endloop + endfacet + facet normal -0.892172 0.451696 0 + outer loop + vertex -31.1223 -16.1487 -0.1 + vertex -30.8691 -15.6487 0 + vertex -30.8691 -15.6487 -0.1 + endloop + endfacet + facet normal -0.892172 0.451696 0 + outer loop + vertex -30.8691 -15.6487 0 + vertex -31.1223 -16.1487 -0.1 + vertex -31.1223 -16.1487 0 + endloop + endfacet + facet normal -0.909515 0.415671 0 + outer loop + vertex -31.4477 -16.8607 -0.1 + vertex -31.1223 -16.1487 0 + vertex -31.1223 -16.1487 -0.1 + endloop + endfacet + facet normal -0.909515 0.415671 0 + outer loop + vertex -31.1223 -16.1487 0 + vertex -31.4477 -16.8607 -0.1 + vertex -31.4477 -16.8607 0 + endloop + endfacet + facet normal -0.918988 0.394285 0 + outer loop + vertex -31.8034 -17.6899 -0.1 + vertex -31.4477 -16.8607 0 + vertex -31.4477 -16.8607 -0.1 + endloop + endfacet + facet normal -0.918988 0.394285 0 + outer loop + vertex -31.4477 -16.8607 0 + vertex -31.8034 -17.6899 -0.1 + vertex -31.8034 -17.6899 0 + endloop + endfacet + facet normal -0.927129 0.374741 0 + outer loop + vertex -32.1476 -18.5412 -0.1 + vertex -31.8034 -17.6899 0 + vertex -31.8034 -17.6899 -0.1 + endloop + endfacet + facet normal -0.927129 0.374741 0 + outer loop + vertex -31.8034 -17.6899 0 + vertex -32.1476 -18.5412 -0.1 + vertex -32.1476 -18.5412 0 + endloop + endfacet + facet normal -0.929897 0.36782 0 + outer loop + vertex -33.2902 -21.4299 -0.1 + vertex -32.1476 -18.5412 0 + vertex -32.1476 -18.5412 -0.1 + endloop + endfacet + facet normal -0.929897 0.36782 0 + outer loop + vertex -32.1476 -18.5412 0 + vertex -33.2902 -21.4299 -0.1 + vertex -33.2902 -21.4299 0 + endloop + endfacet + facet normal -0.931897 0.362724 0 + outer loop + vertex -33.4325 -21.7956 -0.1 + vertex -33.2902 -21.4299 0 + vertex -33.2902 -21.4299 -0.1 + endloop + endfacet + facet normal -0.931897 0.362724 0 + outer loop + vertex -33.2902 -21.4299 0 + vertex -33.4325 -21.7956 -0.1 + vertex -33.4325 -21.7956 0 + endloop + endfacet + facet normal -0.968991 0.247098 0 + outer loop + vertex -33.503 -22.0719 -0.1 + vertex -33.4325 -21.7956 0 + vertex -33.4325 -21.7956 -0.1 + endloop + endfacet + facet normal -0.968991 0.247098 0 + outer loop + vertex -33.4325 -21.7956 0 + vertex -33.503 -22.0719 -0.1 + vertex -33.503 -22.0719 0 + endloop + endfacet + facet normal -0.999995 -0.00318704 0 + outer loop + vertex -33.5026 -22.1809 -0.1 + vertex -33.503 -22.0719 0 + vertex -33.503 -22.0719 -0.1 + endloop + endfacet + facet normal -0.999995 -0.00318704 0 + outer loop + vertex -33.503 -22.0719 0 + vertex -33.5026 -22.1809 -0.1 + vertex -33.5026 -22.1809 0 + endloop + endfacet + facet normal -0.954349 -0.298693 0 + outer loop + vertex -33.4739 -22.2725 -0.1 + vertex -33.5026 -22.1809 0 + vertex -33.5026 -22.1809 -0.1 + endloop + endfacet + facet normal -0.954349 -0.298693 0 + outer loop + vertex -33.5026 -22.1809 0 + vertex -33.4739 -22.2725 -0.1 + vertex -33.4739 -22.2725 0 + endloop + endfacet + facet normal -0.782807 -0.622265 0 + outer loop + vertex -33.4135 -22.3486 -0.1 + vertex -33.4739 -22.2725 0 + vertex -33.4739 -22.2725 -0.1 + endloop + endfacet + facet normal -0.782807 -0.622265 0 + outer loop + vertex -33.4739 -22.2725 0 + vertex -33.4135 -22.3486 -0.1 + vertex -33.4135 -22.3486 0 + endloop + endfacet + facet normal -0.544751 -0.838598 0 + outer loop + vertex -33.4135 -22.3486 -0.1 + vertex -33.3177 -22.4108 0 + vertex -33.4135 -22.3486 0 + endloop + endfacet + facet normal -0.544751 -0.838598 -0 + outer loop + vertex -33.3177 -22.4108 0 + vertex -33.4135 -22.3486 -0.1 + vertex -33.3177 -22.4108 -0.1 + endloop + endfacet + facet normal -0.348432 -0.937334 0 + outer loop + vertex -33.3177 -22.4108 -0.1 + vertex -33.1833 -22.4608 0 + vertex -33.3177 -22.4108 0 + endloop + endfacet + facet normal -0.348432 -0.937334 -0 + outer loop + vertex -33.1833 -22.4608 0 + vertex -33.3177 -22.4108 -0.1 + vertex -33.1833 -22.4608 -0.1 + endloop + endfacet + facet normal -0.218014 -0.975946 0 + outer loop + vertex -33.1833 -22.4608 -0.1 + vertex -33.0067 -22.5002 0 + vertex -33.1833 -22.4608 0 + endloop + endfacet + facet normal -0.218014 -0.975946 -0 + outer loop + vertex -33.0067 -22.5002 0 + vertex -33.1833 -22.4608 -0.1 + vertex -33.0067 -22.5002 -0.1 + endloop + endfacet + facet normal -0.108894 -0.994053 0 + outer loop + vertex -33.0067 -22.5002 -0.1 + vertex -32.5132 -22.5543 0 + vertex -33.0067 -22.5002 0 + endloop + endfacet + facet normal -0.108894 -0.994053 -0 + outer loop + vertex -32.5132 -22.5543 0 + vertex -33.0067 -22.5002 -0.1 + vertex -32.5132 -22.5543 -0.1 + endloop + endfacet + facet normal -0.0456949 -0.998955 0 + outer loop + vertex -32.5132 -22.5543 -0.1 + vertex -31.8095 -22.5865 0 + vertex -32.5132 -22.5543 0 + endloop + endfacet + facet normal -0.0456949 -0.998955 -0 + outer loop + vertex -31.8095 -22.5865 0 + vertex -32.5132 -22.5543 -0.1 + vertex -31.8095 -22.5865 -0.1 + endloop + endfacet + facet normal -0.0252584 -0.999681 0 + outer loop + vertex -31.8095 -22.5865 -0.1 + vertex -30.868 -22.6102 0 + vertex -31.8095 -22.5865 0 + endloop + endfacet + facet normal -0.0252584 -0.999681 -0 + outer loop + vertex -30.868 -22.6102 0 + vertex -31.8095 -22.5865 -0.1 + vertex -30.868 -22.6102 -0.1 + endloop + endfacet + facet normal -0.0103281 -0.999947 0 + outer loop + vertex -30.868 -22.6102 -0.1 + vertex -30.2322 -22.6168 0 + vertex -30.868 -22.6102 0 + endloop + endfacet + facet normal -0.0103281 -0.999947 -0 + outer loop + vertex -30.2322 -22.6168 0 + vertex -30.868 -22.6102 -0.1 + vertex -30.2322 -22.6168 -0.1 + endloop + endfacet + facet normal 0.0183057 -0.999832 0 + outer loop + vertex -30.2322 -22.6168 -0.1 + vertex -29.6427 -22.606 0 + vertex -30.2322 -22.6168 0 + endloop + endfacet + facet normal 0.0183057 -0.999832 0 + outer loop + vertex -29.6427 -22.606 0 + vertex -30.2322 -22.6168 -0.1 + vertex -29.6427 -22.606 -0.1 + endloop + endfacet + facet normal 0.0536309 -0.998561 0 + outer loop + vertex -29.6427 -22.606 -0.1 + vertex -29.0966 -22.5767 0 + vertex -29.6427 -22.606 0 + endloop + endfacet + facet normal 0.0536309 -0.998561 0 + outer loop + vertex -29.0966 -22.5767 0 + vertex -29.6427 -22.606 -0.1 + vertex -29.0966 -22.5767 -0.1 + endloop + endfacet + facet normal 0.0966018 -0.995323 0 + outer loop + vertex -29.0966 -22.5767 -0.1 + vertex -28.5914 -22.5277 0 + vertex -29.0966 -22.5767 0 + endloop + endfacet + facet normal 0.0966018 -0.995323 0 + outer loop + vertex -28.5914 -22.5277 0 + vertex -29.0966 -22.5767 -0.1 + vertex -28.5914 -22.5277 -0.1 + endloop + endfacet + facet normal 0.148005 -0.988987 0 + outer loop + vertex -28.5914 -22.5277 -0.1 + vertex -28.1242 -22.4577 0 + vertex -28.5914 -22.5277 0 + endloop + endfacet + facet normal 0.148005 -0.988987 0 + outer loop + vertex -28.1242 -22.4577 0 + vertex -28.5914 -22.5277 -0.1 + vertex -28.1242 -22.4577 -0.1 + endloop + endfacet + facet normal 0.208284 -0.978068 0 + outer loop + vertex -28.1242 -22.4577 -0.1 + vertex -27.6923 -22.3658 0 + vertex -28.1242 -22.4577 0 + endloop + endfacet + facet normal 0.208284 -0.978068 0 + outer loop + vertex -27.6923 -22.3658 0 + vertex -28.1242 -22.4577 -0.1 + vertex -27.6923 -22.3658 -0.1 + endloop + endfacet + facet normal 0.277178 -0.960818 0 + outer loop + vertex -27.6923 -22.3658 -0.1 + vertex -27.2929 -22.2506 0 + vertex -27.6923 -22.3658 0 + endloop + endfacet + facet normal 0.277178 -0.960818 0 + outer loop + vertex -27.2929 -22.2506 0 + vertex -27.6923 -22.3658 -0.1 + vertex -27.2929 -22.2506 -0.1 + endloop + endfacet + facet normal 0.353412 -0.935468 0 + outer loop + vertex -27.2929 -22.2506 -0.1 + vertex -26.9234 -22.1109 0 + vertex -27.2929 -22.2506 0 + endloop + endfacet + facet normal 0.353412 -0.935468 0 + outer loop + vertex -26.9234 -22.1109 0 + vertex -27.2929 -22.2506 -0.1 + vertex -26.9234 -22.1109 -0.1 + endloop + endfacet + facet normal 0.434442 -0.9007 0 + outer loop + vertex -26.9234 -22.1109 -0.1 + vertex -26.5809 -21.9457 0 + vertex -26.9234 -22.1109 0 + endloop + endfacet + facet normal 0.434442 -0.9007 0 + outer loop + vertex -26.5809 -21.9457 0 + vertex -26.9234 -22.1109 -0.1 + vertex -26.5809 -21.9457 -0.1 + endloop + endfacet + facet normal 0.516567 -0.856247 0 + outer loop + vertex -26.5809 -21.9457 -0.1 + vertex -26.2627 -21.7538 0 + vertex -26.5809 -21.9457 0 + endloop + endfacet + facet normal 0.516567 -0.856247 0 + outer loop + vertex -26.2627 -21.7538 0 + vertex -26.5809 -21.9457 -0.1 + vertex -26.2627 -21.7538 -0.1 + endloop + endfacet + facet normal 0.595538 -0.803327 0 + outer loop + vertex -26.2627 -21.7538 -0.1 + vertex -25.9661 -21.5339 0 + vertex -26.2627 -21.7538 0 + endloop + endfacet + facet normal 0.595538 -0.803327 0 + outer loop + vertex -25.9661 -21.5339 0 + vertex -26.2627 -21.7538 -0.1 + vertex -25.9661 -21.5339 -0.1 + endloop + endfacet + facet normal 0.667477 -0.744631 0 + outer loop + vertex -25.9661 -21.5339 -0.1 + vertex -25.6884 -21.2849 0 + vertex -25.9661 -21.5339 0 + endloop + endfacet + facet normal 0.667477 -0.744631 0 + outer loop + vertex -25.6884 -21.2849 0 + vertex -25.9661 -21.5339 -0.1 + vertex -25.6884 -21.2849 -0.1 + endloop + endfacet + facet normal 0.729709 -0.683757 0 + outer loop + vertex -25.6884 -21.2849 0 + vertex -25.4267 -21.0057 -0.1 + vertex -25.4267 -21.0057 0 + endloop + endfacet + facet normal 0.729709 -0.683757 0 + outer loop + vertex -25.4267 -21.0057 -0.1 + vertex -25.6884 -21.2849 0 + vertex -25.6884 -21.2849 -0.1 + endloop + endfacet + facet normal 0.781167 -0.624322 0 + outer loop + vertex -25.4267 -21.0057 0 + vertex -25.1784 -20.695 -0.1 + vertex -25.1784 -20.695 0 + endloop + endfacet + facet normal 0.781167 -0.624322 0 + outer loop + vertex -25.1784 -20.695 -0.1 + vertex -25.4267 -21.0057 0 + vertex -25.4267 -21.0057 -0.1 + endloop + endfacet + facet normal 0.82216 -0.569257 0 + outer loop + vertex -25.1784 -20.695 0 + vertex -24.9407 -20.3516 -0.1 + vertex -24.9407 -20.3516 0 + endloop + endfacet + facet normal 0.82216 -0.569257 0 + outer loop + vertex -24.9407 -20.3516 -0.1 + vertex -25.1784 -20.695 0 + vertex -25.1784 -20.695 -0.1 + endloop + endfacet + facet normal 0.853894 -0.520447 0 + outer loop + vertex -24.9407 -20.3516 0 + vertex -24.7108 -19.9745 -0.1 + vertex -24.7108 -19.9745 0 + endloop + endfacet + facet normal 0.853894 -0.520447 0 + outer loop + vertex -24.7108 -19.9745 -0.1 + vertex -24.9407 -20.3516 0 + vertex -24.9407 -20.3516 -0.1 + endloop + endfacet + facet normal 0.85126 -0.524745 0 + outer loop + vertex -24.7108 -19.9745 0 + vertex -24.3738 -19.4278 -0.1 + vertex -24.3738 -19.4278 0 + endloop + endfacet + facet normal 0.85126 -0.524745 0 + outer loop + vertex -24.3738 -19.4278 -0.1 + vertex -24.7108 -19.9745 0 + vertex -24.7108 -19.9745 -0.1 + endloop + endfacet + facet normal 0.796036 -0.60525 0 + outer loop + vertex -24.3738 -19.4278 0 + vertex -24.2328 -19.2424 -0.1 + vertex -24.2328 -19.2424 0 + endloop + endfacet + facet normal 0.796036 -0.60525 0 + outer loop + vertex -24.2328 -19.2424 -0.1 + vertex -24.3738 -19.4278 0 + vertex -24.3738 -19.4278 -0.1 + endloop + endfacet + facet normal 0.714094 -0.70005 0 + outer loop + vertex -24.2328 -19.2424 0 + vertex -24.0993 -19.1062 -0.1 + vertex -24.0993 -19.1062 0 + endloop + endfacet + facet normal 0.714094 -0.70005 0 + outer loop + vertex -24.0993 -19.1062 -0.1 + vertex -24.2328 -19.2424 0 + vertex -24.2328 -19.2424 -0.1 + endloop + endfacet + facet normal 0.573399 -0.819276 0 + outer loop + vertex -24.0993 -19.1062 -0.1 + vertex -23.9653 -19.0124 0 + vertex -24.0993 -19.1062 0 + endloop + endfacet + facet normal 0.573399 -0.819276 0 + outer loop + vertex -23.9653 -19.0124 0 + vertex -24.0993 -19.1062 -0.1 + vertex -23.9653 -19.0124 -0.1 + endloop + endfacet + facet normal 0.378849 -0.925458 0 + outer loop + vertex -23.9653 -19.0124 -0.1 + vertex -23.8226 -18.954 0 + vertex -23.9653 -19.0124 0 + endloop + endfacet + facet normal 0.378849 -0.925458 0 + outer loop + vertex -23.8226 -18.954 0 + vertex -23.9653 -19.0124 -0.1 + vertex -23.8226 -18.954 -0.1 + endloop + endfacet + facet normal 0.184661 -0.982802 0 + outer loop + vertex -23.8226 -18.954 -0.1 + vertex -23.6632 -18.9241 0 + vertex -23.8226 -18.954 0 + endloop + endfacet + facet normal 0.184661 -0.982802 0 + outer loop + vertex -23.6632 -18.9241 0 + vertex -23.8226 -18.954 -0.1 + vertex -23.6632 -18.9241 -0.1 + endloop + endfacet + facet normal 0.0457652 -0.998952 0 + outer loop + vertex -23.6632 -18.9241 -0.1 + vertex -23.4791 -18.9156 0 + vertex -23.6632 -18.9241 0 + endloop + endfacet + facet normal 0.0457652 -0.998952 0 + outer loop + vertex -23.4791 -18.9156 0 + vertex -23.6632 -18.9241 -0.1 + vertex -23.4791 -18.9156 -0.1 + endloop + endfacet + facet normal -0.0578368 -0.998326 0 + outer loop + vertex -23.4791 -18.9156 -0.1 + vertex -23.1186 -18.9365 0 + vertex -23.4791 -18.9156 0 + endloop + endfacet + facet normal -0.0578368 -0.998326 -0 + outer loop + vertex -23.1186 -18.9365 0 + vertex -23.4791 -18.9156 -0.1 + vertex -23.1186 -18.9365 -0.1 + endloop + endfacet + facet normal -0.193675 -0.981066 0 + outer loop + vertex -23.1186 -18.9365 -0.1 + vertex -22.9739 -18.9651 0 + vertex -23.1186 -18.9365 0 + endloop + endfacet + facet normal -0.193675 -0.981066 -0 + outer loop + vertex -22.9739 -18.9651 0 + vertex -23.1186 -18.9365 -0.1 + vertex -22.9739 -18.9651 -0.1 + endloop + endfacet + facet normal -0.332798 -0.942998 0 + outer loop + vertex -22.9739 -18.9651 -0.1 + vertex -22.8524 -19.008 0 + vertex -22.9739 -18.9651 0 + endloop + endfacet + facet normal -0.332798 -0.942998 -0 + outer loop + vertex -22.8524 -19.008 0 + vertex -22.9739 -18.9651 -0.1 + vertex -22.8524 -19.008 -0.1 + endloop + endfacet + facet normal -0.512852 -0.858477 0 + outer loop + vertex -22.8524 -19.008 -0.1 + vertex -22.7539 -19.0668 0 + vertex -22.8524 -19.008 0 + endloop + endfacet + facet normal -0.512852 -0.858477 -0 + outer loop + vertex -22.7539 -19.0668 0 + vertex -22.8524 -19.008 -0.1 + vertex -22.7539 -19.0668 -0.1 + endloop + endfacet + facet normal -0.710432 -0.703766 0 + outer loop + vertex -22.6782 -19.1432 -0.1 + vertex -22.7539 -19.0668 0 + vertex -22.7539 -19.0668 -0.1 + endloop + endfacet + facet normal -0.710432 -0.703766 0 + outer loop + vertex -22.7539 -19.0668 0 + vertex -22.6782 -19.1432 -0.1 + vertex -22.6782 -19.1432 0 + endloop + endfacet + facet normal -0.873955 -0.486007 0 + outer loop + vertex -22.625 -19.2389 -0.1 + vertex -22.6782 -19.1432 0 + vertex -22.6782 -19.1432 -0.1 + endloop + endfacet + facet normal -0.873955 -0.486007 0 + outer loop + vertex -22.6782 -19.1432 0 + vertex -22.625 -19.2389 -0.1 + vertex -22.625 -19.2389 0 + endloop + endfacet + facet normal -0.966491 -0.256701 0 + outer loop + vertex -22.594 -19.3555 -0.1 + vertex -22.625 -19.2389 0 + vertex -22.625 -19.2389 -0.1 + endloop + endfacet + facet normal -0.966491 -0.256701 0 + outer loop + vertex -22.625 -19.2389 0 + vertex -22.594 -19.3555 -0.1 + vertex -22.594 -19.3555 0 + endloop + endfacet + facet normal -0.997923 -0.0644192 0 + outer loop + vertex -22.585 -19.4947 -0.1 + vertex -22.594 -19.3555 0 + vertex -22.594 -19.3555 -0.1 + endloop + endfacet + facet normal -0.997923 -0.0644192 0 + outer loop + vertex -22.594 -19.3555 0 + vertex -22.585 -19.4947 -0.1 + vertex -22.585 -19.4947 0 + endloop + endfacet + facet normal -0.996972 0.0777592 0 + outer loop + vertex -22.5978 -19.6581 -0.1 + vertex -22.585 -19.4947 0 + vertex -22.585 -19.4947 -0.1 + endloop + endfacet + facet normal -0.996972 0.0777592 0 + outer loop + vertex -22.585 -19.4947 0 + vertex -22.5978 -19.6581 -0.1 + vertex -22.5978 -19.6581 0 + endloop + endfacet + facet normal -0.976488 0.215571 0 + outer loop + vertex -22.6874 -20.0641 -0.1 + vertex -22.5978 -19.6581 0 + vertex -22.5978 -19.6581 -0.1 + endloop + endfacet + facet normal -0.976488 0.215571 0 + outer loop + vertex -22.5978 -19.6581 0 + vertex -22.6874 -20.0641 -0.1 + vertex -22.6874 -20.0641 0 + endloop + endfacet + facet normal -0.949119 0.314918 0 + outer loop + vertex -22.8608 -20.5868 -0.1 + vertex -22.6874 -20.0641 0 + vertex -22.6874 -20.0641 -0.1 + endloop + endfacet + facet normal -0.949119 0.314918 0 + outer loop + vertex -22.6874 -20.0641 0 + vertex -22.8608 -20.5868 -0.1 + vertex -22.8608 -20.5868 0 + endloop + endfacet + facet normal -0.931342 0.364145 0 + outer loop + vertex -23.116 -21.2395 -0.1 + vertex -22.8608 -20.5868 0 + vertex -22.8608 -20.5868 -0.1 + endloop + endfacet + facet normal -0.931342 0.364145 0 + outer loop + vertex -22.8608 -20.5868 0 + vertex -23.116 -21.2395 -0.1 + vertex -23.116 -21.2395 0 + endloop + endfacet + facet normal -0.926122 0.377225 0 + outer loop + vertex -24.3958 -24.3815 -0.1 + vertex -23.116 -21.2395 0 + vertex -23.116 -21.2395 -0.1 + endloop + endfacet + facet normal -0.926122 0.377225 0 + outer loop + vertex -23.116 -21.2395 0 + vertex -24.3958 -24.3815 -0.1 + vertex -24.3958 -24.3815 0 + endloop + endfacet + facet normal -0.92485 0.380332 0 + outer loop + vertex -24.9793 -25.8003 -0.1 + vertex -24.3958 -24.3815 0 + vertex -24.3958 -24.3815 -0.1 + endloop + endfacet + facet normal -0.92485 0.380332 0 + outer loop + vertex -24.3958 -24.3815 0 + vertex -24.9793 -25.8003 -0.1 + vertex -24.9793 -25.8003 0 + endloop + endfacet + facet normal -0.917414 0.397935 0 + outer loop + vertex -25.4624 -26.9141 -0.1 + vertex -24.9793 -25.8003 0 + vertex -24.9793 -25.8003 -0.1 + endloop + endfacet + facet normal -0.917414 0.397935 0 + outer loop + vertex -24.9793 -25.8003 0 + vertex -25.4624 -26.9141 -0.1 + vertex -25.4624 -26.9141 0 + endloop + endfacet + facet normal -0.901103 0.433605 0 + outer loop + vertex -25.8688 -27.7587 -0.1 + vertex -25.4624 -26.9141 0 + vertex -25.4624 -26.9141 -0.1 + endloop + endfacet + facet normal -0.901103 0.433605 0 + outer loop + vertex -25.4624 -26.9141 0 + vertex -25.8688 -27.7587 -0.1 + vertex -25.8688 -27.7587 0 + endloop + endfacet + facet normal -0.87739 0.479778 0 + outer loop + vertex -26.0506 -28.0911 -0.1 + vertex -25.8688 -27.7587 0 + vertex -25.8688 -27.7587 -0.1 + endloop + endfacet + facet normal -0.87739 0.479778 0 + outer loop + vertex -25.8688 -27.7587 0 + vertex -26.0506 -28.0911 -0.1 + vertex -26.0506 -28.0911 0 + endloop + endfacet + facet normal -0.851572 0.524237 0 + outer loop + vertex -26.2221 -28.3696 -0.1 + vertex -26.0506 -28.0911 0 + vertex -26.0506 -28.0911 -0.1 + endloop + endfacet + facet normal -0.851572 0.524237 0 + outer loop + vertex -26.0506 -28.0911 0 + vertex -26.2221 -28.3696 -0.1 + vertex -26.2221 -28.3696 0 + endloop + endfacet + facet normal -0.812951 0.582331 0 + outer loop + vertex -26.3861 -28.5987 -0.1 + vertex -26.2221 -28.3696 0 + vertex -26.2221 -28.3696 -0.1 + endloop + endfacet + facet normal -0.812951 0.582331 0 + outer loop + vertex -26.2221 -28.3696 0 + vertex -26.3861 -28.5987 -0.1 + vertex -26.3861 -28.5987 0 + endloop + endfacet + facet normal -0.755407 0.655255 0 + outer loop + vertex -26.5458 -28.7827 -0.1 + vertex -26.3861 -28.5987 0 + vertex -26.3861 -28.5987 -0.1 + endloop + endfacet + facet normal -0.755407 0.655255 0 + outer loop + vertex -26.3861 -28.5987 0 + vertex -26.5458 -28.7827 -0.1 + vertex -26.5458 -28.7827 0 + endloop + endfacet + facet normal -0.671936 0.740609 0 + outer loop + vertex -26.5458 -28.7827 -0.1 + vertex -26.7039 -28.9262 0 + vertex -26.5458 -28.7827 0 + endloop + endfacet + facet normal -0.671936 0.740609 0 + outer loop + vertex -26.7039 -28.9262 0 + vertex -26.5458 -28.7827 -0.1 + vertex -26.7039 -28.9262 -0.1 + endloop + endfacet + facet normal -0.558253 0.829671 0 + outer loop + vertex -26.7039 -28.9262 -0.1 + vertex -26.8635 -29.0336 0 + vertex -26.7039 -28.9262 0 + endloop + endfacet + facet normal -0.558253 0.829671 0 + outer loop + vertex -26.8635 -29.0336 0 + vertex -26.7039 -28.9262 -0.1 + vertex -26.8635 -29.0336 -0.1 + endloop + endfacet + facet normal -0.419339 0.90783 0 + outer loop + vertex -26.8635 -29.0336 -0.1 + vertex -27.0275 -29.1093 0 + vertex -26.8635 -29.0336 0 + endloop + endfacet + facet normal -0.419339 0.90783 0 + outer loop + vertex -27.0275 -29.1093 0 + vertex -26.8635 -29.0336 -0.1 + vertex -27.0275 -29.1093 -0.1 + endloop + endfacet + facet normal -0.272797 0.962072 0 + outer loop + vertex -27.0275 -29.1093 -0.1 + vertex -27.1989 -29.1579 0 + vertex -27.0275 -29.1093 0 + endloop + endfacet + facet normal -0.272797 0.962072 0 + outer loop + vertex -27.1989 -29.1579 0 + vertex -27.0275 -29.1093 -0.1 + vertex -27.1989 -29.1579 -0.1 + endloop + endfacet + facet normal -0.141044 0.990003 0 + outer loop + vertex -27.1989 -29.1579 -0.1 + vertex -27.3805 -29.1838 0 + vertex -27.1989 -29.1579 0 + endloop + endfacet + facet normal -0.141044 0.990003 0 + outer loop + vertex -27.3805 -29.1838 0 + vertex -27.1989 -29.1579 -0.1 + vertex -27.3805 -29.1838 -0.1 + endloop + endfacet + facet normal -0.0391387 0.999234 0 + outer loop + vertex -27.3805 -29.1838 -0.1 + vertex -27.5755 -29.1914 0 + vertex -27.3805 -29.1838 0 + endloop + endfacet + facet normal -0.0391387 0.999234 0 + outer loop + vertex -27.5755 -29.1914 0 + vertex -27.3805 -29.1838 -0.1 + vertex -27.5755 -29.1914 -0.1 + endloop + endfacet + facet normal 0.0328742 0.999459 -0 + outer loop + vertex -27.5755 -29.1914 -0.1 + vertex -27.9775 -29.1782 0 + vertex -27.5755 -29.1914 0 + endloop + endfacet + facet normal 0.0328742 0.999459 0 + outer loop + vertex -27.9775 -29.1782 0 + vertex -27.5755 -29.1914 -0.1 + vertex -27.9775 -29.1782 -0.1 + endloop + endfacet + facet normal 0.226397 0.974035 -0 + outer loop + vertex -27.9775 -29.1782 -0.1 + vertex -28.0989 -29.15 0 + vertex -27.9775 -29.1782 0 + endloop + endfacet + facet normal 0.226397 0.974035 0 + outer loop + vertex -28.0989 -29.15 0 + vertex -27.9775 -29.1782 -0.1 + vertex -28.0989 -29.15 -0.1 + endloop + endfacet + facet normal 0.566674 0.823942 -0 + outer loop + vertex -28.0989 -29.15 -0.1 + vertex -28.176 -29.097 0 + vertex -28.0989 -29.15 0 + endloop + endfacet + facet normal 0.566674 0.823942 0 + outer loop + vertex -28.176 -29.097 0 + vertex -28.0989 -29.15 -0.1 + vertex -28.176 -29.097 -0.1 + endloop + endfacet + facet normal 0.908757 0.417326 0 + outer loop + vertex -28.176 -29.097 0 + vertex -28.2154 -29.0113 -0.1 + vertex -28.2154 -29.0113 0 + endloop + endfacet + facet normal 0.908757 0.417326 0 + outer loop + vertex -28.2154 -29.0113 -0.1 + vertex -28.176 -29.097 0 + vertex -28.176 -29.097 -0.1 + endloop + endfacet + facet normal 0.997947 0.0640397 0 + outer loop + vertex -28.2154 -29.0113 0 + vertex -28.2235 -28.8853 -0.1 + vertex -28.2235 -28.8853 0 + endloop + endfacet + facet normal 0.997947 0.0640397 0 + outer loop + vertex -28.2235 -28.8853 -0.1 + vertex -28.2154 -29.0113 0 + vertex -28.2154 -29.0113 -0.1 + endloop + endfacet + facet normal 0.992038 -0.125943 0 + outer loop + vertex -28.2235 -28.8853 0 + vertex -28.1721 -28.4809 -0.1 + vertex -28.1721 -28.4809 0 + endloop + endfacet + facet normal 0.992038 -0.125943 0 + outer loop + vertex -28.1721 -28.4809 -0.1 + vertex -28.2235 -28.8853 0 + vertex -28.2235 -28.8853 -0.1 + endloop + endfacet + facet normal 0.988281 -0.152644 0 + outer loop + vertex -28.1721 -28.4809 0 + vertex -27.9393 -26.9734 -0.1 + vertex -27.9393 -26.9734 0 + endloop + endfacet + facet normal 0.988281 -0.152644 0 + outer loop + vertex -27.9393 -26.9734 -0.1 + vertex -28.1721 -28.4809 0 + vertex -28.1721 -28.4809 -0.1 + endloop + endfacet + facet normal 0.994809 -0.101759 0 + outer loop + vertex -27.9393 -26.9734 0 + vertex -27.8924 -26.5154 -0.1 + vertex -27.8924 -26.5154 0 + endloop + endfacet + facet normal 0.994809 -0.101759 0 + outer loop + vertex -27.8924 -26.5154 -0.1 + vertex -27.9393 -26.9734 0 + vertex -27.9393 -26.9734 -0.1 + endloop + endfacet + facet normal 0.999788 0.0205947 0 + outer loop + vertex -27.8924 -26.5154 0 + vertex -27.8988 -26.2055 -0.1 + vertex -27.8988 -26.2055 0 + endloop + endfacet + facet normal 0.999788 0.0205947 0 + outer loop + vertex -27.8988 -26.2055 -0.1 + vertex -27.8924 -26.5154 0 + vertex -27.8924 -26.5154 -0.1 + endloop + endfacet + facet normal 0.975965 0.217927 0 + outer loop + vertex -27.8988 -26.2055 0 + vertex -27.9236 -26.0946 -0.1 + vertex -27.9236 -26.0946 0 + endloop + endfacet + facet normal 0.975965 0.217927 0 + outer loop + vertex -27.9236 -26.0946 -0.1 + vertex -27.8988 -26.2055 0 + vertex -27.8988 -26.2055 -0.1 + endloop + endfacet + facet normal 0.909758 0.415139 0 + outer loop + vertex -27.9236 -26.0946 0 + vertex -27.9636 -26.0069 -0.1 + vertex -27.9636 -26.0069 0 + endloop + endfacet + facet normal 0.909758 0.415139 0 + outer loop + vertex -27.9636 -26.0069 -0.1 + vertex -27.9236 -26.0946 0 + vertex -27.9236 -26.0946 -0.1 + endloop + endfacet + facet normal 0.777135 0.629334 0 + outer loop + vertex -27.9636 -26.0069 0 + vertex -28.0195 -25.9379 -0.1 + vertex -28.0195 -25.9379 0 + endloop + endfacet + facet normal 0.777135 0.629334 0 + outer loop + vertex -28.0195 -25.9379 -0.1 + vertex -27.9636 -26.0069 0 + vertex -27.9636 -26.0069 -0.1 + endloop + endfacet + facet normal 0.604573 0.79655 -0 + outer loop + vertex -28.0195 -25.9379 -0.1 + vertex -28.0919 -25.8829 0 + vertex -28.0195 -25.9379 0 + endloop + endfacet + facet normal 0.604573 0.79655 0 + outer loop + vertex -28.0919 -25.8829 0 + vertex -28.0195 -25.9379 -0.1 + vertex -28.0919 -25.8829 -0.1 + endloop + endfacet + facet normal 0.400676 0.91622 -0 + outer loop + vertex -28.0919 -25.8829 -0.1 + vertex -28.2888 -25.7968 0 + vertex -28.0919 -25.8829 0 + endloop + endfacet + facet normal 0.400676 0.91622 0 + outer loop + vertex -28.2888 -25.7968 0 + vertex -28.0919 -25.8829 -0.1 + vertex -28.2888 -25.7968 -0.1 + endloop + endfacet + facet normal 0.299723 0.954026 -0 + outer loop + vertex -28.2888 -25.7968 -0.1 + vertex -28.5596 -25.7117 0 + vertex -28.2888 -25.7968 0 + endloop + endfacet + facet normal 0.299723 0.954026 0 + outer loop + vertex -28.5596 -25.7117 0 + vertex -28.2888 -25.7968 -0.1 + vertex -28.5596 -25.7117 -0.1 + endloop + endfacet + facet normal 0.220879 0.975301 -0 + outer loop + vertex -28.5596 -25.7117 -0.1 + vertex -28.7678 -25.6646 0 + vertex -28.5596 -25.7117 0 + endloop + endfacet + facet normal 0.220879 0.975301 0 + outer loop + vertex -28.7678 -25.6646 0 + vertex -28.5596 -25.7117 -0.1 + vertex -28.7678 -25.6646 -0.1 + endloop + endfacet + facet normal 0.142669 0.98977 -0 + outer loop + vertex -28.7678 -25.6646 -0.1 + vertex -29.0734 -25.6205 0 + vertex -28.7678 -25.6646 0 + endloop + endfacet + facet normal 0.142669 0.98977 0 + outer loop + vertex -29.0734 -25.6205 0 + vertex -28.7678 -25.6646 -0.1 + vertex -29.0734 -25.6205 -0.1 + endloop + endfacet + facet normal 0.0883121 0.996093 -0 + outer loop + vertex -29.0734 -25.6205 -0.1 + vertex -29.9179 -25.5457 0 + vertex -29.0734 -25.6205 0 + endloop + endfacet + facet normal 0.0883121 0.996093 0 + outer loop + vertex -29.9179 -25.5457 0 + vertex -29.0734 -25.6205 -0.1 + vertex -29.9179 -25.5457 -0.1 + endloop + endfacet + facet normal 0.0479595 0.998849 -0 + outer loop + vertex -29.9179 -25.5457 -0.1 + vertex -30.9759 -25.4949 0 + vertex -29.9179 -25.5457 0 + endloop + endfacet + facet normal 0.0479595 0.998849 0 + outer loop + vertex -30.9759 -25.4949 0 + vertex -29.9179 -25.5457 -0.1 + vertex -30.9759 -25.4949 -0.1 + endloop + endfacet + facet normal 0.0164478 0.999865 -0 + outer loop + vertex -30.9759 -25.4949 -0.1 + vertex -32.1303 -25.4759 0 + vertex -30.9759 -25.4949 0 + endloop + endfacet + facet normal 0.0164478 0.999865 0 + outer loop + vertex -32.1303 -25.4759 0 + vertex -30.9759 -25.4949 -0.1 + vertex -32.1303 -25.4759 -0.1 + endloop + endfacet + facet normal 0.000432102 1 -0 + outer loop + vertex -32.1303 -25.4759 -0.1 + vertex -34.9509 -25.4747 0 + vertex -32.1303 -25.4759 0 + endloop + endfacet + facet normal 0.000432102 1 0 + outer loop + vertex -34.9509 -25.4747 0 + vertex -32.1303 -25.4759 -0.1 + vertex -34.9509 -25.4747 -0.1 + endloop + endfacet + facet normal -0.910935 0.41255 0 + outer loop + vertex -35.4707 -26.6225 -0.1 + vertex -34.9509 -25.4747 0 + vertex -34.9509 -25.4747 -0.1 + endloop + endfacet + facet normal -0.910935 0.41255 0 + outer loop + vertex -34.9509 -25.4747 0 + vertex -35.4707 -26.6225 -0.1 + vertex -35.4707 -26.6225 0 + endloop + endfacet + facet normal -0.916492 0.400054 0 + outer loop + vertex -36.4516 -28.8697 -0.1 + vertex -35.4707 -26.6225 0 + vertex -35.4707 -26.6225 -0.1 + endloop + endfacet + facet normal -0.916492 0.400054 0 + outer loop + vertex -35.4707 -26.6225 0 + vertex -36.4516 -28.8697 -0.1 + vertex -36.4516 -28.8697 0 + endloop + endfacet + facet normal -0.92275 0.385399 0 + outer loop + vertex -37.5165 -31.4193 -0.1 + vertex -36.4516 -28.8697 0 + vertex -36.4516 -28.8697 -0.1 + endloop + endfacet + facet normal -0.92275 0.385399 0 + outer loop + vertex -36.4516 -28.8697 0 + vertex -37.5165 -31.4193 -0.1 + vertex -37.5165 -31.4193 0 + endloop + endfacet + facet normal -0.928331 0.371754 0 + outer loop + vertex -38.3711 -33.5534 -0.1 + vertex -37.5165 -31.4193 0 + vertex -37.5165 -31.4193 -0.1 + endloop + endfacet + facet normal -0.928331 0.371754 0 + outer loop + vertex -37.5165 -31.4193 0 + vertex -38.3711 -33.5534 -0.1 + vertex -38.3711 -33.5534 0 + endloop + endfacet + facet normal -0.936805 0.349851 0 + outer loop + vertex -38.6277 -34.2404 -0.1 + vertex -38.3711 -33.5534 0 + vertex -38.3711 -33.5534 -0.1 + endloop + endfacet + facet normal -0.936805 0.349851 0 + outer loop + vertex -38.3711 -33.5534 0 + vertex -38.6277 -34.2404 -0.1 + vertex -38.6277 -34.2404 0 + endloop + endfacet + facet normal -0.958246 0.285946 0 + outer loop + vertex -38.7214 -34.5543 -0.1 + vertex -38.6277 -34.2404 0 + vertex -38.6277 -34.2404 -0.1 + endloop + endfacet + facet normal -0.958246 0.285946 0 + outer loop + vertex -38.6277 -34.2404 0 + vertex -38.7214 -34.5543 -0.1 + vertex -38.7214 -34.5543 0 + endloop + endfacet + facet normal -0.979296 -0.202433 0 + outer loop + vertex -38.6971 -34.6715 -0.1 + vertex -38.7214 -34.5543 0 + vertex -38.7214 -34.5543 -0.1 + endloop + endfacet + facet normal -0.979296 -0.202433 0 + outer loop + vertex -38.7214 -34.5543 0 + vertex -38.6971 -34.6715 -0.1 + vertex -38.6971 -34.6715 0 + endloop + endfacet + facet normal -0.869155 -0.494539 0 + outer loop + vertex -38.6312 -34.7874 -0.1 + vertex -38.6971 -34.6715 0 + vertex -38.6971 -34.6715 -0.1 + endloop + endfacet + facet normal -0.869155 -0.494539 0 + outer loop + vertex -38.6971 -34.6715 0 + vertex -38.6312 -34.7874 -0.1 + vertex -38.6312 -34.7874 0 + endloop + endfacet + facet normal -0.719928 -0.694049 0 + outer loop + vertex -38.5336 -34.8886 -0.1 + vertex -38.6312 -34.7874 0 + vertex -38.6312 -34.7874 -0.1 + endloop + endfacet + facet normal -0.719928 -0.694049 0 + outer loop + vertex -38.6312 -34.7874 0 + vertex -38.5336 -34.8886 -0.1 + vertex -38.5336 -34.8886 0 + endloop + endfacet + facet normal -0.523423 -0.852073 0 + outer loop + vertex -38.5336 -34.8886 -0.1 + vertex -38.4144 -34.9619 0 + vertex -38.5336 -34.8886 0 + endloop + endfacet + facet normal -0.523423 -0.852073 -0 + outer loop + vertex -38.4144 -34.9619 0 + vertex -38.5336 -34.8886 -0.1 + vertex -38.4144 -34.9619 -0.1 + endloop + endfacet + facet normal -0.239855 -0.970809 0 + outer loop + vertex -38.4144 -34.9619 -0.1 + vertex -38.2613 -34.9997 0 + vertex -38.4144 -34.9619 0 + endloop + endfacet + facet normal -0.239855 -0.970809 -0 + outer loop + vertex -38.2613 -34.9997 0 + vertex -38.4144 -34.9619 -0.1 + vertex -38.2613 -34.9997 -0.1 + endloop + endfacet + facet normal -0.118843 -0.992913 0 + outer loop + vertex -38.2613 -34.9997 -0.1 + vertex -38.0027 -35.0306 0 + vertex -38.2613 -34.9997 0 + endloop + endfacet + facet normal -0.118843 -0.992913 -0 + outer loop + vertex -38.0027 -35.0306 0 + vertex -38.2613 -34.9997 -0.1 + vertex -38.0027 -35.0306 -0.1 + endloop + endfacet + facet normal -0.0541463 -0.998533 0 + outer loop + vertex -38.0027 -35.0306 -0.1 + vertex -37.2267 -35.0727 0 + vertex -38.0027 -35.0306 0 + endloop + endfacet + facet normal -0.0541463 -0.998533 -0 + outer loop + vertex -37.2267 -35.0727 0 + vertex -38.0027 -35.0306 -0.1 + vertex -37.2267 -35.0727 -0.1 + endloop + endfacet + facet normal -0.0166336 -0.999862 0 + outer loop + vertex -37.2267 -35.0727 -0.1 + vertex -36.2012 -35.0898 0 + vertex -37.2267 -35.0727 0 + endloop + endfacet + facet normal -0.0166336 -0.999862 -0 + outer loop + vertex -36.2012 -35.0898 0 + vertex -37.2267 -35.0727 -0.1 + vertex -36.2012 -35.0898 -0.1 + endloop + endfacet + facet normal 0.00541272 -0.999985 0 + outer loop + vertex -36.2012 -35.0898 -0.1 + vertex -35.0412 -35.0835 0 + vertex -36.2012 -35.0898 0 + endloop + endfacet + facet normal 0.00541272 -0.999985 0 + outer loop + vertex -35.0412 -35.0835 0 + vertex -36.2012 -35.0898 -0.1 + vertex -35.0412 -35.0835 -0.1 + endloop + endfacet + facet normal 0.0236788 -0.99972 0 + outer loop + vertex -35.0412 -35.0835 -0.1 + vertex -33.8615 -35.0556 0 + vertex -35.0412 -35.0835 0 + endloop + endfacet + facet normal 0.0236788 -0.99972 0 + outer loop + vertex -33.8615 -35.0556 0 + vertex -35.0412 -35.0835 -0.1 + vertex -33.8615 -35.0556 -0.1 + endloop + endfacet + facet normal 0.0441434 -0.999025 0 + outer loop + vertex -33.8615 -35.0556 -0.1 + vertex -32.7769 -35.0076 0 + vertex -33.8615 -35.0556 0 + endloop + endfacet + facet normal 0.0441434 -0.999025 0 + outer loop + vertex -32.7769 -35.0076 0 + vertex -33.8615 -35.0556 -0.1 + vertex -32.7769 -35.0076 -0.1 + endloop + endfacet + facet normal 0.0755008 -0.997146 0 + outer loop + vertex -32.7769 -35.0076 -0.1 + vertex -31.9023 -34.9414 0 + vertex -32.7769 -35.0076 0 + endloop + endfacet + facet normal 0.0755008 -0.997146 0 + outer loop + vertex -31.9023 -34.9414 0 + vertex -32.7769 -35.0076 -0.1 + vertex -31.9023 -34.9414 -0.1 + endloop + endfacet + facet normal 0.121377 -0.992606 0 + outer loop + vertex -31.9023 -34.9414 -0.1 + vertex -31.5797 -34.902 0 + vertex -31.9023 -34.9414 0 + endloop + endfacet + facet normal 0.121377 -0.992606 0 + outer loop + vertex -31.5797 -34.902 0 + vertex -31.9023 -34.9414 -0.1 + vertex -31.5797 -34.902 -0.1 + endloop + endfacet + facet normal 0.187713 -0.982224 0 + outer loop + vertex -31.5797 -34.902 -0.1 + vertex -31.3526 -34.8586 0 + vertex -31.5797 -34.902 0 + endloop + endfacet + facet normal 0.187713 -0.982224 0 + outer loop + vertex -31.3526 -34.8586 0 + vertex -31.5797 -34.902 -0.1 + vertex -31.3526 -34.8586 -0.1 + endloop + endfacet + facet normal 0.296204 -0.955125 0 + outer loop + vertex -31.3526 -34.8586 -0.1 + vertex -30.8095 -34.6902 0 + vertex -31.3526 -34.8586 0 + endloop + endfacet + facet normal 0.296204 -0.955125 0 + outer loop + vertex -30.8095 -34.6902 0 + vertex -31.3526 -34.8586 -0.1 + vertex -30.8095 -34.6902 -0.1 + endloop + endfacet + facet normal 0.373689 -0.927554 0 + outer loop + vertex -30.8095 -34.6902 -0.1 + vertex -30.2461 -34.4632 0 + vertex -30.8095 -34.6902 0 + endloop + endfacet + facet normal 0.373689 -0.927554 0 + outer loop + vertex -30.2461 -34.4632 0 + vertex -30.8095 -34.6902 -0.1 + vertex -30.2461 -34.4632 -0.1 + endloop + endfacet + facet normal 0.438403 -0.898778 0 + outer loop + vertex -30.2461 -34.4632 -0.1 + vertex -29.669 -34.1817 0 + vertex -30.2461 -34.4632 0 + endloop + endfacet + facet normal 0.438403 -0.898778 0 + outer loop + vertex -29.669 -34.1817 0 + vertex -30.2461 -34.4632 -0.1 + vertex -29.669 -34.1817 -0.1 + endloop + endfacet + facet normal 0.494095 -0.869408 0 + outer loop + vertex -29.669 -34.1817 -0.1 + vertex -29.0852 -33.8499 0 + vertex -29.669 -34.1817 0 + endloop + endfacet + facet normal 0.494095 -0.869408 0 + outer loop + vertex -29.0852 -33.8499 0 + vertex -29.669 -34.1817 -0.1 + vertex -29.0852 -33.8499 -0.1 + endloop + endfacet + facet normal 0.543479 -0.839423 0 + outer loop + vertex -29.0852 -33.8499 -0.1 + vertex -28.5012 -33.4718 0 + vertex -29.0852 -33.8499 0 + endloop + endfacet + facet normal 0.543479 -0.839423 0 + outer loop + vertex -28.5012 -33.4718 0 + vertex -29.0852 -33.8499 -0.1 + vertex -28.5012 -33.4718 -0.1 + endloop + endfacet + facet normal 0.588526 -0.808478 0 + outer loop + vertex -28.5012 -33.4718 -0.1 + vertex -27.924 -33.0516 0 + vertex -28.5012 -33.4718 0 + endloop + endfacet + facet normal 0.588526 -0.808478 0 + outer loop + vertex -27.924 -33.0516 0 + vertex -28.5012 -33.4718 -0.1 + vertex -27.924 -33.0516 -0.1 + endloop + endfacet + facet normal 0.630713 -0.776016 0 + outer loop + vertex -27.924 -33.0516 -0.1 + vertex -27.3602 -32.5933 0 + vertex -27.924 -33.0516 0 + endloop + endfacet + facet normal 0.630713 -0.776016 0 + outer loop + vertex -27.3602 -32.5933 0 + vertex -27.924 -33.0516 -0.1 + vertex -27.3602 -32.5933 -0.1 + endloop + endfacet + facet normal 0.671162 -0.741311 0 + outer loop + vertex -27.3602 -32.5933 -0.1 + vertex -26.8166 -32.1012 0 + vertex -27.3602 -32.5933 0 + endloop + endfacet + facet normal 0.671162 -0.741311 0 + outer loop + vertex -26.8166 -32.1012 0 + vertex -27.3602 -32.5933 -0.1 + vertex -26.8166 -32.1012 -0.1 + endloop + endfacet + facet normal 0.688884 -0.724872 0 + outer loop + vertex -26.8166 -32.1012 -0.1 + vertex -25.5344 -30.8827 0 + vertex -26.8166 -32.1012 0 + endloop + endfacet + facet normal 0.688884 -0.724872 0 + outer loop + vertex -25.5344 -30.8827 0 + vertex -26.8166 -32.1012 -0.1 + vertex -25.5344 -30.8827 -0.1 + endloop + endfacet + facet normal 0.667079 -0.744987 0 + outer loop + vertex -25.5344 -30.8827 -0.1 + vertex -25.1341 -30.5242 0 + vertex -25.5344 -30.8827 0 + endloop + endfacet + facet normal 0.667079 -0.744987 0 + outer loop + vertex -25.1341 -30.5242 0 + vertex -25.5344 -30.8827 -0.1 + vertex -25.1341 -30.5242 -0.1 + endloop + endfacet + facet normal 0.613469 -0.789718 0 + outer loop + vertex -25.1341 -30.5242 -0.1 + vertex -24.8452 -30.2998 0 + vertex -25.1341 -30.5242 0 + endloop + endfacet + facet normal 0.613469 -0.789718 0 + outer loop + vertex -24.8452 -30.2998 0 + vertex -25.1341 -30.5242 -0.1 + vertex -24.8452 -30.2998 -0.1 + endloop + endfacet + facet normal 0.473466 -0.880812 0 + outer loop + vertex -24.8452 -30.2998 -0.1 + vertex -24.6311 -30.1847 0 + vertex -24.8452 -30.2998 0 + endloop + endfacet + facet normal 0.473466 -0.880812 0 + outer loop + vertex -24.6311 -30.1847 0 + vertex -24.8452 -30.2998 -0.1 + vertex -24.6311 -30.1847 -0.1 + endloop + endfacet + facet normal 0.259354 -0.965782 0 + outer loop + vertex -24.6311 -30.1847 -0.1 + vertex -24.5406 -30.1604 0 + vertex -24.6311 -30.1847 0 + endloop + endfacet + facet normal 0.259354 -0.965782 0 + outer loop + vertex -24.5406 -30.1604 0 + vertex -24.6311 -30.1847 -0.1 + vertex -24.5406 -30.1604 -0.1 + endloop + endfacet + facet normal 0.0730053 -0.997332 0 + outer loop + vertex -24.5406 -30.1604 -0.1 + vertex -24.455 -30.1541 0 + vertex -24.5406 -30.1604 0 + endloop + endfacet + facet normal 0.0730053 -0.997332 0 + outer loop + vertex -24.455 -30.1541 0 + vertex -24.5406 -30.1604 -0.1 + vertex -24.455 -30.1541 -0.1 + endloop + endfacet + facet normal -0.164732 -0.986338 0 + outer loop + vertex -24.455 -30.1541 -0.1 + vertex -24.2803 -30.1833 0 + vertex -24.455 -30.1541 0 + endloop + endfacet + facet normal -0.164732 -0.986338 -0 + outer loop + vertex -24.2803 -30.1833 0 + vertex -24.455 -30.1541 -0.1 + vertex -24.2803 -30.1833 -0.1 + endloop + endfacet + facet normal -0.291983 -0.956423 0 + outer loop + vertex -24.2803 -30.1833 -0.1 + vertex -24.0701 -30.2475 0 + vertex -24.2803 -30.1833 0 + endloop + endfacet + facet normal -0.291983 -0.956423 -0 + outer loop + vertex -24.0701 -30.2475 0 + vertex -24.2803 -30.1833 -0.1 + vertex -24.0701 -30.2475 -0.1 + endloop + endfacet + facet normal -0.377094 -0.926175 0 + outer loop + vertex -24.0701 -30.2475 -0.1 + vertex -23.8399 -30.3412 0 + vertex -24.0701 -30.2475 0 + endloop + endfacet + facet normal -0.377094 -0.926175 -0 + outer loop + vertex -23.8399 -30.3412 0 + vertex -24.0701 -30.2475 -0.1 + vertex -23.8399 -30.3412 -0.1 + endloop + endfacet + facet normal -0.532683 -0.846315 0 + outer loop + vertex -23.8399 -30.3412 -0.1 + vertex -23.6433 -30.465 0 + vertex -23.8399 -30.3412 0 + endloop + endfacet + facet normal -0.532683 -0.846315 -0 + outer loop + vertex -23.6433 -30.465 0 + vertex -23.8399 -30.3412 -0.1 + vertex -23.6433 -30.465 -0.1 + endloop + endfacet + facet normal -0.695789 -0.718246 0 + outer loop + vertex -23.6433 -30.465 -0.1 + vertex -23.5012 -30.6026 0 + vertex -23.6433 -30.465 0 + endloop + endfacet + facet normal -0.695789 -0.718246 -0 + outer loop + vertex -23.5012 -30.6026 0 + vertex -23.6433 -30.465 -0.1 + vertex -23.5012 -30.6026 -0.1 + endloop + endfacet + facet normal -0.84273 -0.538337 0 + outer loop + vertex -23.4571 -30.6716 -0.1 + vertex -23.5012 -30.6026 0 + vertex -23.5012 -30.6026 -0.1 + endloop + endfacet + facet normal -0.84273 -0.538337 0 + outer loop + vertex -23.5012 -30.6026 0 + vertex -23.4571 -30.6716 -0.1 + vertex -23.4571 -30.6716 0 + endloop + endfacet + facet normal -0.946617 -0.322361 0 + outer loop + vertex -23.4345 -30.738 -0.1 + vertex -23.4571 -30.6716 0 + vertex -23.4571 -30.6716 -0.1 + endloop + endfacet + facet normal -0.946617 -0.322361 0 + outer loop + vertex -23.4571 -30.6716 0 + vertex -23.4345 -30.738 -0.1 + vertex -23.4345 -30.738 0 + endloop + endfacet + facet normal -0.988328 0.152339 0 + outer loop + vertex -23.4513 -30.847 -0.1 + vertex -23.4345 -30.738 0 + vertex -23.4345 -30.738 -0.1 + endloop + endfacet + facet normal -0.988328 0.152339 0 + outer loop + vertex -23.4345 -30.738 0 + vertex -23.4513 -30.847 -0.1 + vertex -23.4513 -30.847 0 + endloop + endfacet + facet normal -0.933862 0.357635 0 + outer loop + vertex -23.5218 -31.031 -0.1 + vertex -23.4513 -30.847 0 + vertex -23.4513 -30.847 -0.1 + endloop + endfacet + facet normal -0.933862 0.357635 0 + outer loop + vertex -23.4513 -30.847 0 + vertex -23.5218 -31.031 -0.1 + vertex -23.5218 -31.031 0 + endloop + endfacet + facet normal -0.893602 0.44886 0 + outer loop + vertex -23.8031 -31.5911 -0.1 + vertex -23.5218 -31.031 0 + vertex -23.5218 -31.031 -0.1 + endloop + endfacet + facet normal -0.893602 0.44886 0 + outer loop + vertex -23.5218 -31.031 0 + vertex -23.8031 -31.5911 -0.1 + vertex -23.8031 -31.5911 0 + endloop + endfacet + facet normal -0.86862 0.495478 0 + outer loop + vertex -24.2375 -32.3527 -0.1 + vertex -23.8031 -31.5911 0 + vertex -23.8031 -31.5911 -0.1 + endloop + endfacet + facet normal -0.86862 0.495478 0 + outer loop + vertex -23.8031 -31.5911 0 + vertex -24.2375 -32.3527 -0.1 + vertex -24.2375 -32.3527 0 + endloop + endfacet + facet normal -0.854086 0.520132 0 + outer loop + vertex -24.7839 -33.2498 -0.1 + vertex -24.2375 -32.3527 0 + vertex -24.2375 -32.3527 -0.1 + endloop + endfacet + facet normal -0.854086 0.520132 0 + outer loop + vertex -24.2375 -32.3527 0 + vertex -24.7839 -33.2498 -0.1 + vertex -24.7839 -33.2498 0 + endloop + endfacet + facet normal -0.842904 0.538064 0 + outer loop + vertex -25.4011 -34.2168 -0.1 + vertex -24.7839 -33.2498 0 + vertex -24.7839 -33.2498 -0.1 + endloop + endfacet + facet normal -0.842904 0.538064 0 + outer loop + vertex -24.7839 -33.2498 0 + vertex -25.4011 -34.2168 -0.1 + vertex -25.4011 -34.2168 0 + endloop + endfacet + facet normal -0.832144 0.55456 0 + outer loop + vertex -26.0482 -35.1877 -0.1 + vertex -25.4011 -34.2168 0 + vertex -25.4011 -34.2168 -0.1 + endloop + endfacet + facet normal -0.832144 0.55456 0 + outer loop + vertex -25.4011 -34.2168 0 + vertex -26.0482 -35.1877 -0.1 + vertex -26.0482 -35.1877 0 + endloop + endfacet + facet normal -0.819486 0.573099 0 + outer loop + vertex -26.6839 -36.0968 -0.1 + vertex -26.0482 -35.1877 0 + vertex -26.0482 -35.1877 -0.1 + endloop + endfacet + facet normal -0.819486 0.573099 0 + outer loop + vertex -26.0482 -35.1877 0 + vertex -26.6839 -36.0968 -0.1 + vertex -26.6839 -36.0968 0 + endloop + endfacet + facet normal -0.801319 0.598238 0 + outer loop + vertex -27.2673 -36.8782 -0.1 + vertex -26.6839 -36.0968 0 + vertex -26.6839 -36.0968 -0.1 + endloop + endfacet + facet normal -0.801319 0.598238 0 + outer loop + vertex -26.6839 -36.0968 0 + vertex -27.2673 -36.8782 -0.1 + vertex -27.2673 -36.8782 0 + endloop + endfacet + facet normal -0.788011 0.615661 0 + outer loop + vertex -28.2718 -38.1638 -0.1 + vertex -27.2673 -36.8782 0 + vertex -27.2673 -36.8782 -0.1 + endloop + endfacet + facet normal -0.788011 0.615661 0 + outer loop + vertex -27.2673 -36.8782 0 + vertex -28.2718 -38.1638 -0.1 + vertex -28.2718 -38.1638 0 + endloop + endfacet + facet normal 0.00335501 0.999994 -0 + outer loop + vertex -28.2718 -38.1638 -0.1 + vertex -37.6203 -38.1325 0 + vertex -28.2718 -38.1638 0 + endloop + endfacet + facet normal 0.00335501 0.999994 0 + outer loop + vertex -37.6203 -38.1325 0 + vertex -28.2718 -38.1638 -0.1 + vertex -37.6203 -38.1325 -0.1 + endloop + endfacet + facet normal 0.00646856 0.999979 -0 + outer loop + vertex -37.6203 -38.1325 -0.1 + vertex -41.2883 -38.1087 0 + vertex -37.6203 -38.1325 0 + endloop + endfacet + facet normal 0.00646856 0.999979 0 + outer loop + vertex -41.2883 -38.1087 0 + vertex -37.6203 -38.1325 -0.1 + vertex -41.2883 -38.1087 -0.1 + endloop + endfacet + facet normal 0.013462 0.999909 -0 + outer loop + vertex -41.2883 -38.1087 -0.1 + vertex -44.3648 -38.0673 0 + vertex -41.2883 -38.1087 0 + endloop + endfacet + facet normal 0.013462 0.999909 0 + outer loop + vertex -44.3648 -38.0673 0 + vertex -41.2883 -38.1087 -0.1 + vertex -44.3648 -38.0673 -0.1 + endloop + endfacet + facet normal 0.0246353 0.999697 -0 + outer loop + vertex -44.3648 -38.0673 -0.1 + vertex -46.5272 -38.014 0 + vertex -44.3648 -38.0673 0 + endloop + endfacet + facet normal 0.0246353 0.999697 0 + outer loop + vertex -46.5272 -38.014 0 + vertex -44.3648 -38.0673 -0.1 + vertex -46.5272 -38.014 -0.1 + endloop + endfacet + facet normal 0.0458604 0.998948 -0 + outer loop + vertex -46.5272 -38.014 -0.1 + vertex -47.1648 -37.9848 0 + vertex -46.5272 -38.014 0 + endloop + endfacet + facet normal 0.0458604 0.998948 0 + outer loop + vertex -47.1648 -37.9848 0 + vertex -46.5272 -38.014 -0.1 + vertex -47.1648 -37.9848 -0.1 + endloop + endfacet + facet normal 0.103752 0.994603 -0 + outer loop + vertex -47.1648 -37.9848 -0.1 + vertex -47.4529 -37.9547 0 + vertex -47.1648 -37.9848 0 + endloop + endfacet + facet normal 0.103752 0.994603 0 + outer loop + vertex -47.4529 -37.9547 0 + vertex -47.1648 -37.9848 -0.1 + vertex -47.4529 -37.9547 -0.1 + endloop + endfacet + facet normal 0.373487 0.927636 -0 + outer loop + vertex -47.4529 -37.9547 -0.1 + vertex -47.6522 -37.8745 0 + vertex -47.4529 -37.9547 0 + endloop + endfacet + facet normal 0.373487 0.927636 0 + outer loop + vertex -47.6522 -37.8745 0 + vertex -47.4529 -37.9547 -0.1 + vertex -47.6522 -37.8745 -0.1 + endloop + endfacet + facet normal 0.561365 0.827568 -0 + outer loop + vertex -47.6522 -37.8745 -0.1 + vertex -47.8044 -37.7712 0 + vertex -47.6522 -37.8745 0 + endloop + endfacet + facet normal 0.561365 0.827568 0 + outer loop + vertex -47.8044 -37.7712 0 + vertex -47.6522 -37.8745 -0.1 + vertex -47.8044 -37.7712 -0.1 + endloop + endfacet + facet normal 0.753293 0.657685 0 + outer loop + vertex -47.8044 -37.7712 0 + vertex -47.9115 -37.6485 -0.1 + vertex -47.9115 -37.6485 0 + endloop + endfacet + facet normal 0.753293 0.657685 0 + outer loop + vertex -47.9115 -37.6485 -0.1 + vertex -47.8044 -37.7712 0 + vertex -47.8044 -37.7712 -0.1 + endloop + endfacet + facet normal 0.907474 0.420108 0 + outer loop + vertex -47.9115 -37.6485 0 + vertex -47.9758 -37.5097 -0.1 + vertex -47.9758 -37.5097 0 + endloop + endfacet + facet normal 0.907474 0.420108 0 + outer loop + vertex -47.9758 -37.5097 -0.1 + vertex -47.9115 -37.6485 0 + vertex -47.9115 -37.6485 -0.1 + endloop + endfacet + facet normal 0.988205 0.153137 0 + outer loop + vertex -47.9758 -37.5097 0 + vertex -47.9993 -37.3583 -0.1 + vertex -47.9993 -37.3583 0 + endloop + endfacet + facet normal 0.988205 0.153137 0 + outer loop + vertex -47.9993 -37.3583 -0.1 + vertex -47.9758 -37.5097 0 + vertex -47.9758 -37.5097 -0.1 + endloop + endfacet + facet normal 0.995535 -0.0943972 0 + outer loop + vertex -47.9993 -37.3583 0 + vertex -47.984 -37.1977 -0.1 + vertex -47.984 -37.1977 0 + endloop + endfacet + facet normal 0.995535 -0.0943972 0 + outer loop + vertex -47.984 -37.1977 -0.1 + vertex -47.9993 -37.3583 0 + vertex -47.9993 -37.3583 -0.1 + endloop + endfacet + facet normal 0.954736 -0.297455 0 + outer loop + vertex -47.984 -37.1977 0 + vertex -47.9322 -37.0315 -0.1 + vertex -47.9322 -37.0315 0 + endloop + endfacet + facet normal 0.954736 -0.297455 0 + outer loop + vertex -47.9322 -37.0315 -0.1 + vertex -47.984 -37.1977 0 + vertex -47.984 -37.1977 -0.1 + endloop + endfacet + facet normal 0.890101 -0.455763 0 + outer loop + vertex -47.9322 -37.0315 0 + vertex -47.846 -36.863 -0.1 + vertex -47.846 -36.863 0 + endloop + endfacet + facet normal 0.890101 -0.455763 0 + outer loop + vertex -47.846 -36.863 -0.1 + vertex -47.9322 -37.0315 0 + vertex -47.9322 -37.0315 -0.1 + endloop + endfacet + facet normal 0.815677 -0.578507 0 + outer loop + vertex -47.846 -36.863 0 + vertex -47.7274 -36.6957 -0.1 + vertex -47.7274 -36.6957 0 + endloop + endfacet + facet normal 0.815677 -0.578507 0 + outer loop + vertex -47.7274 -36.6957 -0.1 + vertex -47.846 -36.863 0 + vertex -47.846 -36.863 -0.1 + endloop + endfacet + facet normal 0.737497 -0.67535 0 + outer loop + vertex -47.7274 -36.6957 0 + vertex -47.5785 -36.5332 -0.1 + vertex -47.5785 -36.5332 0 + endloop + endfacet + facet normal 0.737497 -0.67535 0 + outer loop + vertex -47.5785 -36.5332 -0.1 + vertex -47.7274 -36.6957 0 + vertex -47.7274 -36.6957 -0.1 + endloop + endfacet + facet normal 0.65739 -0.753551 0 + outer loop + vertex -47.5785 -36.5332 -0.1 + vertex -47.4015 -36.3788 0 + vertex -47.5785 -36.5332 0 + endloop + endfacet + facet normal 0.65739 -0.753551 0 + outer loop + vertex -47.4015 -36.3788 0 + vertex -47.5785 -36.5332 -0.1 + vertex -47.4015 -36.3788 -0.1 + endloop + endfacet + facet normal 0.575341 -0.817914 0 + outer loop + vertex -47.4015 -36.3788 -0.1 + vertex -47.1985 -36.2359 0 + vertex -47.4015 -36.3788 0 + endloop + endfacet + facet normal 0.575341 -0.817914 0 + outer loop + vertex -47.1985 -36.2359 0 + vertex -47.4015 -36.3788 -0.1 + vertex -47.1985 -36.2359 -0.1 + endloop + endfacet + facet normal 0.490533 -0.871423 0 + outer loop + vertex -47.1985 -36.2359 -0.1 + vertex -46.9715 -36.1082 0 + vertex -47.1985 -36.2359 0 + endloop + endfacet + facet normal 0.490533 -0.871423 0 + outer loop + vertex -46.9715 -36.1082 0 + vertex -47.1985 -36.2359 -0.1 + vertex -46.9715 -36.1082 -0.1 + endloop + endfacet + facet normal 0.402049 -0.915618 0 + outer loop + vertex -46.9715 -36.1082 -0.1 + vertex -46.7228 -35.999 0 + vertex -46.9715 -36.1082 0 + endloop + endfacet + facet normal 0.402049 -0.915618 0 + outer loop + vertex -46.7228 -35.999 0 + vertex -46.9715 -36.1082 -0.1 + vertex -46.7228 -35.999 -0.1 + endloop + endfacet + facet normal 0.309107 -0.951027 0 + outer loop + vertex -46.7228 -35.999 -0.1 + vertex -46.4544 -35.9117 0 + vertex -46.7228 -35.999 0 + endloop + endfacet + facet normal 0.309107 -0.951027 0 + outer loop + vertex -46.4544 -35.9117 0 + vertex -46.7228 -35.999 -0.1 + vertex -46.4544 -35.9117 -0.1 + endloop + endfacet + facet normal 0.211211 -0.977441 0 + outer loop + vertex -46.4544 -35.9117 -0.1 + vertex -46.1684 -35.8499 0 + vertex -46.4544 -35.9117 0 + endloop + endfacet + facet normal 0.211211 -0.977441 0 + outer loop + vertex -46.1684 -35.8499 0 + vertex -46.4544 -35.9117 -0.1 + vertex -46.1684 -35.8499 -0.1 + endloop + endfacet + facet normal 0.185786 -0.98259 0 + outer loop + vertex -46.1684 -35.8499 -0.1 + vertex -45.8475 -35.7893 0 + vertex -46.1684 -35.8499 0 + endloop + endfacet + facet normal 0.185786 -0.98259 0 + outer loop + vertex -45.8475 -35.7893 0 + vertex -46.1684 -35.8499 -0.1 + vertex -45.8475 -35.7893 -0.1 + endloop + endfacet + facet normal 0.247179 -0.96897 0 + outer loop + vertex -45.8475 -35.7893 -0.1 + vertex -45.5508 -35.7136 0 + vertex -45.8475 -35.7893 0 + endloop + endfacet + facet normal 0.247179 -0.96897 0 + outer loop + vertex -45.5508 -35.7136 0 + vertex -45.8475 -35.7893 -0.1 + vertex -45.5508 -35.7136 -0.1 + endloop + endfacet + facet normal 0.324475 -0.945894 0 + outer loop + vertex -45.5508 -35.7136 -0.1 + vertex -45.2753 -35.6191 0 + vertex -45.5508 -35.7136 0 + endloop + endfacet + facet normal 0.324475 -0.945894 0 + outer loop + vertex -45.2753 -35.6191 0 + vertex -45.5508 -35.7136 -0.1 + vertex -45.2753 -35.6191 -0.1 + endloop + endfacet + facet normal 0.414245 -0.910165 0 + outer loop + vertex -45.2753 -35.6191 -0.1 + vertex -45.0179 -35.5019 0 + vertex -45.2753 -35.6191 0 + endloop + endfacet + facet normal 0.414245 -0.910165 0 + outer loop + vertex -45.0179 -35.5019 0 + vertex -45.2753 -35.6191 -0.1 + vertex -45.0179 -35.5019 -0.1 + endloop + endfacet + facet normal 0.509766 -0.860313 0 + outer loop + vertex -45.0179 -35.5019 -0.1 + vertex -44.7755 -35.3583 0 + vertex -45.0179 -35.5019 0 + endloop + endfacet + facet normal 0.509766 -0.860313 0 + outer loop + vertex -44.7755 -35.3583 0 + vertex -45.0179 -35.5019 -0.1 + vertex -44.7755 -35.3583 -0.1 + endloop + endfacet + facet normal 0.602421 -0.798179 0 + outer loop + vertex -44.7755 -35.3583 -0.1 + vertex -44.5451 -35.1844 0 + vertex -44.7755 -35.3583 0 + endloop + endfacet + facet normal 0.602421 -0.798179 0 + outer loop + vertex -44.5451 -35.1844 0 + vertex -44.7755 -35.3583 -0.1 + vertex -44.5451 -35.1844 -0.1 + endloop + endfacet + facet normal 0.684546 -0.728969 0 + outer loop + vertex -44.5451 -35.1844 -0.1 + vertex -44.3237 -34.9765 0 + vertex -44.5451 -35.1844 0 + endloop + endfacet + facet normal 0.684546 -0.728969 0 + outer loop + vertex -44.3237 -34.9765 0 + vertex -44.5451 -35.1844 -0.1 + vertex -44.3237 -34.9765 -0.1 + endloop + endfacet + facet normal 0.751841 -0.659345 0 + outer loop + vertex -44.3237 -34.9765 0 + vertex -44.108 -34.7306 -0.1 + vertex -44.108 -34.7306 0 + endloop + endfacet + facet normal 0.751841 -0.659345 0 + outer loop + vertex -44.108 -34.7306 -0.1 + vertex -44.3237 -34.9765 0 + vertex -44.3237 -34.9765 -0.1 + endloop + endfacet + facet normal 0.803805 -0.594893 0 + outer loop + vertex -44.108 -34.7306 0 + vertex -43.8952 -34.443 -0.1 + vertex -43.8952 -34.443 0 + endloop + endfacet + facet normal 0.803805 -0.594893 0 + outer loop + vertex -43.8952 -34.443 -0.1 + vertex -44.108 -34.7306 0 + vertex -44.108 -34.7306 -0.1 + endloop + endfacet + facet normal 0.842352 -0.538928 0 + outer loop + vertex -43.8952 -34.443 0 + vertex -43.682 -34.1098 -0.1 + vertex -43.682 -34.1098 0 + endloop + endfacet + facet normal 0.842352 -0.538928 0 + outer loop + vertex -43.682 -34.1098 -0.1 + vertex -43.8952 -34.443 0 + vertex -43.8952 -34.443 -0.1 + endloop + endfacet + facet normal 0.870266 -0.492581 0 + outer loop + vertex -43.682 -34.1098 0 + vertex -43.4655 -33.7273 -0.1 + vertex -43.4655 -33.7273 0 + endloop + endfacet + facet normal 0.870266 -0.492581 0 + outer loop + vertex -43.4655 -33.7273 -0.1 + vertex -43.682 -34.1098 0 + vertex -43.682 -34.1098 -0.1 + endloop + endfacet + facet normal 0.890236 -0.4555 0 + outer loop + vertex -43.4655 -33.7273 0 + vertex -43.2426 -33.2915 -0.1 + vertex -43.2426 -33.2915 0 + endloop + endfacet + facet normal 0.890236 -0.4555 0 + outer loop + vertex -43.2426 -33.2915 -0.1 + vertex -43.4655 -33.7273 0 + vertex -43.4655 -33.7273 -0.1 + endloop + endfacet + facet normal 0.909757 -0.41514 0 + outer loop + vertex -43.2426 -33.2915 0 + vertex -42.7651 -32.2453 -0.1 + vertex -42.7651 -32.2453 0 + endloop + endfacet + facet normal 0.909757 -0.41514 0 + outer loop + vertex -42.7651 -32.2453 -0.1 + vertex -43.2426 -33.2915 0 + vertex -43.2426 -33.2915 -0.1 + endloop + endfacet + facet normal 0.924016 -0.382355 0 + outer loop + vertex -42.7651 -32.2453 0 + vertex -42.2252 -30.9405 -0.1 + vertex -42.2252 -30.9405 0 + endloop + endfacet + facet normal 0.924016 -0.382355 0 + outer loop + vertex -42.2252 -30.9405 -0.1 + vertex -42.7651 -32.2453 0 + vertex -42.7651 -32.2453 -0.1 + endloop + endfacet + facet normal 0.922377 -0.38629 0 + outer loop + vertex -42.2252 -30.9405 0 + vertex -41.2695 -28.6585 -0.1 + vertex -41.2695 -28.6585 0 + endloop + endfacet + facet normal 0.922377 -0.38629 0 + outer loop + vertex -41.2695 -28.6585 -0.1 + vertex -42.2252 -30.9405 0 + vertex -42.2252 -30.9405 -0.1 + endloop + endfacet + facet normal 0.918146 -0.396243 0 + outer loop + vertex -41.2695 -28.6585 0 + vertex -39.8955 -25.4747 -0.1 + vertex -39.8955 -25.4747 0 + endloop + endfacet + facet normal 0.918146 -0.396243 0 + outer loop + vertex -39.8955 -25.4747 -0.1 + vertex -41.2695 -28.6585 0 + vertex -41.2695 -28.6585 -0.1 + endloop + endfacet + facet normal 0.918872 -0.394555 0 + outer loop + vertex -39.8955 -25.4747 0 + vertex -38.3469 -21.8682 -0.1 + vertex -38.3469 -21.8682 0 + endloop + endfacet + facet normal 0.918872 -0.394555 0 + outer loop + vertex -38.3469 -21.8682 -0.1 + vertex -39.8955 -25.4747 0 + vertex -39.8955 -25.4747 -0.1 + endloop + endfacet + facet normal 0.92432 -0.381618 0 + outer loop + vertex -38.3469 -21.8682 0 + vertex -37.0431 -18.7102 -0.1 + vertex -37.0431 -18.7102 0 + endloop + endfacet + facet normal 0.92432 -0.381618 0 + outer loop + vertex -37.0431 -18.7102 -0.1 + vertex -38.3469 -21.8682 0 + vertex -38.3469 -21.8682 -0.1 + endloop + endfacet + facet normal 0.929541 -0.368719 0 + outer loop + vertex -37.0431 -18.7102 0 + vertex -36.5163 -17.3821 -0.1 + vertex -36.5163 -17.3821 0 + endloop + endfacet + facet normal 0.929541 -0.368719 0 + outer loop + vertex -36.5163 -17.3821 -0.1 + vertex -37.0431 -18.7102 0 + vertex -37.0431 -18.7102 -0.1 + endloop + endfacet + facet normal 0.934424 -0.356162 0 + outer loop + vertex -36.5163 -17.3821 0 + vertex -36.0907 -16.2655 -0.1 + vertex -36.0907 -16.2655 0 + endloop + endfacet + facet normal 0.934424 -0.356162 0 + outer loop + vertex -36.0907 -16.2655 -0.1 + vertex -36.5163 -17.3821 0 + vertex -36.5163 -17.3821 -0.1 + endloop + endfacet + facet normal 0.941869 -0.335981 0 + outer loop + vertex -36.0907 -16.2655 0 + vertex -35.7796 -15.3934 -0.1 + vertex -35.7796 -15.3934 0 + endloop + endfacet + facet normal 0.941869 -0.335981 0 + outer loop + vertex -35.7796 -15.3934 -0.1 + vertex -36.0907 -16.2655 0 + vertex -36.0907 -16.2655 -0.1 + endloop + endfacet + facet normal 0.955627 -0.294578 0 + outer loop + vertex -35.7796 -15.3934 0 + vertex -35.5964 -14.799 -0.1 + vertex -35.5964 -14.799 0 + endloop + endfacet + facet normal 0.955627 -0.294578 0 + outer loop + vertex -35.5964 -14.799 -0.1 + vertex -35.7796 -15.3934 0 + vertex -35.7796 -15.3934 -0.1 + endloop + endfacet + facet normal 0.97537 -0.220574 0 + outer loop + vertex -35.5964 -14.799 0 + vertex -35.5123 -14.4274 -0.1 + vertex -35.5123 -14.4274 0 + endloop + endfacet + facet normal 0.97537 -0.220574 0 + outer loop + vertex -35.5123 -14.4274 -0.1 + vertex -35.5964 -14.799 0 + vertex -35.5964 -14.799 -0.1 + endloop + endfacet + facet normal 0.992467 -0.122514 0 + outer loop + vertex -35.5123 -14.4274 0 + vertex -35.4754 -14.1281 -0.1 + vertex -35.4754 -14.1281 0 + endloop + endfacet + facet normal 0.992467 -0.122514 0 + outer loop + vertex -35.4754 -14.1281 -0.1 + vertex -35.5123 -14.4274 0 + vertex -35.5123 -14.4274 -0.1 + endloop + endfacet + facet normal 0.997952 0.0639612 0 + outer loop + vertex -35.4754 -14.1281 0 + vertex -35.4904 -13.894 -0.1 + vertex -35.4904 -13.894 0 + endloop + endfacet + facet normal 0.997952 0.0639612 0 + outer loop + vertex -35.4904 -13.894 -0.1 + vertex -35.4754 -14.1281 0 + vertex -35.4754 -14.1281 -0.1 + endloop + endfacet + facet normal 0.957653 0.287925 0 + outer loop + vertex -35.4904 -13.894 0 + vertex -35.5189 -13.7992 -0.1 + vertex -35.5189 -13.7992 0 + endloop + endfacet + facet normal 0.957653 0.287925 0 + outer loop + vertex -35.5189 -13.7992 -0.1 + vertex -35.4904 -13.894 0 + vertex -35.4904 -13.894 -0.1 + endloop + endfacet + facet normal 0.882255 0.470771 0 + outer loop + vertex -35.5189 -13.7992 0 + vertex -35.5622 -13.718 -0.1 + vertex -35.5622 -13.718 0 + endloop + endfacet + facet normal 0.882255 0.470771 0 + outer loop + vertex -35.5622 -13.718 -0.1 + vertex -35.5189 -13.7992 0 + vertex -35.5189 -13.7992 -0.1 + endloop + endfacet + facet normal 0.758808 0.651314 0 + outer loop + vertex -35.5622 -13.718 0 + vertex -35.6209 -13.6496 -0.1 + vertex -35.6209 -13.6496 0 + endloop + endfacet + facet normal 0.758808 0.651314 0 + outer loop + vertex -35.6209 -13.6496 -0.1 + vertex -35.5622 -13.718 0 + vertex -35.5622 -13.718 -0.1 + endloop + endfacet + facet normal 0.603335 0.797487 -0 + outer loop + vertex -35.6209 -13.6496 -0.1 + vertex -35.6956 -13.593 0 + vertex -35.6209 -13.6496 0 + endloop + endfacet + facet normal 0.603335 0.797487 0 + outer loop + vertex -35.6956 -13.593 0 + vertex -35.6209 -13.6496 -0.1 + vertex -35.6956 -13.593 -0.1 + endloop + endfacet + facet normal 0.375678 0.92675 -0 + outer loop + vertex -35.6956 -13.593 -0.1 + vertex -35.8956 -13.512 0 + vertex -35.6956 -13.593 0 + endloop + endfacet + facet normal 0.375678 0.92675 0 + outer loop + vertex -35.8956 -13.512 0 + vertex -35.6956 -13.593 -0.1 + vertex -35.8956 -13.512 -0.1 + endloop + endfacet + facet normal 0.161053 0.986946 -0 + outer loop + vertex -35.8956 -13.512 -0.1 + vertex -36.1669 -13.4677 0 + vertex -35.8956 -13.512 0 + endloop + endfacet + facet normal 0.161053 0.986946 0 + outer loop + vertex -36.1669 -13.4677 0 + vertex -35.8956 -13.512 -0.1 + vertex -36.1669 -13.4677 -0.1 + endloop + endfacet + facet normal 0.0419804 0.999118 -0 + outer loop + vertex -36.1669 -13.4677 -0.1 + vertex -36.5145 -13.4531 0 + vertex -36.1669 -13.4677 0 + endloop + endfacet + facet normal 0.0419804 0.999118 0 + outer loop + vertex -36.5145 -13.4531 0 + vertex -36.1669 -13.4677 -0.1 + vertex -36.5145 -13.4531 -0.1 + endloop + endfacet + facet normal 0.0664354 0.997791 -0 + outer loop + vertex -36.5145 -13.4531 -0.1 + vertex -36.7305 -13.4387 0 + vertex -36.5145 -13.4531 0 + endloop + endfacet + facet normal 0.0664354 0.997791 0 + outer loop + vertex -36.7305 -13.4387 0 + vertex -36.5145 -13.4531 -0.1 + vertex -36.7305 -13.4387 -0.1 + endloop + endfacet + facet normal 0.199985 0.979799 -0 + outer loop + vertex -36.7305 -13.4387 -0.1 + vertex -36.9216 -13.3997 0 + vertex -36.7305 -13.4387 0 + endloop + endfacet + facet normal 0.199985 0.979799 0 + outer loop + vertex -36.9216 -13.3997 0 + vertex -36.7305 -13.4387 -0.1 + vertex -36.9216 -13.3997 -0.1 + endloop + endfacet + facet normal 0.346161 0.938175 -0 + outer loop + vertex -36.9216 -13.3997 -0.1 + vertex -37.0874 -13.3385 0 + vertex -36.9216 -13.3997 0 + endloop + endfacet + facet normal 0.346161 0.938175 0 + outer loop + vertex -37.0874 -13.3385 0 + vertex -36.9216 -13.3997 -0.1 + vertex -37.0874 -13.3385 -0.1 + endloop + endfacet + facet normal 0.49992 0.866072 -0 + outer loop + vertex -37.0874 -13.3385 -0.1 + vertex -37.2276 -13.2576 0 + vertex -37.0874 -13.3385 0 + endloop + endfacet + facet normal 0.49992 0.866072 0 + outer loop + vertex -37.2276 -13.2576 0 + vertex -37.0874 -13.3385 -0.1 + vertex -37.2276 -13.2576 -0.1 + endloop + endfacet + facet normal 0.652051 0.758175 -0 + outer loop + vertex -37.2276 -13.2576 -0.1 + vertex -37.3418 -13.1594 0 + vertex -37.2276 -13.2576 0 + endloop + endfacet + facet normal 0.652051 0.758175 0 + outer loop + vertex -37.3418 -13.1594 0 + vertex -37.2276 -13.2576 -0.1 + vertex -37.3418 -13.1594 -0.1 + endloop + endfacet + facet normal 0.789664 0.613539 0 + outer loop + vertex -37.3418 -13.1594 0 + vertex -37.4296 -13.0463 -0.1 + vertex -37.4296 -13.0463 0 + endloop + endfacet + facet normal 0.789664 0.613539 0 + outer loop + vertex -37.4296 -13.0463 -0.1 + vertex -37.3418 -13.1594 0 + vertex -37.3418 -13.1594 -0.1 + endloop + endfacet + facet normal 0.898957 0.438037 0 + outer loop + vertex -37.4296 -13.0463 0 + vertex -37.4908 -12.9209 -0.1 + vertex -37.4908 -12.9209 0 + endloop + endfacet + facet normal 0.898957 0.438037 0 + outer loop + vertex -37.4908 -12.9209 -0.1 + vertex -37.4296 -13.0463 0 + vertex -37.4296 -13.0463 -0.1 + endloop + endfacet + facet normal 0.969773 0.244009 0 + outer loop + vertex -37.4908 -12.9209 0 + vertex -37.5249 -12.7854 -0.1 + vertex -37.5249 -12.7854 0 + endloop + endfacet + facet normal 0.969773 0.244009 0 + outer loop + vertex -37.5249 -12.7854 -0.1 + vertex -37.4908 -12.9209 0 + vertex -37.4908 -12.9209 -0.1 + endloop + endfacet + facet normal 0.99892 0.0464614 0 + outer loop + vertex -37.5249 -12.7854 0 + vertex -37.5315 -12.6425 -0.1 + vertex -37.5315 -12.6425 0 + endloop + endfacet + facet normal 0.99892 0.0464614 0 + outer loop + vertex -37.5315 -12.6425 -0.1 + vertex -37.5249 -12.7854 0 + vertex -37.5249 -12.7854 -0.1 + endloop + endfacet + facet normal 0.989966 -0.141306 0 + outer loop + vertex -37.5315 -12.6425 0 + vertex -37.5104 -12.4945 -0.1 + vertex -37.5104 -12.4945 0 + endloop + endfacet + facet normal 0.989966 -0.141306 0 + outer loop + vertex -37.5104 -12.4945 -0.1 + vertex -37.5315 -12.6425 0 + vertex -37.5315 -12.6425 -0.1 + endloop + endfacet + facet normal 0.950483 -0.310777 0 + outer loop + vertex -37.5104 -12.4945 0 + vertex -37.4611 -12.3438 -0.1 + vertex -37.4611 -12.3438 0 + endloop + endfacet + facet normal 0.950483 -0.310777 0 + outer loop + vertex -37.4611 -12.3438 -0.1 + vertex -37.5104 -12.4945 0 + vertex -37.5104 -12.4945 -0.1 + endloop + endfacet + facet normal 0.888869 -0.458162 0 + outer loop + vertex -37.4611 -12.3438 0 + vertex -37.3834 -12.1929 -0.1 + vertex -37.3834 -12.1929 0 + endloop + endfacet + facet normal 0.888869 -0.458162 0 + outer loop + vertex -37.3834 -12.1929 -0.1 + vertex -37.4611 -12.3438 0 + vertex -37.4611 -12.3438 -0.1 + endloop + endfacet + facet normal 0.812527 -0.582923 0 + outer loop + vertex -37.3834 -12.1929 0 + vertex -37.2767 -12.0443 -0.1 + vertex -37.2767 -12.0443 0 + endloop + endfacet + facet normal 0.812527 -0.582923 0 + outer loop + vertex -37.2767 -12.0443 -0.1 + vertex -37.3834 -12.1929 0 + vertex -37.3834 -12.1929 -0.1 + endloop + endfacet + facet normal 0.727267 -0.686355 0 + outer loop + vertex -37.2767 -12.0443 0 + vertex -37.1409 -11.9004 -0.1 + vertex -37.1409 -11.9004 0 + endloop + endfacet + facet normal 0.727267 -0.686355 0 + outer loop + vertex -37.1409 -11.9004 -0.1 + vertex -37.2767 -12.0443 0 + vertex -37.2767 -12.0443 -0.1 + endloop + endfacet + facet normal 0.637301 -0.770615 0 + outer loop + vertex -37.1409 -11.9004 -0.1 + vertex -36.9755 -11.7636 0 + vertex -37.1409 -11.9004 0 + endloop + endfacet + facet normal 0.637301 -0.770615 0 + outer loop + vertex -36.9755 -11.7636 0 + vertex -37.1409 -11.9004 -0.1 + vertex -36.9755 -11.7636 -0.1 + endloop + endfacet + facet normal 0.545722 -0.837967 0 + outer loop + vertex -36.9755 -11.7636 -0.1 + vertex -36.7802 -11.6364 0 + vertex -36.9755 -11.7636 0 + endloop + endfacet + facet normal 0.545722 -0.837967 0 + outer loop + vertex -36.7802 -11.6364 0 + vertex -36.9755 -11.7636 -0.1 + vertex -36.7802 -11.6364 -0.1 + endloop + endfacet + facet normal 0.431805 -0.901967 0 + outer loop + vertex -36.7802 -11.6364 -0.1 + vertex -36.527 -11.5152 0 + vertex -36.7802 -11.6364 0 + endloop + endfacet + facet normal 0.431805 -0.901967 0 + outer loop + vertex -36.527 -11.5152 0 + vertex -36.7802 -11.6364 -0.1 + vertex -36.527 -11.5152 -0.1 + endloop + endfacet + facet normal 0.256105 -0.966649 0 + outer loop + vertex -36.527 -11.5152 -0.1 + vertex -36.1819 -11.4238 0 + vertex -36.527 -11.5152 0 + endloop + endfacet + facet normal 0.256105 -0.966649 0 + outer loop + vertex -36.1819 -11.4238 0 + vertex -36.527 -11.5152 -0.1 + vertex -36.1819 -11.4238 -0.1 + endloop + endfacet + facet normal 0.121259 -0.992621 0 + outer loop + vertex -36.1819 -11.4238 -0.1 + vertex -35.6555 -11.3595 0 + vertex -36.1819 -11.4238 0 + endloop + endfacet + facet normal 0.121259 -0.992621 0 + outer loop + vertex -35.6555 -11.3595 0 + vertex -36.1819 -11.4238 -0.1 + vertex -35.6555 -11.3595 -0.1 + endloop + endfacet + facet normal 0.0498988 -0.998754 0 + outer loop + vertex -35.6555 -11.3595 -0.1 + vertex -34.8583 -11.3197 0 + vertex -35.6555 -11.3595 0 + endloop + endfacet + facet normal 0.0498988 -0.998754 0 + outer loop + vertex -34.8583 -11.3197 0 + vertex -35.6555 -11.3595 -0.1 + vertex -34.8583 -11.3197 -0.1 + endloop + endfacet + facet normal 0.0155398 -0.999879 0 + outer loop + vertex -34.8583 -11.3197 -0.1 + vertex -33.7011 -11.3017 0 + vertex -34.8583 -11.3197 0 + endloop + endfacet + facet normal 0.0155398 -0.999879 0 + outer loop + vertex -33.7011 -11.3017 0 + vertex -34.8583 -11.3197 -0.1 + vertex -33.7011 -11.3017 -0.1 + endloop + endfacet + facet normal -0.000753226 -1 0 + outer loop + vertex -33.7011 -11.3017 -0.1 + vertex -32.0944 -11.3029 0 + vertex -33.7011 -11.3017 0 + endloop + endfacet + facet normal -0.000753226 -1 -0 + outer loop + vertex -32.0944 -11.3029 0 + vertex -33.7011 -11.3017 -0.1 + vertex -32.0944 -11.3029 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0792 -19.1571 -0.1 + vertex -11.6557 -19.6804 -0.1 + vertex -11.6899 -19.4898 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.302 -19.1333 -0.1 + vertex -11.6557 -19.6804 -0.1 + vertex -12.0792 -19.1571 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.9023 -19.2259 -0.1 + vertex -11.6899 -19.4898 -0.1 + vertex -11.7723 -19.3375 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.6557 -19.6804 -0.1 + vertex -12.302 -19.1333 -0.1 + vertex -11.6707 -19.9072 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.6899 -19.4898 -0.1 + vertex -11.9023 -19.2259 -0.1 + vertex -12.0792 -19.1571 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -12.6849 -19.1929 -0.1 + vertex -11.6707 -19.9072 -0.1 + vertex -12.302 -19.1333 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.7355 -20.1677 -0.1 + vertex -12.6849 -19.1929 -0.1 + vertex -11.851 -20.4599 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.6707 -19.9072 -0.1 + vertex -12.6849 -19.1929 -0.1 + vertex -11.7355 -20.1677 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.01943 -23.5295 -0.1 + vertex -8.48242 -23.1923 -0.1 + vertex -8.45645 -23.4267 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.06691 -19.2358 -0.1 + vertex -8.54451 -22.9989 -0.1 + vertex -8.48242 -23.1923 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.06691 -19.2358 -0.1 + vertex -8.64279 -22.8439 -0.1 + vertex -8.54451 -22.9989 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.94827 -22.6394 -0.1 + vertex -8.43701 -19.2929 -0.1 + vertex -8.77447 -19.378 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.06691 -19.2358 -0.1 + vertex -8.77736 -22.7249 -0.1 + vertex -8.64279 -22.8439 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.43701 -19.2929 -0.1 + vertex -8.94827 -22.6394 -0.1 + vertex -8.77736 -22.7249 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -9.10766 -19.4997 -0.1 + vertex -8.94827 -22.6394 -0.1 + vertex -8.77447 -19.378 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -9.46489 -19.667 -0.1 + vertex -8.94827 -22.6394 -0.1 + vertex -9.10766 -19.4997 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.94827 -22.6394 -0.1 + vertex -9.46489 -19.667 -0.1 + vertex -9.15561 -22.5851 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -9.87453 -19.8884 -0.1 + vertex -9.15561 -22.5851 -0.1 + vertex -9.46489 -19.667 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.15561 -22.5851 -0.1 + vertex -9.87453 -19.8884 -0.1 + vertex -9.39946 -22.5595 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -10.3649 -20.1728 -0.1 + vertex -9.39946 -22.5595 -0.1 + vertex -9.87453 -19.8884 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.39946 -22.5595 -0.1 + vertex -10.3649 -20.1728 -0.1 + vertex -9.67988 -22.56 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.67988 -22.56 -0.1 + vertex -10.3649 -20.1728 -0.1 + vertex -10.0796 -22.6123 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.5073 -20.829 -0.1 + vertex -10.0796 -22.6123 -0.1 + vertex -10.3649 -20.1728 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.0796 -22.6123 -0.1 + vertex -11.5073 -20.829 -0.1 + vertex -10.5344 -22.7271 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5344 -22.7271 -0.1 + vertex -11.5073 -20.829 -0.1 + vertex -10.9881 -22.8877 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.8784 -21.0286 -0.1 + vertex -10.9881 -22.8877 -0.1 + vertex -11.5073 -20.829 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -12.0427 -21.102 -0.1 + vertex -10.9881 -22.8877 -0.1 + vertex -11.8784 -21.0286 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.9881 -22.8877 -0.1 + vertex -12.0427 -21.102 -0.1 + vertex -11.3849 -23.0769 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.3849 -23.0769 -0.1 + vertex -12.0427 -21.102 -0.1 + vertex -11.9359 -23.4045 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.4007 -23.7203 -0.1 + vertex -12.0427 -21.102 -0.1 + vertex -12.0573 -21.0889 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1989 -19.5967 -0.1 + vertex -12.0573 -21.0889 -0.1 + vertex -12.0594 -21.0513 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.3483 -19.3556 -0.1 + vertex -11.851 -20.4599 -0.1 + vertex -12.6849 -19.1929 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.851 -20.4599 -0.1 + vertex -13.3483 -19.3556 -0.1 + vertex -12.0288 -20.9134 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0288 -20.9134 -0.1 + vertex -13.3483 -19.3556 -0.1 + vertex -12.0594 -21.0513 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.1989 -19.5967 -0.1 + vertex -12.0594 -21.0513 -0.1 + vertex -13.3483 -19.3556 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0573 -21.0889 -0.1 + vertex -14.1989 -19.5967 -0.1 + vertex -15.1436 -19.8912 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0427 -21.102 -0.1 + vertex -12.4007 -23.7203 -0.1 + vertex -11.9359 -23.4045 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0573 -21.0889 -0.1 + vertex -15.1436 -19.8912 -0.1 + vertex -12.7941 -24.0414 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0573 -21.0889 -0.1 + vertex -12.7941 -24.0414 -0.1 + vertex -12.4007 -23.7203 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.2249 -22.8126 -0.1 + vertex -12.7941 -24.0414 -0.1 + vertex -15.1436 -19.8912 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.7941 -24.0414 -0.1 + vertex -17.2249 -22.8126 -0.1 + vertex -13.131 -24.3848 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -17.2226 -22.9371 -0.1 + vertex -13.131 -24.3848 -0.1 + vertex -17.2249 -22.8126 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.131 -24.3848 -0.1 + vertex -17.2226 -22.9371 -0.1 + vertex -13.4262 -24.7676 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.2873 -23.335 -0.1 + vertex -13.4262 -24.7676 -0.1 + vertex -17.2226 -22.9371 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.4084 -23.7485 -0.1 + vertex -13.6945 -25.2068 -0.1 + vertex -17.2873 -23.335 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.6656 -24.469 -0.1 + vertex -13.9508 -25.7195 -0.1 + vertex -17.4084 -23.7485 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.2578 -22.7276 -0.1 + vertex -15.1436 -19.8912 -0.1 + vertex -16.9393 -20.461 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.6945 -25.2068 -0.1 + vertex -17.4084 -23.7485 -0.1 + vertex -13.9508 -25.7195 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.9508 -25.7195 -0.1 + vertex -17.6656 -24.469 -0.1 + vertex -14.2098 -26.3227 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.4262 -24.7676 -0.1 + vertex -17.2873 -23.335 -0.1 + vertex -13.6945 -25.2068 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.1436 -19.8912 -0.1 + vertex -17.2578 -22.7276 -0.1 + vertex -17.2249 -22.8126 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9393 -20.461 -0.1 + vertex -17.3267 -22.6747 -0.1 + vertex -17.2578 -22.7276 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9393 -20.461 -0.1 + vertex -17.4374 -22.6462 -0.1 + vertex -17.3267 -22.6747 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.9865 -20.7653 -0.1 + vertex -17.4374 -22.6462 -0.1 + vertex -16.9393 -20.461 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4374 -22.6462 -0.1 + vertex -17.9865 -20.7653 -0.1 + vertex -17.8061 -22.6324 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.5788 -21.2283 -0.1 + vertex -17.8061 -22.6324 -0.1 + vertex -17.9865 -20.7653 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5053 -21.1105 -0.1 + vertex -17.9865 -20.7653 -0.1 + vertex -18.1109 -20.8023 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5053 -21.1105 -0.1 + vertex -18.1109 -20.8023 -0.1 + vertex -18.2248 -20.8552 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5053 -21.1105 -0.1 + vertex -18.2248 -20.8552 -0.1 + vertex -18.3284 -20.924 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.6967 -21.5139 -0.1 + vertex -17.8061 -22.6324 -0.1 + vertex -18.5788 -21.2283 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5053 -21.1105 -0.1 + vertex -18.3284 -20.924 -0.1 + vertex -18.4218 -21.0091 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.9865 -20.7653 -0.1 + vertex -18.5053 -21.1105 -0.1 + vertex -18.5788 -21.2283 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.8061 -22.6324 -0.1 + vertex -18.6967 -21.5139 -0.1 + vertex -18.1091 -22.6172 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.766 -21.7922 -0.1 + vertex -18.1091 -22.6172 -0.1 + vertex -18.6967 -21.5139 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.1091 -22.6172 -0.1 + vertex -18.766 -21.7922 -0.1 + vertex -18.3541 -22.5704 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.7869 -22.0269 -0.1 + vertex -18.3541 -22.5704 -0.1 + vertex -18.766 -21.7922 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.3541 -22.5704 -0.1 + vertex -18.7869 -22.0269 -0.1 + vertex -18.5429 -22.4899 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -18.7577 -22.2202 -0.1 + vertex -18.5429 -22.4899 -0.1 + vertex -18.7869 -22.0269 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5429 -22.4899 -0.1 + vertex -18.7577 -22.2202 -0.1 + vertex -18.6769 -22.3738 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -3.82849 -22.2203 -0.1 + vertex -3.84473 -21.6547 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -3.84473 -21.6547 -0.1 + vertex -3.87719 -21.3353 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -3.84589 -22.5177 -0.1 + vertex -3.82849 -22.2203 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.47107 -20.0532 -0.1 + vertex -3.87719 -21.3353 -0.1 + vertex -3.91934 -21.0662 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -3.88244 -22.8317 -0.1 + vertex -3.84589 -22.5177 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.29663 -20.2518 -0.1 + vertex -3.91934 -21.0662 -0.1 + vertex -3.97677 -20.8354 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -3.93975 -23.1672 -0.1 + vertex -3.88244 -22.8317 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.15983 -20.4402 -0.1 + vertex -3.97677 -20.8354 -0.1 + vertex -4.05507 -20.6308 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97677 -20.8354 -0.1 + vertex -4.15983 -20.4402 -0.1 + vertex -4.29663 -20.2518 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -4.01943 -23.5295 -0.1 + vertex -3.93975 -23.1672 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.91934 -21.0662 -0.1 + vertex -4.29663 -20.2518 -0.1 + vertex -4.47107 -20.0532 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.68872 -19.8327 -0.1 + vertex -3.87719 -21.3353 -0.1 + vertex -4.47107 -20.0532 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.01943 -23.5295 -0.1 + vertex -8.45645 -23.4267 -0.1 + vertex -4.25232 -24.3543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -3.87719 -21.3353 -0.1 + vertex -4.68872 -19.8327 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.14058 -19.1411 -0.1 + vertex -4.68872 -19.8327 -0.1 + vertex -4.93899 -19.592 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.46654 -23.7044 -0.1 + vertex -4.25232 -24.3543 -0.1 + vertex -8.45645 -23.4267 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.8145 -19.1562 -0.1 + vertex -4.93899 -19.592 -0.1 + vertex -5.14898 -19.4116 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.55901 -19.2012 -0.1 + vertex -5.14898 -19.4116 -0.1 + vertex -5.34642 -19.2839 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.14898 -19.4116 -0.1 + vertex -5.55901 -19.2012 -0.1 + vertex -5.8145 -19.1562 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.25232 -24.3543 -0.1 + vertex -8.46654 -23.7044 -0.1 + vertex -4.59396 -25.347 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.93899 -19.592 -0.1 + vertex -5.8145 -19.1562 -0.1 + vertex -6.14058 -19.1411 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -4.68872 -19.8327 -0.1 + vertex -6.14058 -19.1411 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.51259 -24.0278 -0.1 + vertex -4.59396 -25.347 -0.1 + vertex -8.46654 -23.7044 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -6.14058 -19.1411 -0.1 + vertex -7.11547 -19.1706 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -7.11547 -19.1706 -0.1 + vertex -7.63584 -19.198 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.59455 -24.3995 -0.1 + vertex -4.59396 -25.347 -0.1 + vertex -8.51259 -24.0278 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -7.63584 -19.198 -0.1 + vertex -8.06691 -19.2358 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.59396 -25.347 -0.1 + vertex -8.71232 -24.8218 -0.1 + vertex -5.05721 -26.548 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -9.05502 -25.8283 -0.1 + vertex -5.05721 -26.548 -0.1 + vertex -8.71232 -24.8218 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.77736 -22.7249 -0.1 + vertex -8.06691 -19.2358 -0.1 + vertex -8.43701 -19.2929 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.71232 -24.8218 -0.1 + vertex -4.59396 -25.347 -0.1 + vertex -8.59455 -24.3995 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.05721 -26.548 -0.1 + vertex -9.05502 -25.8283 -0.1 + vertex -5.65492 -27.9982 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -9.5401 -27.0667 -0.1 + vertex -5.65492 -27.9982 -0.1 + vertex -9.05502 -25.8283 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.65492 -27.9982 -0.1 + vertex -9.5401 -27.0667 -0.1 + vertex -6.39994 -29.738 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.5815 -32.143 -0.1 + vertex -6.39994 -29.738 -0.1 + vertex -9.5401 -27.0667 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.39994 -29.738 -0.1 + vertex -11.5815 -32.143 -0.1 + vertex -7.70823 -32.8163 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30266 -36.7536 -0.1 + vertex -7.30695 -36.9638 -0.1 + vertex -7.29619 -36.8569 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.32635 -36.6539 -0.1 + vertex -7.30695 -36.9638 -0.1 + vertex -7.30266 -36.7536 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.36727 -36.5579 -0.1 + vertex -7.30695 -36.9638 -0.1 + vertex -7.32635 -36.6539 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.50076 -36.3769 -0.1 + vertex -7.30695 -36.9638 -0.1 + vertex -7.36727 -36.5579 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30695 -36.9638 -0.1 + vertex -7.50076 -36.3769 -0.1 + vertex -7.38017 -37.1883 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.70312 -36.2106 -0.1 + vertex -7.38017 -37.1883 -0.1 + vertex -7.50076 -36.3769 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.38017 -37.1883 -0.1 + vertex -7.70312 -36.2106 -0.1 + vertex -7.52232 -37.4271 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.97432 -36.0592 -0.1 + vertex -7.52232 -37.4271 -0.1 + vertex -7.70312 -36.2106 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.52232 -37.4271 -0.1 + vertex -7.97432 -36.0592 -0.1 + vertex -7.73344 -37.6801 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.73344 -37.6801 -0.1 + vertex -7.97432 -36.0592 -0.1 + vertex -7.8903 -37.8311 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.30871 -38.0303 -0.1 + vertex -7.8903 -37.8311 -0.1 + vertex -7.97432 -36.0592 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.30871 -38.0303 -0.1 + vertex -7.97432 -36.0592 -0.1 + vertex -8.30497 -35.8814 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.8903 -37.8311 -0.1 + vertex -8.30871 -38.0303 -0.1 + vertex -8.0676 -37.9462 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.15585 -38.1249 -0.1 + vertex -8.30497 -35.8814 -0.1 + vertex -8.41808 -35.7975 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.15585 -38.1249 -0.1 + vertex -8.41808 -35.7975 -0.1 + vertex -8.49955 -35.7129 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.84865 -38.1451 -0.1 + vertex -8.49955 -35.7129 -0.1 + vertex -8.55176 -35.6244 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.84865 -38.1451 -0.1 + vertex -8.55176 -35.6244 -0.1 + vertex -8.57707 -35.529 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.30497 -35.8814 -0.1 + vertex -8.657 -38.0883 -0.1 + vertex -8.30871 -38.0303 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.6843 -34.4922 -0.1 + vertex -8.57707 -35.529 -0.1 + vertex -8.57785 -35.4236 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.70823 -32.8163 -0.1 + vertex -11.5815 -32.143 -0.1 + vertex -8.13453 -33.8652 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.9595 -33.0513 -0.1 + vertex -8.13453 -33.8652 -0.1 + vertex -11.5815 -32.143 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.13453 -33.8652 -0.1 + vertex -11.9595 -33.0513 -0.1 + vertex -8.32474 -34.384 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -12.3268 -33.8339 -0.1 + vertex -8.32474 -34.384 -0.1 + vertex -11.9595 -33.0513 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.32474 -34.384 -0.1 + vertex -12.3268 -33.8339 -0.1 + vertex -8.55649 -35.3052 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.55649 -35.3052 -0.1 + vertex -12.3268 -33.8339 -0.1 + vertex -8.57785 -35.4236 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.30497 -35.8814 -0.1 + vertex -9.15585 -38.1249 -0.1 + vertex -8.657 -38.0883 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -12.6843 -34.4922 -0.1 + vertex -8.57785 -35.4236 -0.1 + vertex -12.3268 -33.8339 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.49955 -35.7129 -0.1 + vertex -9.84865 -38.1451 -0.1 + vertex -9.15585 -38.1249 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.57707 -35.529 -0.1 + vertex -12.6843 -34.4922 -0.1 + vertex -9.84865 -38.1451 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.0331 -35.0276 -0.1 + vertex -9.84865 -38.1451 -0.1 + vertex -12.6843 -34.4922 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.84865 -38.1451 -0.1 + vertex -13.0331 -35.0276 -0.1 + vertex -11.9896 -38.1555 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.2045 -35.2497 -0.1 + vertex -11.9896 -38.1555 -0.1 + vertex -13.0331 -35.0276 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.3741 -35.4417 -0.1 + vertex -11.9896 -38.1555 -0.1 + vertex -13.2045 -35.2497 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.5421 -35.6036 -0.1 + vertex -11.9896 -38.1555 -0.1 + vertex -13.3741 -35.4417 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.7085 -35.7356 -0.1 + vertex -11.9896 -38.1555 -0.1 + vertex -13.5421 -35.6036 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.8736 -35.838 -0.1 + vertex -11.9896 -38.1555 -0.1 + vertex -13.7085 -35.7356 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1677 -38.1469 -0.1 + vertex -13.8736 -35.838 -0.1 + vertex -14.0373 -35.911 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.8736 -35.838 -0.1 + vertex -14.1677 -38.1469 -0.1 + vertex -11.9896 -38.1555 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.1999 -35.9546 -0.1 + vertex -14.1677 -38.1469 -0.1 + vertex -14.0373 -35.911 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.3614 -35.9691 -0.1 + vertex -14.1677 -38.1469 -0.1 + vertex -14.1999 -35.9546 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.5979 -36.0176 -0.1 + vertex -14.3614 -35.9691 -0.1 + vertex -14.4713 -35.9816 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.3614 -35.9691 -0.1 + vertex -14.5979 -36.0176 -0.1 + vertex -14.1677 -38.1469 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.8831 -36.1495 -0.1 + vertex -14.1677 -38.1469 -0.1 + vertex -14.5979 -36.0176 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.1813 -36.3448 -0.1 + vertex -14.1677 -38.1469 -0.1 + vertex -14.8831 -36.1495 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1677 -38.1469 -0.1 + vertex -15.1813 -36.3448 -0.1 + vertex -14.8486 -38.1282 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.4564 -36.5832 -0.1 + vertex -14.8486 -38.1282 -0.1 + vertex -15.1813 -36.3448 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.7439 -36.902 -0.1 + vertex -14.8486 -38.1282 -0.1 + vertex -15.4564 -36.5832 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.8486 -38.1282 -0.1 + vertex -15.7439 -36.902 -0.1 + vertex -15.316 -38.0928 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.8411 -37.0399 -0.1 + vertex -15.316 -38.0928 -0.1 + vertex -15.7439 -36.902 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.9096 -37.1689 -0.1 + vertex -15.316 -38.0928 -0.1 + vertex -15.8411 -37.0399 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.9604 -37.5428 -0.1 + vertex -15.316 -38.0928 -0.1 + vertex -15.9096 -37.1689 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.316 -38.0928 -0.1 + vertex -15.9604 -37.5428 -0.1 + vertex -15.614 -38.0352 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.614 -38.0352 -0.1 + vertex -15.8777 -37.8324 -0.1 + vertex -15.7132 -37.9965 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.7132 -37.9965 -0.1 + vertex -15.8777 -37.8324 -0.1 + vertex -15.7865 -37.9502 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -15.9316 -37.6764 -0.1 + vertex -15.614 -38.0352 -0.1 + vertex -15.9604 -37.5428 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.7865 -37.9502 -0.1 + vertex -15.8777 -37.8324 -0.1 + vertex -15.8396 -37.8957 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.9604 -37.5428 -0.1 + vertex -15.9096 -37.1689 -0.1 + vertex -15.9511 -37.293 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -15.8777 -37.8324 -0.1 + vertex -15.614 -38.0352 -0.1 + vertex -15.9316 -37.6764 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -15.9604 -37.5428 -0.1 + vertex -15.9511 -37.293 -0.1 + vertex -15.9675 -37.4163 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5311 -26.6889 -0.1 + vertex -14.2098 -26.3227 -0.1 + vertex -17.6656 -24.469 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.2098 -26.3227 -0.1 + vertex -18.5311 -26.6889 -0.1 + vertex -15.3777 -29.1914 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.7699 -29.7113 -0.1 + vertex -15.3777 -29.1914 -0.1 + vertex -18.5311 -26.6889 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.3777 -29.1914 -0.1 + vertex -19.7699 -29.7113 -0.1 + vertex -16.8163 -32.7116 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2682 -33.2523 -0.1 + vertex -16.8163 -32.7116 -0.1 + vertex -19.7699 -29.7113 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.8163 -32.7116 -0.1 + vertex -21.2682 -33.2523 -0.1 + vertex -17.1674 -33.591 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.1674 -33.591 -0.1 + vertex -21.2682 -33.2523 -0.1 + vertex -17.4329 -34.3072 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4329 -34.3072 -0.1 + vertex -21.2682 -33.2523 -0.1 + vertex -17.6153 -34.8741 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.6072 -34.0169 -0.1 + vertex -17.6153 -34.8741 -0.1 + vertex -21.2682 -33.2523 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.6153 -34.8741 -0.1 + vertex -21.6072 -34.0169 -0.1 + vertex -17.7168 -35.3062 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7168 -35.3062 -0.1 + vertex -21.6072 -34.0169 -0.1 + vertex -17.738 -35.4761 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.9074 -34.6287 -0.1 + vertex -17.738 -35.4761 -0.1 + vertex -21.6072 -34.0169 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7399 -35.6175 -0.1 + vertex -18.7028 -38.1359 -0.1 + vertex -18.0369 -38.1201 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.738 -35.4761 -0.1 + vertex -21.9074 -34.6287 -0.1 + vertex -17.7399 -35.6175 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -20.8109 -38.1301 -0.1 + vertex -17.7399 -35.6175 -0.1 + vertex -21.9074 -34.6287 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.7399 -35.6175 -0.1 + vertex -20.8109 -38.1301 -0.1 + vertex -18.7028 -38.1359 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.1824 -35.1035 -0.1 + vertex -20.8109 -38.1301 -0.1 + vertex -21.9074 -34.6287 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.4463 -35.4568 -0.1 + vertex -20.8109 -38.1301 -0.1 + vertex -22.1824 -35.1035 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.5782 -35.5929 -0.1 + vertex -20.8109 -38.1301 -0.1 + vertex -22.4463 -35.4568 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.7126 -35.7044 -0.1 + vertex -20.8109 -38.1301 -0.1 + vertex -22.5782 -35.5929 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.8511 -35.7934 -0.1 + vertex -20.8109 -38.1301 -0.1 + vertex -22.7126 -35.7044 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.4866 -38.0828 -0.1 + vertex -22.8511 -35.7934 -0.1 + vertex -22.9953 -35.8619 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.4866 -38.0828 -0.1 + vertex -22.9953 -35.8619 -0.1 + vertex -23.1471 -35.9117 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.4866 -38.0828 -0.1 + vertex -23.1471 -35.9117 -0.1 + vertex -23.3082 -35.9449 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.8511 -35.7934 -0.1 + vertex -23.4866 -38.0828 -0.1 + vertex -20.8109 -38.1301 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -23.665 -35.9691 -0.1 + vertex -23.4866 -38.0828 -0.1 + vertex -23.3082 -35.9449 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -23.8593 -35.9891 -0.1 + vertex -23.4866 -38.0828 -0.1 + vertex -23.665 -35.9691 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.0497 -36.0458 -0.1 + vertex -23.4866 -38.0828 -0.1 + vertex -23.8593 -35.9891 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.2334 -36.1344 -0.1 + vertex -23.4866 -38.0828 -0.1 + vertex -24.0497 -36.0458 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.4077 -36.2501 -0.1 + vertex -23.4866 -38.0828 -0.1 + vertex -24.2334 -36.1344 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.57 -36.3881 -0.1 + vertex -23.4866 -38.0828 -0.1 + vertex -24.4077 -36.2501 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.4866 -38.0828 -0.1 + vertex -24.57 -36.3881 -0.1 + vertex -24.3782 -38.0456 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.7177 -36.5437 -0.1 + vertex -24.3782 -38.0456 -0.1 + vertex -24.57 -36.3881 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.8479 -36.7119 -0.1 + vertex -24.3782 -38.0456 -0.1 + vertex -24.7177 -36.5437 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.9582 -36.888 -0.1 + vertex -24.3782 -38.0456 -0.1 + vertex -24.8479 -36.7119 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.0457 -37.0673 -0.1 + vertex -24.3782 -38.0456 -0.1 + vertex -24.9582 -36.888 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.1078 -37.2448 -0.1 + vertex -24.3782 -38.0456 -0.1 + vertex -25.0457 -37.0673 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3782 -38.0456 -0.1 + vertex -25.1078 -37.2448 -0.1 + vertex -24.7978 -38.0047 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.1419 -37.4158 -0.1 + vertex -24.7978 -38.0047 -0.1 + vertex -25.1078 -37.2448 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.1453 -37.5754 -0.1 + vertex -24.7978 -38.0047 -0.1 + vertex -25.1419 -37.4158 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.7978 -38.0047 -0.1 + vertex -25.1453 -37.5754 -0.1 + vertex -24.9442 -37.9384 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -25.1152 -37.719 -0.1 + vertex -24.9442 -37.9384 -0.1 + vertex -25.1453 -37.5754 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.9442 -37.9384 -0.1 + vertex -25.1152 -37.719 -0.1 + vertex -25.0491 -37.8416 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.237 -36.6071 -0.1 + vertex -16.2485 -36.9225 -0.1 + vertex -16.2109 -36.752 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.3106 -36.4662 -0.1 + vertex -16.2485 -36.9225 -0.1 + vertex -16.237 -36.6071 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.4249 -36.334 -0.1 + vertex -16.2485 -36.9225 -0.1 + vertex -16.3106 -36.4662 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.2485 -36.9225 -0.1 + vertex -16.4249 -36.334 -0.1 + vertex -16.3508 -37.1428 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.5729 -36.2152 -0.1 + vertex -16.3508 -37.1428 -0.1 + vertex -16.4249 -36.334 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.7476 -36.1146 -0.1 + vertex -16.3508 -37.1428 -0.1 + vertex -16.5729 -36.2152 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.3508 -37.1428 -0.1 + vertex -16.7476 -36.1146 -0.1 + vertex -16.5023 -37.3844 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.942 -36.0369 -0.1 + vertex -16.5023 -37.3844 -0.1 + vertex -16.7476 -36.1146 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.1493 -35.9869 -0.1 + vertex -16.5023 -37.3844 -0.1 + vertex -16.942 -36.0369 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.5023 -37.3844 -0.1 + vertex -17.1493 -35.9869 -0.1 + vertex -16.6872 -37.6188 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.3625 -35.9691 -0.1 + vertex -16.6872 -37.6188 -0.1 + vertex -17.1493 -35.9869 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4702 -35.9608 -0.1 + vertex -16.6872 -37.6188 -0.1 + vertex -17.3625 -35.9691 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.6872 -37.6188 -0.1 + vertex -17.4702 -35.9608 -0.1 + vertex -16.8516 -37.795 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -17.2437 -38.0218 -0.1 + vertex -16.8516 -37.795 -0.1 + vertex -17.4702 -35.9608 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.8516 -37.795 -0.1 + vertex -17.2437 -38.0218 -0.1 + vertex -17.0213 -37.9274 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5664 -38.0841 -0.1 + vertex -17.4702 -35.9608 -0.1 + vertex -17.5603 -35.9348 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4702 -35.9608 -0.1 + vertex -17.5664 -38.0841 -0.1 + vertex -17.2437 -38.0218 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.0369 -38.1201 -0.1 + vertex -17.5603 -35.9348 -0.1 + vertex -17.6327 -35.8892 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.0369 -38.1201 -0.1 + vertex -17.6327 -35.8892 -0.1 + vertex -17.6869 -35.8223 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.0369 -38.1201 -0.1 + vertex -17.6869 -35.8223 -0.1 + vertex -17.7228 -35.7323 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.0369 -38.1201 -0.1 + vertex -17.7228 -35.7323 -0.1 + vertex -17.7399 -35.6175 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5603 -35.9348 -0.1 + vertex -18.0369 -38.1201 -0.1 + vertex -17.5664 -38.0841 -0.1 + endloop + endfacet + facet normal -0.362708 -0.931903 0 + outer loop + vertex -12.0792 -19.1571 -0.1 + vertex -11.9023 -19.2259 0 + vertex -12.0792 -19.1571 0 + endloop + endfacet + facet normal -0.362708 -0.931903 -0 + outer loop + vertex -11.9023 -19.2259 0 + vertex -12.0792 -19.1571 -0.1 + vertex -11.9023 -19.2259 -0.1 + endloop + endfacet + facet normal -0.651552 -0.758604 0 + outer loop + vertex -11.9023 -19.2259 -0.1 + vertex -11.7723 -19.3375 0 + vertex -11.9023 -19.2259 0 + endloop + endfacet + facet normal -0.651552 -0.758604 -0 + outer loop + vertex -11.7723 -19.3375 0 + vertex -11.9023 -19.2259 -0.1 + vertex -11.7723 -19.3375 -0.1 + endloop + endfacet + facet normal -0.879356 -0.476164 0 + outer loop + vertex -11.6899 -19.4898 -0.1 + vertex -11.7723 -19.3375 0 + vertex -11.7723 -19.3375 -0.1 + endloop + endfacet + facet normal -0.879356 -0.476164 0 + outer loop + vertex -11.7723 -19.3375 0 + vertex -11.6899 -19.4898 -0.1 + vertex -11.6899 -19.4898 0 + endloop + endfacet + facet normal -0.98435 -0.176224 0 + outer loop + vertex -11.6557 -19.6804 -0.1 + vertex -11.6899 -19.4898 0 + vertex -11.6899 -19.4898 -0.1 + endloop + endfacet + facet normal -0.98435 -0.176224 0 + outer loop + vertex -11.6899 -19.4898 0 + vertex -11.6557 -19.6804 -0.1 + vertex -11.6557 -19.6804 0 + endloop + endfacet + facet normal -0.997828 0.0658663 0 + outer loop + vertex -11.6707 -19.9072 -0.1 + vertex -11.6557 -19.6804 0 + vertex -11.6557 -19.6804 -0.1 + endloop + endfacet + facet normal -0.997828 0.0658663 0 + outer loop + vertex -11.6557 -19.6804 0 + vertex -11.6707 -19.9072 -0.1 + vertex -11.6707 -19.9072 0 + endloop + endfacet + facet normal -0.970423 0.241411 0 + outer loop + vertex -11.7355 -20.1677 -0.1 + vertex -11.6707 -19.9072 0 + vertex -11.6707 -19.9072 -0.1 + endloop + endfacet + facet normal -0.970423 0.241411 0 + outer loop + vertex -11.6707 -19.9072 0 + vertex -11.7355 -20.1677 -0.1 + vertex -11.7355 -20.1677 0 + endloop + endfacet + facet normal -0.930032 0.367479 0 + outer loop + vertex -11.851 -20.4599 -0.1 + vertex -11.7355 -20.1677 0 + vertex -11.7355 -20.1677 -0.1 + endloop + endfacet + facet normal -0.930032 0.367479 0 + outer loop + vertex -11.7355 -20.1677 0 + vertex -11.851 -20.4599 -0.1 + vertex -11.851 -20.4599 0 + endloop + endfacet + facet normal -0.930941 0.365169 0 + outer loop + vertex -12.0288 -20.9134 -0.1 + vertex -11.851 -20.4599 0 + vertex -11.851 -20.4599 -0.1 + endloop + endfacet + facet normal -0.930941 0.365169 0 + outer loop + vertex -11.851 -20.4599 0 + vertex -12.0288 -20.9134 -0.1 + vertex -12.0288 -20.9134 0 + endloop + endfacet + facet normal -0.976329 0.216289 0 + outer loop + vertex -12.0594 -21.0513 -0.1 + vertex -12.0288 -20.9134 0 + vertex -12.0288 -20.9134 -0.1 + endloop + endfacet + facet normal -0.976329 0.216289 0 + outer loop + vertex -12.0288 -20.9134 0 + vertex -12.0594 -21.0513 -0.1 + vertex -12.0594 -21.0513 0 + endloop + endfacet + facet normal -0.998491 -0.0549167 0 + outer loop + vertex -12.0573 -21.0889 -0.1 + vertex -12.0594 -21.0513 0 + vertex -12.0594 -21.0513 -0.1 + endloop + endfacet + facet normal -0.998491 -0.0549167 0 + outer loop + vertex -12.0594 -21.0513 0 + vertex -12.0573 -21.0889 -0.1 + vertex -12.0573 -21.0889 0 + endloop + endfacet + facet normal -0.666017 -0.745937 0 + outer loop + vertex -12.0573 -21.0889 -0.1 + vertex -12.0427 -21.102 0 + vertex -12.0573 -21.0889 0 + endloop + endfacet + facet normal -0.666017 -0.745937 -0 + outer loop + vertex -12.0427 -21.102 0 + vertex -12.0573 -21.0889 -0.1 + vertex -12.0427 -21.102 -0.1 + endloop + endfacet + facet normal 0.407619 -0.913152 0 + outer loop + vertex -12.0427 -21.102 -0.1 + vertex -11.8784 -21.0286 0 + vertex -12.0427 -21.102 0 + endloop + endfacet + facet normal 0.407619 -0.913152 0 + outer loop + vertex -11.8784 -21.0286 0 + vertex -12.0427 -21.102 -0.1 + vertex -11.8784 -21.0286 -0.1 + endloop + endfacet + facet normal 0.473772 -0.880648 0 + outer loop + vertex -11.8784 -21.0286 -0.1 + vertex -11.5073 -20.829 0 + vertex -11.8784 -21.0286 0 + endloop + endfacet + facet normal 0.473772 -0.880648 0 + outer loop + vertex -11.5073 -20.829 0 + vertex -11.8784 -21.0286 -0.1 + vertex -11.5073 -20.829 -0.1 + endloop + endfacet + facet normal 0.498101 -0.867119 0 + outer loop + vertex -11.5073 -20.829 -0.1 + vertex -10.3649 -20.1728 0 + vertex -11.5073 -20.829 0 + endloop + endfacet + facet normal 0.498101 -0.867119 0 + outer loop + vertex -10.3649 -20.1728 0 + vertex -11.5073 -20.829 -0.1 + vertex -10.3649 -20.1728 -0.1 + endloop + endfacet + facet normal 0.501647 -0.865072 0 + outer loop + vertex -10.3649 -20.1728 -0.1 + vertex -9.87453 -19.8884 0 + vertex -10.3649 -20.1728 0 + endloop + endfacet + facet normal 0.501647 -0.865072 0 + outer loop + vertex -9.87453 -19.8884 0 + vertex -10.3649 -20.1728 -0.1 + vertex -9.87453 -19.8884 -0.1 + endloop + endfacet + facet normal 0.475521 -0.879704 0 + outer loop + vertex -9.87453 -19.8884 -0.1 + vertex -9.46489 -19.667 0 + vertex -9.87453 -19.8884 0 + endloop + endfacet + facet normal 0.475521 -0.879704 0 + outer loop + vertex -9.46489 -19.667 0 + vertex -9.87453 -19.8884 -0.1 + vertex -9.46489 -19.667 -0.1 + endloop + endfacet + facet normal 0.423964 -0.905679 0 + outer loop + vertex -9.46489 -19.667 -0.1 + vertex -9.10766 -19.4997 0 + vertex -9.46489 -19.667 0 + endloop + endfacet + facet normal 0.423964 -0.905679 0 + outer loop + vertex -9.10766 -19.4997 0 + vertex -9.46489 -19.667 -0.1 + vertex -9.10766 -19.4997 -0.1 + endloop + endfacet + facet normal 0.343275 -0.939235 0 + outer loop + vertex -9.10766 -19.4997 -0.1 + vertex -8.77447 -19.378 0 + vertex -9.10766 -19.4997 0 + endloop + endfacet + facet normal 0.343275 -0.939235 0 + outer loop + vertex -8.77447 -19.378 0 + vertex -9.10766 -19.4997 -0.1 + vertex -8.77447 -19.378 -0.1 + endloop + endfacet + facet normal 0.244399 -0.969675 0 + outer loop + vertex -8.77447 -19.378 -0.1 + vertex -8.43701 -19.2929 0 + vertex -8.77447 -19.378 0 + endloop + endfacet + facet normal 0.244399 -0.969675 0 + outer loop + vertex -8.43701 -19.2929 0 + vertex -8.77447 -19.378 -0.1 + vertex -8.43701 -19.2929 -0.1 + endloop + endfacet + facet normal 0.152431 -0.988314 0 + outer loop + vertex -8.43701 -19.2929 -0.1 + vertex -8.06691 -19.2358 0 + vertex -8.43701 -19.2929 0 + endloop + endfacet + facet normal 0.152431 -0.988314 0 + outer loop + vertex -8.06691 -19.2358 0 + vertex -8.43701 -19.2929 -0.1 + vertex -8.06691 -19.2358 -0.1 + endloop + endfacet + facet normal 0.0874592 -0.996168 0 + outer loop + vertex -8.06691 -19.2358 -0.1 + vertex -7.63584 -19.198 0 + vertex -8.06691 -19.2358 0 + endloop + endfacet + facet normal 0.0874592 -0.996168 0 + outer loop + vertex -7.63584 -19.198 0 + vertex -8.06691 -19.2358 -0.1 + vertex -7.63584 -19.198 -0.1 + endloop + endfacet + facet normal 0.0524883 -0.998622 0 + outer loop + vertex -7.63584 -19.198 -0.1 + vertex -7.11547 -19.1706 0 + vertex -7.63584 -19.198 0 + endloop + endfacet + facet normal 0.0524883 -0.998622 0 + outer loop + vertex -7.11547 -19.1706 0 + vertex -7.63584 -19.198 -0.1 + vertex -7.11547 -19.1706 -0.1 + endloop + endfacet + facet normal 0.0303019 -0.999541 0 + outer loop + vertex -7.11547 -19.1706 -0.1 + vertex -6.14058 -19.1411 0 + vertex -7.11547 -19.1706 0 + endloop + endfacet + facet normal 0.0303019 -0.999541 0 + outer loop + vertex -6.14058 -19.1411 0 + vertex -7.11547 -19.1706 -0.1 + vertex -6.14058 -19.1411 -0.1 + endloop + endfacet + facet normal -0.0462057 -0.998932 0 + outer loop + vertex -6.14058 -19.1411 -0.1 + vertex -5.8145 -19.1562 0 + vertex -6.14058 -19.1411 0 + endloop + endfacet + facet normal -0.0462057 -0.998932 -0 + outer loop + vertex -5.8145 -19.1562 0 + vertex -6.14058 -19.1411 -0.1 + vertex -5.8145 -19.1562 -0.1 + endloop + endfacet + facet normal -0.173732 -0.984793 0 + outer loop + vertex -5.8145 -19.1562 -0.1 + vertex -5.55901 -19.2012 0 + vertex -5.8145 -19.1562 0 + endloop + endfacet + facet normal -0.173732 -0.984793 -0 + outer loop + vertex -5.55901 -19.2012 0 + vertex -5.8145 -19.1562 -0.1 + vertex -5.55901 -19.2012 -0.1 + endloop + endfacet + facet normal -0.362239 -0.932085 0 + outer loop + vertex -5.55901 -19.2012 -0.1 + vertex -5.34642 -19.2839 0 + vertex -5.55901 -19.2012 0 + endloop + endfacet + facet normal -0.362239 -0.932085 -0 + outer loop + vertex -5.34642 -19.2839 0 + vertex -5.55901 -19.2012 -0.1 + vertex -5.34642 -19.2839 -0.1 + endloop + endfacet + facet normal -0.543204 -0.8396 0 + outer loop + vertex -5.34642 -19.2839 -0.1 + vertex -5.14898 -19.4116 0 + vertex -5.34642 -19.2839 0 + endloop + endfacet + facet normal -0.543204 -0.8396 -0 + outer loop + vertex -5.14898 -19.4116 0 + vertex -5.34642 -19.2839 -0.1 + vertex -5.14898 -19.4116 -0.1 + endloop + endfacet + facet normal -0.651669 -0.758504 0 + outer loop + vertex -5.14898 -19.4116 -0.1 + vertex -4.93899 -19.592 0 + vertex -5.14898 -19.4116 0 + endloop + endfacet + facet normal -0.651669 -0.758504 -0 + outer loop + vertex -4.93899 -19.592 0 + vertex -5.14898 -19.4116 -0.1 + vertex -4.93899 -19.592 -0.1 + endloop + endfacet + facet normal -0.693118 -0.720824 0 + outer loop + vertex -4.93899 -19.592 -0.1 + vertex -4.68872 -19.8327 0 + vertex -4.93899 -19.592 0 + endloop + endfacet + facet normal -0.693118 -0.720824 -0 + outer loop + vertex -4.68872 -19.8327 0 + vertex -4.93899 -19.592 -0.1 + vertex -4.68872 -19.8327 -0.1 + endloop + endfacet + facet normal -0.711815 -0.702367 0 + outer loop + vertex -4.47107 -20.0532 -0.1 + vertex -4.68872 -19.8327 0 + vertex -4.68872 -19.8327 -0.1 + endloop + endfacet + facet normal -0.711815 -0.702367 0 + outer loop + vertex -4.68872 -19.8327 0 + vertex -4.47107 -20.0532 -0.1 + vertex -4.47107 -20.0532 0 + endloop + endfacet + facet normal -0.751184 -0.660092 0 + outer loop + vertex -4.29663 -20.2518 -0.1 + vertex -4.47107 -20.0532 0 + vertex -4.47107 -20.0532 -0.1 + endloop + endfacet + facet normal -0.751184 -0.660092 0 + outer loop + vertex -4.47107 -20.0532 0 + vertex -4.29663 -20.2518 -0.1 + vertex -4.29663 -20.2518 0 + endloop + endfacet + facet normal -0.80931 -0.587382 0 + outer loop + vertex -4.15983 -20.4402 -0.1 + vertex -4.29663 -20.2518 0 + vertex -4.29663 -20.2518 -0.1 + endloop + endfacet + facet normal -0.80931 -0.587382 0 + outer loop + vertex -4.29663 -20.2518 0 + vertex -4.15983 -20.4402 -0.1 + vertex -4.15983 -20.4402 0 + endloop + endfacet + facet normal -0.876288 -0.481787 0 + outer loop + vertex -4.05507 -20.6308 -0.1 + vertex -4.15983 -20.4402 0 + vertex -4.15983 -20.4402 -0.1 + endloop + endfacet + facet normal -0.876288 -0.481787 0 + outer loop + vertex -4.15983 -20.4402 0 + vertex -4.05507 -20.6308 -0.1 + vertex -4.05507 -20.6308 0 + endloop + endfacet + facet normal -0.93397 -0.357351 0 + outer loop + vertex -3.97677 -20.8354 -0.1 + vertex -4.05507 -20.6308 0 + vertex -4.05507 -20.6308 -0.1 + endloop + endfacet + facet normal -0.93397 -0.357351 0 + outer loop + vertex -4.05507 -20.6308 0 + vertex -3.97677 -20.8354 -0.1 + vertex -3.97677 -20.8354 0 + endloop + endfacet + facet normal -0.970412 -0.241456 0 + outer loop + vertex -3.91934 -21.0662 -0.1 + vertex -3.97677 -20.8354 0 + vertex -3.97677 -20.8354 -0.1 + endloop + endfacet + facet normal -0.970412 -0.241456 0 + outer loop + vertex -3.97677 -20.8354 0 + vertex -3.91934 -21.0662 -0.1 + vertex -3.91934 -21.0662 0 + endloop + endfacet + facet normal -0.987949 -0.154777 0 + outer loop + vertex -3.87719 -21.3353 -0.1 + vertex -3.91934 -21.0662 0 + vertex -3.91934 -21.0662 -0.1 + endloop + endfacet + facet normal -0.987949 -0.154777 0 + outer loop + vertex -3.91934 -21.0662 0 + vertex -3.87719 -21.3353 -0.1 + vertex -3.87719 -21.3353 0 + endloop + endfacet + facet normal -0.994874 -0.10112 0 + outer loop + vertex -3.84473 -21.6547 -0.1 + vertex -3.87719 -21.3353 0 + vertex -3.87719 -21.3353 -0.1 + endloop + endfacet + facet normal -0.994874 -0.10112 0 + outer loop + vertex -3.87719 -21.3353 0 + vertex -3.84473 -21.6547 -0.1 + vertex -3.84473 -21.6547 0 + endloop + endfacet + facet normal -0.999588 -0.0286991 0 + outer loop + vertex -3.82849 -22.2203 -0.1 + vertex -3.84473 -21.6547 0 + vertex -3.84473 -21.6547 -0.1 + endloop + endfacet + facet normal -0.999588 -0.0286991 0 + outer loop + vertex -3.84473 -21.6547 0 + vertex -3.82849 -22.2203 -0.1 + vertex -3.82849 -22.2203 0 + endloop + endfacet + facet normal -0.998294 0.058395 0 + outer loop + vertex -3.84589 -22.5177 -0.1 + vertex -3.82849 -22.2203 0 + vertex -3.82849 -22.2203 -0.1 + endloop + endfacet + facet normal -0.998294 0.058395 0 + outer loop + vertex -3.82849 -22.2203 0 + vertex -3.84589 -22.5177 -0.1 + vertex -3.84589 -22.5177 0 + endloop + endfacet + facet normal -0.99329 0.115647 0 + outer loop + vertex -3.88244 -22.8317 -0.1 + vertex -3.84589 -22.5177 0 + vertex -3.84589 -22.5177 -0.1 + endloop + endfacet + facet normal -0.99329 0.115647 0 + outer loop + vertex -3.84589 -22.5177 0 + vertex -3.88244 -22.8317 -0.1 + vertex -3.88244 -22.8317 0 + endloop + endfacet + facet normal -0.985725 0.168361 0 + outer loop + vertex -3.93975 -23.1672 -0.1 + vertex -3.88244 -22.8317 0 + vertex -3.88244 -22.8317 -0.1 + endloop + endfacet + facet normal -0.985725 0.168361 0 + outer loop + vertex -3.88244 -22.8317 0 + vertex -3.93975 -23.1672 -0.1 + vertex -3.93975 -23.1672 0 + endloop + endfacet + facet normal -0.976652 0.214827 0 + outer loop + vertex -4.01943 -23.5295 -0.1 + vertex -3.93975 -23.1672 0 + vertex -3.93975 -23.1672 -0.1 + endloop + endfacet + facet normal -0.976652 0.214827 0 + outer loop + vertex -3.93975 -23.1672 0 + vertex -4.01943 -23.5295 -0.1 + vertex -4.01943 -23.5295 0 + endloop + endfacet + facet normal -0.962379 0.27171 0 + outer loop + vertex -4.25232 -24.3543 -0.1 + vertex -4.01943 -23.5295 0 + vertex -4.01943 -23.5295 -0.1 + endloop + endfacet + facet normal -0.962379 0.27171 0 + outer loop + vertex -4.01943 -23.5295 0 + vertex -4.25232 -24.3543 -0.1 + vertex -4.25232 -24.3543 0 + endloop + endfacet + facet normal -0.945562 0.325441 0 + outer loop + vertex -4.59396 -25.347 -0.1 + vertex -4.25232 -24.3543 0 + vertex -4.25232 -24.3543 -0.1 + endloop + endfacet + facet normal -0.945562 0.325441 0 + outer loop + vertex -4.25232 -24.3543 0 + vertex -4.59396 -25.347 -0.1 + vertex -4.59396 -25.347 0 + endloop + endfacet + facet normal -0.933005 0.359863 0 + outer loop + vertex -5.05721 -26.548 -0.1 + vertex -4.59396 -25.347 0 + vertex -4.59396 -25.347 -0.1 + endloop + endfacet + facet normal -0.933005 0.359863 0 + outer loop + vertex -4.59396 -25.347 0 + vertex -5.05721 -26.548 -0.1 + vertex -5.05721 -26.548 0 + endloop + endfacet + facet normal -0.924544 0.381075 0 + outer loop + vertex -5.65492 -27.9982 -0.1 + vertex -5.05721 -26.548 0 + vertex -5.05721 -26.548 -0.1 + endloop + endfacet + facet normal -0.924544 0.381075 0 + outer loop + vertex -5.05721 -26.548 0 + vertex -5.65492 -27.9982 -0.1 + vertex -5.65492 -27.9982 0 + endloop + endfacet + facet normal -0.919267 0.393635 0 + outer loop + vertex -6.39994 -29.738 -0.1 + vertex -5.65492 -27.9982 0 + vertex -5.65492 -27.9982 -0.1 + endloop + endfacet + facet normal -0.919267 0.393635 0 + outer loop + vertex -5.65492 -27.9982 0 + vertex -6.39994 -29.738 -0.1 + vertex -6.39994 -29.738 0 + endloop + endfacet + facet normal -0.920331 0.391141 0 + outer loop + vertex -7.70823 -32.8163 -0.1 + vertex -6.39994 -29.738 0 + vertex -6.39994 -29.738 -0.1 + endloop + endfacet + facet normal -0.920331 0.391141 0 + outer loop + vertex -6.39994 -29.738 0 + vertex -7.70823 -32.8163 -0.1 + vertex -7.70823 -32.8163 0 + endloop + endfacet + facet normal -0.926406 0.376526 0 + outer loop + vertex -8.13453 -33.8652 -0.1 + vertex -7.70823 -32.8163 0 + vertex -7.70823 -32.8163 -0.1 + endloop + endfacet + facet normal -0.926406 0.376526 0 + outer loop + vertex -7.70823 -32.8163 0 + vertex -8.13453 -33.8652 -0.1 + vertex -8.13453 -33.8652 0 + endloop + endfacet + facet normal -0.938884 0.344234 0 + outer loop + vertex -8.32474 -34.384 -0.1 + vertex -8.13453 -33.8652 0 + vertex -8.13453 -33.8652 -0.1 + endloop + endfacet + facet normal -0.938884 0.344234 0 + outer loop + vertex -8.13453 -33.8652 0 + vertex -8.32474 -34.384 -0.1 + vertex -8.32474 -34.384 0 + endloop + endfacet + facet normal -0.969782 0.243972 0 + outer loop + vertex -8.55649 -35.3052 -0.1 + vertex -8.32474 -34.384 0 + vertex -8.32474 -34.384 -0.1 + endloop + endfacet + facet normal -0.969782 0.243972 0 + outer loop + vertex -8.32474 -34.384 0 + vertex -8.55649 -35.3052 -0.1 + vertex -8.55649 -35.3052 0 + endloop + endfacet + facet normal -0.98411 0.17756 0 + outer loop + vertex -8.57785 -35.4236 -0.1 + vertex -8.55649 -35.3052 0 + vertex -8.55649 -35.3052 -0.1 + endloop + endfacet + facet normal -0.98411 0.17756 0 + outer loop + vertex -8.55649 -35.3052 0 + vertex -8.57785 -35.4236 -0.1 + vertex -8.57785 -35.4236 0 + endloop + endfacet + facet normal -0.999972 -0.00745735 0 + outer loop + vertex -8.57707 -35.529 -0.1 + vertex -8.57785 -35.4236 0 + vertex -8.57785 -35.4236 -0.1 + endloop + endfacet + facet normal -0.999972 -0.00745735 0 + outer loop + vertex -8.57785 -35.4236 0 + vertex -8.57707 -35.529 -0.1 + vertex -8.57707 -35.529 0 + endloop + endfacet + facet normal -0.966564 -0.256425 0 + outer loop + vertex -8.55176 -35.6244 -0.1 + vertex -8.57707 -35.529 0 + vertex -8.57707 -35.529 -0.1 + endloop + endfacet + facet normal -0.966564 -0.256425 0 + outer loop + vertex -8.57707 -35.529 0 + vertex -8.55176 -35.6244 -0.1 + vertex -8.55176 -35.6244 0 + endloop + endfacet + facet normal -0.861289 -0.508115 0 + outer loop + vertex -8.49955 -35.7129 -0.1 + vertex -8.55176 -35.6244 0 + vertex -8.55176 -35.6244 -0.1 + endloop + endfacet + facet normal -0.861289 -0.508115 0 + outer loop + vertex -8.55176 -35.6244 0 + vertex -8.49955 -35.7129 -0.1 + vertex -8.49955 -35.7129 0 + endloop + endfacet + facet normal -0.720516 -0.693438 0 + outer loop + vertex -8.41808 -35.7975 -0.1 + vertex -8.49955 -35.7129 0 + vertex -8.49955 -35.7129 -0.1 + endloop + endfacet + facet normal -0.720516 -0.693438 0 + outer loop + vertex -8.49955 -35.7129 0 + vertex -8.41808 -35.7975 -0.1 + vertex -8.41808 -35.7975 0 + endloop + endfacet + facet normal -0.595759 -0.803164 0 + outer loop + vertex -8.41808 -35.7975 -0.1 + vertex -8.30497 -35.8814 0 + vertex -8.41808 -35.7975 0 + endloop + endfacet + facet normal -0.595759 -0.803164 -0 + outer loop + vertex -8.30497 -35.8814 0 + vertex -8.41808 -35.7975 -0.1 + vertex -8.30497 -35.8814 -0.1 + endloop + endfacet + facet normal -0.473656 -0.88071 0 + outer loop + vertex -8.30497 -35.8814 -0.1 + vertex -7.97432 -36.0592 0 + vertex -8.30497 -35.8814 0 + endloop + endfacet + facet normal -0.473656 -0.88071 -0 + outer loop + vertex -7.97432 -36.0592 0 + vertex -8.30497 -35.8814 -0.1 + vertex -7.97432 -36.0592 -0.1 + endloop + endfacet + facet normal -0.487345 -0.873209 0 + outer loop + vertex -7.97432 -36.0592 -0.1 + vertex -7.70312 -36.2106 0 + vertex -7.97432 -36.0592 0 + endloop + endfacet + facet normal -0.487345 -0.873209 -0 + outer loop + vertex -7.70312 -36.2106 0 + vertex -7.97432 -36.0592 -0.1 + vertex -7.70312 -36.2106 -0.1 + endloop + endfacet + facet normal -0.634834 -0.772648 0 + outer loop + vertex -7.70312 -36.2106 -0.1 + vertex -7.50076 -36.3769 0 + vertex -7.70312 -36.2106 0 + endloop + endfacet + facet normal -0.634834 -0.772648 -0 + outer loop + vertex -7.50076 -36.3769 0 + vertex -7.70312 -36.2106 -0.1 + vertex -7.50076 -36.3769 -0.1 + endloop + endfacet + facet normal -0.80484 -0.593492 0 + outer loop + vertex -7.36727 -36.5579 -0.1 + vertex -7.50076 -36.3769 0 + vertex -7.50076 -36.3769 -0.1 + endloop + endfacet + facet normal -0.80484 -0.593492 0 + outer loop + vertex -7.50076 -36.3769 0 + vertex -7.36727 -36.5579 -0.1 + vertex -7.36727 -36.5579 0 + endloop + endfacet + facet normal -0.919952 -0.39203 0 + outer loop + vertex -7.32635 -36.6539 -0.1 + vertex -7.36727 -36.5579 0 + vertex -7.36727 -36.5579 -0.1 + endloop + endfacet + facet normal -0.919952 -0.39203 0 + outer loop + vertex -7.36727 -36.5579 0 + vertex -7.32635 -36.6539 -0.1 + vertex -7.32635 -36.6539 0 + endloop + endfacet + facet normal -0.972883 -0.231299 0 + outer loop + vertex -7.30266 -36.7536 -0.1 + vertex -7.32635 -36.6539 0 + vertex -7.32635 -36.6539 -0.1 + endloop + endfacet + facet normal -0.972883 -0.231299 0 + outer loop + vertex -7.32635 -36.6539 0 + vertex -7.30266 -36.7536 -0.1 + vertex -7.30266 -36.7536 0 + endloop + endfacet + facet normal -0.998045 -0.0625022 0 + outer loop + vertex -7.29619 -36.8569 -0.1 + vertex -7.30266 -36.7536 0 + vertex -7.30266 -36.7536 -0.1 + endloop + endfacet + facet normal -0.998045 -0.0625022 0 + outer loop + vertex -7.30266 -36.7536 0 + vertex -7.29619 -36.8569 -0.1 + vertex -7.29619 -36.8569 0 + endloop + endfacet + facet normal -0.994972 0.100157 0 + outer loop + vertex -7.30695 -36.9638 -0.1 + vertex -7.29619 -36.8569 0 + vertex -7.29619 -36.8569 -0.1 + endloop + endfacet + facet normal -0.994972 0.100157 0 + outer loop + vertex -7.29619 -36.8569 0 + vertex -7.30695 -36.9638 -0.1 + vertex -7.30695 -36.9638 0 + endloop + endfacet + facet normal -0.950745 0.309974 0 + outer loop + vertex -7.38017 -37.1883 -0.1 + vertex -7.30695 -36.9638 0 + vertex -7.30695 -36.9638 -0.1 + endloop + endfacet + facet normal -0.950745 0.309974 0 + outer loop + vertex -7.30695 -36.9638 0 + vertex -7.38017 -37.1883 -0.1 + vertex -7.38017 -37.1883 0 + endloop + endfacet + facet normal -0.859288 0.511491 0 + outer loop + vertex -7.52232 -37.4271 -0.1 + vertex -7.38017 -37.1883 0 + vertex -7.38017 -37.1883 -0.1 + endloop + endfacet + facet normal -0.859288 0.511491 0 + outer loop + vertex -7.38017 -37.1883 0 + vertex -7.52232 -37.4271 -0.1 + vertex -7.52232 -37.4271 0 + endloop + endfacet + facet normal -0.767721 0.640785 0 + outer loop + vertex -7.73344 -37.6801 -0.1 + vertex -7.52232 -37.4271 0 + vertex -7.52232 -37.4271 -0.1 + endloop + endfacet + facet normal -0.767721 0.640785 0 + outer loop + vertex -7.52232 -37.4271 0 + vertex -7.73344 -37.6801 -0.1 + vertex -7.73344 -37.6801 0 + endloop + endfacet + facet normal -0.693467 0.720489 0 + outer loop + vertex -7.73344 -37.6801 -0.1 + vertex -7.8903 -37.8311 0 + vertex -7.73344 -37.6801 0 + endloop + endfacet + facet normal -0.693467 0.720489 0 + outer loop + vertex -7.8903 -37.8311 0 + vertex -7.73344 -37.6801 -0.1 + vertex -7.8903 -37.8311 -0.1 + endloop + endfacet + facet normal -0.544632 0.838675 0 + outer loop + vertex -7.8903 -37.8311 -0.1 + vertex -8.0676 -37.9462 0 + vertex -7.8903 -37.8311 0 + endloop + endfacet + facet normal -0.544632 0.838675 0 + outer loop + vertex -8.0676 -37.9462 0 + vertex -7.8903 -37.8311 -0.1 + vertex -8.0676 -37.9462 -0.1 + endloop + endfacet + facet normal -0.329452 0.944172 0 + outer loop + vertex -8.0676 -37.9462 -0.1 + vertex -8.30871 -38.0303 0 + vertex -8.0676 -37.9462 0 + endloop + endfacet + facet normal -0.329452 0.944172 0 + outer loop + vertex -8.30871 -38.0303 0 + vertex -8.0676 -37.9462 -0.1 + vertex -8.30871 -38.0303 -0.1 + endloop + endfacet + facet normal -0.164178 0.986431 0 + outer loop + vertex -8.30871 -38.0303 -0.1 + vertex -8.657 -38.0883 0 + vertex -8.30871 -38.0303 0 + endloop + endfacet + facet normal -0.164178 0.986431 0 + outer loop + vertex -8.657 -38.0883 0 + vertex -8.30871 -38.0303 -0.1 + vertex -8.657 -38.0883 -0.1 + endloop + endfacet + facet normal -0.0732736 0.997312 0 + outer loop + vertex -8.657 -38.0883 -0.1 + vertex -9.15585 -38.1249 0 + vertex -8.657 -38.0883 0 + endloop + endfacet + facet normal -0.0732736 0.997312 0 + outer loop + vertex -9.15585 -38.1249 0 + vertex -8.657 -38.0883 -0.1 + vertex -9.15585 -38.1249 -0.1 + endloop + endfacet + facet normal -0.0291211 0.999576 0 + outer loop + vertex -9.15585 -38.1249 -0.1 + vertex -9.84865 -38.1451 0 + vertex -9.15585 -38.1249 0 + endloop + endfacet + facet normal -0.0291211 0.999576 0 + outer loop + vertex -9.84865 -38.1451 0 + vertex -9.15585 -38.1249 -0.1 + vertex -9.84865 -38.1451 -0.1 + endloop + endfacet + facet normal -0.00482502 0.999988 0 + outer loop + vertex -9.84865 -38.1451 -0.1 + vertex -11.9896 -38.1555 0 + vertex -9.84865 -38.1451 0 + endloop + endfacet + facet normal -0.00482502 0.999988 0 + outer loop + vertex -11.9896 -38.1555 0 + vertex -9.84865 -38.1451 -0.1 + vertex -11.9896 -38.1555 -0.1 + endloop + endfacet + facet normal 0.0039213 0.999992 -0 + outer loop + vertex -11.9896 -38.1555 -0.1 + vertex -14.1677 -38.1469 0 + vertex -11.9896 -38.1555 0 + endloop + endfacet + facet normal 0.0039213 0.999992 0 + outer loop + vertex -14.1677 -38.1469 0 + vertex -11.9896 -38.1555 -0.1 + vertex -14.1677 -38.1469 -0.1 + endloop + endfacet + facet normal 0.0274602 0.999623 -0 + outer loop + vertex -14.1677 -38.1469 -0.1 + vertex -14.8486 -38.1282 0 + vertex -14.1677 -38.1469 0 + endloop + endfacet + facet normal 0.0274602 0.999623 0 + outer loop + vertex -14.8486 -38.1282 0 + vertex -14.1677 -38.1469 -0.1 + vertex -14.8486 -38.1282 -0.1 + endloop + endfacet + facet normal 0.0756421 0.997135 -0 + outer loop + vertex -14.8486 -38.1282 -0.1 + vertex -15.316 -38.0928 0 + vertex -14.8486 -38.1282 0 + endloop + endfacet + facet normal 0.0756421 0.997135 0 + outer loop + vertex -15.316 -38.0928 0 + vertex -14.8486 -38.1282 -0.1 + vertex -15.316 -38.0928 -0.1 + endloop + endfacet + facet normal 0.189644 0.981853 -0 + outer loop + vertex -15.316 -38.0928 -0.1 + vertex -15.614 -38.0352 0 + vertex -15.316 -38.0928 0 + endloop + endfacet + facet normal 0.189644 0.981853 0 + outer loop + vertex -15.614 -38.0352 0 + vertex -15.316 -38.0928 -0.1 + vertex -15.614 -38.0352 -0.1 + endloop + endfacet + facet normal 0.363705 0.931514 -0 + outer loop + vertex -15.614 -38.0352 -0.1 + vertex -15.7132 -37.9965 0 + vertex -15.614 -38.0352 0 + endloop + endfacet + facet normal 0.363705 0.931514 0 + outer loop + vertex -15.7132 -37.9965 0 + vertex -15.614 -38.0352 -0.1 + vertex -15.7132 -37.9965 -0.1 + endloop + endfacet + facet normal 0.533432 0.845843 -0 + outer loop + vertex -15.7132 -37.9965 -0.1 + vertex -15.7865 -37.9502 0 + vertex -15.7132 -37.9965 0 + endloop + endfacet + facet normal 0.533432 0.845843 0 + outer loop + vertex -15.7865 -37.9502 0 + vertex -15.7132 -37.9965 -0.1 + vertex -15.7865 -37.9502 -0.1 + endloop + endfacet + facet normal 0.71659 0.697495 0 + outer loop + vertex -15.7865 -37.9502 0 + vertex -15.8396 -37.8957 -0.1 + vertex -15.8396 -37.8957 0 + endloop + endfacet + facet normal 0.71659 0.697495 0 + outer loop + vertex -15.8396 -37.8957 -0.1 + vertex -15.7865 -37.9502 0 + vertex -15.7865 -37.9502 -0.1 + endloop + endfacet + facet normal 0.856476 0.516186 0 + outer loop + vertex -15.8396 -37.8957 0 + vertex -15.8777 -37.8324 -0.1 + vertex -15.8777 -37.8324 0 + endloop + endfacet + facet normal 0.856476 0.516186 0 + outer loop + vertex -15.8777 -37.8324 -0.1 + vertex -15.8396 -37.8957 0 + vertex -15.8396 -37.8957 -0.1 + endloop + endfacet + facet normal 0.945292 0.326225 0 + outer loop + vertex -15.8777 -37.8324 0 + vertex -15.9316 -37.6764 -0.1 + vertex -15.9316 -37.6764 0 + endloop + endfacet + facet normal 0.945292 0.326225 0 + outer loop + vertex -15.9316 -37.6764 -0.1 + vertex -15.8777 -37.8324 0 + vertex -15.8777 -37.8324 -0.1 + endloop + endfacet + facet normal 0.977576 0.210582 0 + outer loop + vertex -15.9316 -37.6764 0 + vertex -15.9604 -37.5428 -0.1 + vertex -15.9604 -37.5428 0 + endloop + endfacet + facet normal 0.977576 0.210582 0 + outer loop + vertex -15.9604 -37.5428 -0.1 + vertex -15.9316 -37.6764 0 + vertex -15.9316 -37.6764 -0.1 + endloop + endfacet + facet normal 0.998424 0.0561231 0 + outer loop + vertex -15.9604 -37.5428 0 + vertex -15.9675 -37.4163 -0.1 + vertex -15.9675 -37.4163 0 + endloop + endfacet + facet normal 0.998424 0.0561231 0 + outer loop + vertex -15.9675 -37.4163 -0.1 + vertex -15.9604 -37.5428 0 + vertex -15.9604 -37.5428 -0.1 + endloop + endfacet + facet normal 0.991334 -0.131364 0 + outer loop + vertex -15.9675 -37.4163 0 + vertex -15.9511 -37.293 -0.1 + vertex -15.9511 -37.293 0 + endloop + endfacet + facet normal 0.991334 -0.131364 0 + outer loop + vertex -15.9511 -37.293 -0.1 + vertex -15.9675 -37.4163 0 + vertex -15.9675 -37.4163 -0.1 + endloop + endfacet + facet normal 0.94832 -0.317316 0 + outer loop + vertex -15.9511 -37.293 0 + vertex -15.9096 -37.1689 -0.1 + vertex -15.9096 -37.1689 0 + endloop + endfacet + facet normal 0.94832 -0.317316 0 + outer loop + vertex -15.9096 -37.1689 -0.1 + vertex -15.9511 -37.293 0 + vertex -15.9511 -37.293 -0.1 + endloop + endfacet + facet normal 0.883259 -0.468885 0 + outer loop + vertex -15.9096 -37.1689 0 + vertex -15.8411 -37.0399 -0.1 + vertex -15.8411 -37.0399 0 + endloop + endfacet + facet normal 0.883259 -0.468885 0 + outer loop + vertex -15.8411 -37.0399 -0.1 + vertex -15.9096 -37.1689 0 + vertex -15.9096 -37.1689 -0.1 + endloop + endfacet + facet normal 0.817454 -0.575994 0 + outer loop + vertex -15.8411 -37.0399 0 + vertex -15.7439 -36.902 -0.1 + vertex -15.7439 -36.902 0 + endloop + endfacet + facet normal 0.817454 -0.575994 0 + outer loop + vertex -15.7439 -36.902 -0.1 + vertex -15.8411 -37.0399 0 + vertex -15.8411 -37.0399 -0.1 + endloop + endfacet + facet normal 0.742584 -0.669753 0 + outer loop + vertex -15.7439 -36.902 0 + vertex -15.4564 -36.5832 -0.1 + vertex -15.4564 -36.5832 0 + endloop + endfacet + facet normal 0.742584 -0.669753 0 + outer loop + vertex -15.4564 -36.5832 -0.1 + vertex -15.7439 -36.902 0 + vertex -15.7439 -36.902 -0.1 + endloop + endfacet + facet normal 0.654929 -0.755691 0 + outer loop + vertex -15.4564 -36.5832 -0.1 + vertex -15.1813 -36.3448 0 + vertex -15.4564 -36.5832 0 + endloop + endfacet + facet normal 0.654929 -0.755691 0 + outer loop + vertex -15.1813 -36.3448 0 + vertex -15.4564 -36.5832 -0.1 + vertex -15.1813 -36.3448 -0.1 + endloop + endfacet + facet normal 0.547883 -0.836555 0 + outer loop + vertex -15.1813 -36.3448 -0.1 + vertex -14.8831 -36.1495 0 + vertex -15.1813 -36.3448 0 + endloop + endfacet + facet normal 0.547883 -0.836555 0 + outer loop + vertex -14.8831 -36.1495 0 + vertex -15.1813 -36.3448 -0.1 + vertex -14.8831 -36.1495 -0.1 + endloop + endfacet + facet normal 0.419801 -0.907616 0 + outer loop + vertex -14.8831 -36.1495 -0.1 + vertex -14.5979 -36.0176 0 + vertex -14.8831 -36.1495 0 + endloop + endfacet + facet normal 0.419801 -0.907616 0 + outer loop + vertex -14.5979 -36.0176 0 + vertex -14.8831 -36.1495 -0.1 + vertex -14.5979 -36.0176 -0.1 + endloop + endfacet + facet normal 0.273076 -0.961992 0 + outer loop + vertex -14.5979 -36.0176 -0.1 + vertex -14.4713 -35.9816 0 + vertex -14.5979 -36.0176 0 + endloop + endfacet + facet normal 0.273076 -0.961992 0 + outer loop + vertex -14.4713 -35.9816 0 + vertex -14.5979 -36.0176 -0.1 + vertex -14.4713 -35.9816 -0.1 + endloop + endfacet + facet normal 0.113362 -0.993554 0 + outer loop + vertex -14.4713 -35.9816 -0.1 + vertex -14.3614 -35.9691 0 + vertex -14.4713 -35.9816 0 + endloop + endfacet + facet normal 0.113362 -0.993554 0 + outer loop + vertex -14.3614 -35.9691 0 + vertex -14.4713 -35.9816 -0.1 + vertex -14.3614 -35.9691 -0.1 + endloop + endfacet + facet normal 0.0894161 -0.995994 0 + outer loop + vertex -14.3614 -35.9691 -0.1 + vertex -14.1999 -35.9546 0 + vertex -14.3614 -35.9691 0 + endloop + endfacet + facet normal 0.0894161 -0.995994 0 + outer loop + vertex -14.1999 -35.9546 0 + vertex -14.3614 -35.9691 -0.1 + vertex -14.1999 -35.9546 -0.1 + endloop + endfacet + facet normal 0.259204 -0.965823 0 + outer loop + vertex -14.1999 -35.9546 -0.1 + vertex -14.0373 -35.911 0 + vertex -14.1999 -35.9546 0 + endloop + endfacet + facet normal 0.259204 -0.965823 0 + outer loop + vertex -14.0373 -35.911 0 + vertex -14.1999 -35.9546 -0.1 + vertex -14.0373 -35.911 -0.1 + endloop + endfacet + facet normal 0.406893 -0.913476 0 + outer loop + vertex -14.0373 -35.911 -0.1 + vertex -13.8736 -35.838 0 + vertex -14.0373 -35.911 0 + endloop + endfacet + facet normal 0.406893 -0.913476 0 + outer loop + vertex -13.8736 -35.838 0 + vertex -14.0373 -35.911 -0.1 + vertex -13.8736 -35.838 -0.1 + endloop + endfacet + facet normal 0.527319 -0.849667 0 + outer loop + vertex -13.8736 -35.838 -0.1 + vertex -13.7085 -35.7356 0 + vertex -13.8736 -35.838 0 + endloop + endfacet + facet normal 0.527319 -0.849667 0 + outer loop + vertex -13.7085 -35.7356 0 + vertex -13.8736 -35.838 -0.1 + vertex -13.7085 -35.7356 -0.1 + endloop + endfacet + facet normal 0.621601 -0.783334 0 + outer loop + vertex -13.7085 -35.7356 -0.1 + vertex -13.5421 -35.6036 0 + vertex -13.7085 -35.7356 0 + endloop + endfacet + facet normal 0.621601 -0.783334 0 + outer loop + vertex -13.5421 -35.6036 0 + vertex -13.7085 -35.7356 -0.1 + vertex -13.5421 -35.6036 -0.1 + endloop + endfacet + facet normal 0.693973 -0.720001 0 + outer loop + vertex -13.5421 -35.6036 -0.1 + vertex -13.3741 -35.4417 0 + vertex -13.5421 -35.6036 0 + endloop + endfacet + facet normal 0.693973 -0.720001 0 + outer loop + vertex -13.3741 -35.4417 0 + vertex -13.5421 -35.6036 -0.1 + vertex -13.3741 -35.4417 -0.1 + endloop + endfacet + facet normal 0.74925 -0.662287 0 + outer loop + vertex -13.3741 -35.4417 0 + vertex -13.2045 -35.2497 -0.1 + vertex -13.2045 -35.2497 0 + endloop + endfacet + facet normal 0.74925 -0.662287 0 + outer loop + vertex -13.2045 -35.2497 -0.1 + vertex -13.3741 -35.4417 0 + vertex -13.3741 -35.4417 -0.1 + endloop + endfacet + facet normal 0.791599 -0.611041 0 + outer loop + vertex -13.2045 -35.2497 0 + vertex -13.0331 -35.0276 -0.1 + vertex -13.0331 -35.0276 0 + endloop + endfacet + facet normal 0.791599 -0.611041 0 + outer loop + vertex -13.0331 -35.0276 -0.1 + vertex -13.2045 -35.2497 0 + vertex -13.2045 -35.2497 -0.1 + endloop + endfacet + facet normal 0.837921 -0.545792 0 + outer loop + vertex -13.0331 -35.0276 0 + vertex -12.6843 -34.4922 -0.1 + vertex -12.6843 -34.4922 0 + endloop + endfacet + facet normal 0.837921 -0.545792 0 + outer loop + vertex -12.6843 -34.4922 -0.1 + vertex -13.0331 -35.0276 0 + vertex -13.0331 -35.0276 -0.1 + endloop + endfacet + facet normal 0.878782 -0.477224 0 + outer loop + vertex -12.6843 -34.4922 0 + vertex -12.3268 -33.8339 -0.1 + vertex -12.3268 -33.8339 0 + endloop + endfacet + facet normal 0.878782 -0.477224 0 + outer loop + vertex -12.3268 -33.8339 -0.1 + vertex -12.6843 -34.4922 0 + vertex -12.6843 -34.4922 -0.1 + endloop + endfacet + facet normal 0.905274 -0.424829 0 + outer loop + vertex -12.3268 -33.8339 0 + vertex -11.9595 -33.0513 -0.1 + vertex -11.9595 -33.0513 0 + endloop + endfacet + facet normal 0.905274 -0.424829 0 + outer loop + vertex -11.9595 -33.0513 -0.1 + vertex -12.3268 -33.8339 0 + vertex -12.3268 -33.8339 -0.1 + endloop + endfacet + facet normal 0.923227 -0.384256 0 + outer loop + vertex -11.9595 -33.0513 0 + vertex -11.5815 -32.143 -0.1 + vertex -11.5815 -32.143 0 + endloop + endfacet + facet normal 0.923227 -0.384256 0 + outer loop + vertex -11.5815 -32.143 -0.1 + vertex -11.9595 -33.0513 0 + vertex -11.9595 -33.0513 -0.1 + endloop + endfacet + facet normal 0.927789 -0.373105 0 + outer loop + vertex -11.5815 -32.143 0 + vertex -9.5401 -27.0667 -0.1 + vertex -9.5401 -27.0667 0 + endloop + endfacet + facet normal 0.927789 -0.373105 0 + outer loop + vertex -9.5401 -27.0667 -0.1 + vertex -11.5815 -32.143 0 + vertex -11.5815 -32.143 -0.1 + endloop + endfacet + facet normal 0.931122 -0.364709 0 + outer loop + vertex -9.5401 -27.0667 0 + vertex -9.05502 -25.8283 -0.1 + vertex -9.05502 -25.8283 0 + endloop + endfacet + facet normal 0.931122 -0.364709 0 + outer loop + vertex -9.05502 -25.8283 -0.1 + vertex -9.5401 -27.0667 0 + vertex -9.5401 -27.0667 -0.1 + endloop + endfacet + facet normal 0.946626 -0.322334 0 + outer loop + vertex -9.05502 -25.8283 0 + vertex -8.71232 -24.8218 -0.1 + vertex -8.71232 -24.8218 0 + endloop + endfacet + facet normal 0.946626 -0.322334 0 + outer loop + vertex -8.71232 -24.8218 -0.1 + vertex -9.05502 -25.8283 0 + vertex -9.05502 -25.8283 -0.1 + endloop + endfacet + facet normal 0.963249 -0.26861 0 + outer loop + vertex -8.71232 -24.8218 0 + vertex -8.59455 -24.3995 -0.1 + vertex -8.59455 -24.3995 0 + endloop + endfacet + facet normal 0.963249 -0.26861 0 + outer loop + vertex -8.59455 -24.3995 -0.1 + vertex -8.71232 -24.8218 0 + vertex -8.71232 -24.8218 -0.1 + endloop + endfacet + facet normal 0.976543 -0.215323 0 + outer loop + vertex -8.59455 -24.3995 0 + vertex -8.51259 -24.0278 -0.1 + vertex -8.51259 -24.0278 0 + endloop + endfacet + facet normal 0.976543 -0.215323 0 + outer loop + vertex -8.51259 -24.0278 -0.1 + vertex -8.59455 -24.3995 0 + vertex -8.59455 -24.3995 -0.1 + endloop + endfacet + facet normal 0.990015 -0.140965 0 + outer loop + vertex -8.51259 -24.0278 0 + vertex -8.46654 -23.7044 -0.1 + vertex -8.46654 -23.7044 0 + endloop + endfacet + facet normal 0.990015 -0.140965 0 + outer loop + vertex -8.46654 -23.7044 -0.1 + vertex -8.51259 -24.0278 0 + vertex -8.51259 -24.0278 -0.1 + endloop + endfacet + facet normal 0.999341 -0.0362924 0 + outer loop + vertex -8.46654 -23.7044 0 + vertex -8.45645 -23.4267 -0.1 + vertex -8.45645 -23.4267 0 + endloop + endfacet + facet normal 0.999341 -0.0362924 0 + outer loop + vertex -8.45645 -23.4267 -0.1 + vertex -8.46654 -23.7044 0 + vertex -8.46654 -23.7044 -0.1 + endloop + endfacet + facet normal 0.993917 0.110127 0 + outer loop + vertex -8.45645 -23.4267 0 + vertex -8.48242 -23.1923 -0.1 + vertex -8.48242 -23.1923 0 + endloop + endfacet + facet normal 0.993917 0.110127 0 + outer loop + vertex -8.48242 -23.1923 -0.1 + vertex -8.45645 -23.4267 0 + vertex -8.45645 -23.4267 -0.1 + endloop + endfacet + facet normal 0.952162 0.305593 0 + outer loop + vertex -8.48242 -23.1923 0 + vertex -8.54451 -22.9989 -0.1 + vertex -8.54451 -22.9989 0 + endloop + endfacet + facet normal 0.952162 0.305593 0 + outer loop + vertex -8.54451 -22.9989 -0.1 + vertex -8.48242 -23.1923 0 + vertex -8.48242 -23.1923 -0.1 + endloop + endfacet + facet normal 0.844525 0.535516 0 + outer loop + vertex -8.54451 -22.9989 0 + vertex -8.64279 -22.8439 -0.1 + vertex -8.64279 -22.8439 0 + endloop + endfacet + facet normal 0.844525 0.535516 0 + outer loop + vertex -8.64279 -22.8439 -0.1 + vertex -8.54451 -22.9989 0 + vertex -8.54451 -22.9989 -0.1 + endloop + endfacet + facet normal 0.662463 0.749095 -0 + outer loop + vertex -8.64279 -22.8439 -0.1 + vertex -8.77736 -22.7249 0 + vertex -8.64279 -22.8439 0 + endloop + endfacet + facet normal 0.662463 0.749095 0 + outer loop + vertex -8.77736 -22.7249 0 + vertex -8.64279 -22.8439 -0.1 + vertex -8.77736 -22.7249 -0.1 + endloop + endfacet + facet normal 0.447148 0.89446 -0 + outer loop + vertex -8.77736 -22.7249 -0.1 + vertex -8.94827 -22.6394 0 + vertex -8.77736 -22.7249 0 + endloop + endfacet + facet normal 0.447148 0.89446 0 + outer loop + vertex -8.94827 -22.6394 0 + vertex -8.77736 -22.7249 -0.1 + vertex -8.94827 -22.6394 -0.1 + endloop + endfacet + facet normal 0.253452 0.967348 -0 + outer loop + vertex -8.94827 -22.6394 -0.1 + vertex -9.15561 -22.5851 0 + vertex -8.94827 -22.6394 0 + endloop + endfacet + facet normal 0.253452 0.967348 0 + outer loop + vertex -9.15561 -22.5851 0 + vertex -8.94827 -22.6394 -0.1 + vertex -9.15561 -22.5851 -0.1 + endloop + endfacet + facet normal 0.104613 0.994513 -0 + outer loop + vertex -9.15561 -22.5851 -0.1 + vertex -9.39946 -22.5595 0 + vertex -9.15561 -22.5851 0 + endloop + endfacet + facet normal 0.104613 0.994513 0 + outer loop + vertex -9.39946 -22.5595 0 + vertex -9.15561 -22.5851 -0.1 + vertex -9.39946 -22.5595 -0.1 + endloop + endfacet + facet normal -0.0020677 0.999998 0 + outer loop + vertex -9.39946 -22.5595 -0.1 + vertex -9.67988 -22.56 0 + vertex -9.39946 -22.5595 0 + endloop + endfacet + facet normal -0.0020677 0.999998 0 + outer loop + vertex -9.67988 -22.56 0 + vertex -9.39946 -22.5595 -0.1 + vertex -9.67988 -22.56 -0.1 + endloop + endfacet + facet normal -0.129535 0.991575 0 + outer loop + vertex -9.67988 -22.56 -0.1 + vertex -10.0796 -22.6123 0 + vertex -9.67988 -22.56 0 + endloop + endfacet + facet normal -0.129535 0.991575 0 + outer loop + vertex -10.0796 -22.6123 0 + vertex -9.67988 -22.56 -0.1 + vertex -10.0796 -22.6123 -0.1 + endloop + endfacet + facet normal -0.24491 0.969546 0 + outer loop + vertex -10.0796 -22.6123 -0.1 + vertex -10.5344 -22.7271 0 + vertex -10.0796 -22.6123 0 + endloop + endfacet + facet normal -0.24491 0.969546 0 + outer loop + vertex -10.5344 -22.7271 0 + vertex -10.0796 -22.6123 -0.1 + vertex -10.5344 -22.7271 -0.1 + endloop + endfacet + facet normal -0.333557 0.94273 0 + outer loop + vertex -10.5344 -22.7271 -0.1 + vertex -10.9881 -22.8877 0 + vertex -10.5344 -22.7271 0 + endloop + endfacet + facet normal -0.333557 0.94273 0 + outer loop + vertex -10.9881 -22.8877 0 + vertex -10.5344 -22.7271 -0.1 + vertex -10.9881 -22.8877 -0.1 + endloop + endfacet + facet normal -0.430494 0.902594 0 + outer loop + vertex -10.9881 -22.8877 -0.1 + vertex -11.3849 -23.0769 0 + vertex -10.9881 -22.8877 0 + endloop + endfacet + facet normal -0.430494 0.902594 0 + outer loop + vertex -11.3849 -23.0769 0 + vertex -10.9881 -22.8877 -0.1 + vertex -11.3849 -23.0769 -0.1 + endloop + endfacet + facet normal -0.511004 0.859578 0 + outer loop + vertex -11.3849 -23.0769 -0.1 + vertex -11.9359 -23.4045 0 + vertex -11.3849 -23.0769 0 + endloop + endfacet + facet normal -0.511004 0.859578 0 + outer loop + vertex -11.9359 -23.4045 0 + vertex -11.3849 -23.0769 -0.1 + vertex -11.9359 -23.4045 -0.1 + endloop + endfacet + facet normal -0.561997 0.827139 0 + outer loop + vertex -11.9359 -23.4045 -0.1 + vertex -12.4007 -23.7203 0 + vertex -11.9359 -23.4045 0 + endloop + endfacet + facet normal -0.561997 0.827139 0 + outer loop + vertex -12.4007 -23.7203 0 + vertex -11.9359 -23.4045 -0.1 + vertex -12.4007 -23.7203 -0.1 + endloop + endfacet + facet normal -0.632295 0.774728 0 + outer loop + vertex -12.4007 -23.7203 -0.1 + vertex -12.7941 -24.0414 0 + vertex -12.4007 -23.7203 0 + endloop + endfacet + facet normal -0.632295 0.774728 0 + outer loop + vertex -12.7941 -24.0414 0 + vertex -12.4007 -23.7203 -0.1 + vertex -12.7941 -24.0414 -0.1 + endloop + endfacet + facet normal -0.713871 0.700277 0 + outer loop + vertex -13.131 -24.3848 -0.1 + vertex -12.7941 -24.0414 0 + vertex -12.7941 -24.0414 -0.1 + endloop + endfacet + facet normal -0.713871 0.700277 0 + outer loop + vertex -12.7941 -24.0414 0 + vertex -13.131 -24.3848 -0.1 + vertex -13.131 -24.3848 0 + endloop + endfacet + facet normal -0.791901 0.61065 0 + outer loop + vertex -13.4262 -24.7676 -0.1 + vertex -13.131 -24.3848 0 + vertex -13.131 -24.3848 -0.1 + endloop + endfacet + facet normal -0.791901 0.61065 0 + outer loop + vertex -13.131 -24.3848 0 + vertex -13.4262 -24.7676 -0.1 + vertex -13.4262 -24.7676 0 + endloop + endfacet + facet normal -0.853364 0.521315 0 + outer loop + vertex -13.6945 -25.2068 -0.1 + vertex -13.4262 -24.7676 0 + vertex -13.4262 -24.7676 -0.1 + endloop + endfacet + facet normal -0.853364 0.521315 0 + outer loop + vertex -13.4262 -24.7676 0 + vertex -13.6945 -25.2068 -0.1 + vertex -13.6945 -25.2068 0 + endloop + endfacet + facet normal -0.894467 0.447134 0 + outer loop + vertex -13.9508 -25.7195 -0.1 + vertex -13.6945 -25.2068 0 + vertex -13.6945 -25.2068 -0.1 + endloop + endfacet + facet normal -0.894467 0.447134 0 + outer loop + vertex -13.6945 -25.2068 0 + vertex -13.9508 -25.7195 -0.1 + vertex -13.9508 -25.7195 0 + endloop + endfacet + facet normal -0.918824 0.394667 0 + outer loop + vertex -14.2098 -26.3227 -0.1 + vertex -13.9508 -25.7195 0 + vertex -13.9508 -25.7195 -0.1 + endloop + endfacet + facet normal -0.918824 0.394667 0 + outer loop + vertex -13.9508 -25.7195 0 + vertex -14.2098 -26.3227 -0.1 + vertex -14.2098 -26.3227 0 + endloop + endfacet + facet normal -0.926196 0.377042 0 + outer loop + vertex -15.3777 -29.1914 -0.1 + vertex -14.2098 -26.3227 0 + vertex -14.2098 -26.3227 -0.1 + endloop + endfacet + facet normal -0.926196 0.377042 0 + outer loop + vertex -14.2098 -26.3227 0 + vertex -15.3777 -29.1914 -0.1 + vertex -15.3777 -29.1914 0 + endloop + endfacet + facet normal -0.925675 0.37832 0 + outer loop + vertex -16.8163 -32.7116 -0.1 + vertex -15.3777 -29.1914 0 + vertex -15.3777 -29.1914 -0.1 + endloop + endfacet + facet normal -0.925675 0.37832 0 + outer loop + vertex -15.3777 -29.1914 0 + vertex -16.8163 -32.7116 -0.1 + vertex -16.8163 -32.7116 0 + endloop + endfacet + facet normal -0.928735 0.370745 0 + outer loop + vertex -17.1674 -33.591 -0.1 + vertex -16.8163 -32.7116 0 + vertex -16.8163 -32.7116 -0.1 + endloop + endfacet + facet normal -0.928735 0.370745 0 + outer loop + vertex -16.8163 -32.7116 0 + vertex -17.1674 -33.591 -0.1 + vertex -17.1674 -33.591 0 + endloop + endfacet + facet normal -0.937631 0.347632 0 + outer loop + vertex -17.4329 -34.3072 -0.1 + vertex -17.1674 -33.591 0 + vertex -17.1674 -33.591 -0.1 + endloop + endfacet + facet normal -0.937631 0.347632 0 + outer loop + vertex -17.1674 -33.591 0 + vertex -17.4329 -34.3072 -0.1 + vertex -17.4329 -34.3072 0 + endloop + endfacet + facet normal -0.951989 0.306132 0 + outer loop + vertex -17.6153 -34.8741 -0.1 + vertex -17.4329 -34.3072 0 + vertex -17.4329 -34.3072 -0.1 + endloop + endfacet + facet normal -0.951989 0.306132 0 + outer loop + vertex -17.4329 -34.3072 0 + vertex -17.6153 -34.8741 -0.1 + vertex -17.6153 -34.8741 0 + endloop + endfacet + facet normal -0.973485 0.228749 0 + outer loop + vertex -17.7168 -35.3062 -0.1 + vertex -17.6153 -34.8741 0 + vertex -17.6153 -34.8741 -0.1 + endloop + endfacet + facet normal -0.973485 0.228749 0 + outer loop + vertex -17.6153 -34.8741 0 + vertex -17.7168 -35.3062 -0.1 + vertex -17.7168 -35.3062 0 + endloop + endfacet + facet normal -0.992299 0.123865 0 + outer loop + vertex -17.738 -35.4761 -0.1 + vertex -17.7168 -35.3062 0 + vertex -17.7168 -35.3062 -0.1 + endloop + endfacet + facet normal -0.992299 0.123865 0 + outer loop + vertex -17.7168 -35.3062 0 + vertex -17.738 -35.4761 -0.1 + vertex -17.738 -35.4761 0 + endloop + endfacet + facet normal -0.99991 0.0134015 0 + outer loop + vertex -17.7399 -35.6175 -0.1 + vertex -17.738 -35.4761 0 + vertex -17.738 -35.4761 -0.1 + endloop + endfacet + facet normal -0.99991 0.0134015 0 + outer loop + vertex -17.738 -35.4761 0 + vertex -17.7399 -35.6175 -0.1 + vertex -17.7399 -35.6175 0 + endloop + endfacet + facet normal -0.989073 -0.147424 0 + outer loop + vertex -17.7228 -35.7323 -0.1 + vertex -17.7399 -35.6175 0 + vertex -17.7399 -35.6175 -0.1 + endloop + endfacet + facet normal -0.989073 -0.147424 0 + outer loop + vertex -17.7399 -35.6175 0 + vertex -17.7228 -35.7323 -0.1 + vertex -17.7228 -35.7323 0 + endloop + endfacet + facet normal -0.929053 -0.369947 0 + outer loop + vertex -17.6869 -35.8223 -0.1 + vertex -17.7228 -35.7323 0 + vertex -17.7228 -35.7323 -0.1 + endloop + endfacet + facet normal -0.929053 -0.369947 0 + outer loop + vertex -17.7228 -35.7323 0 + vertex -17.6869 -35.8223 -0.1 + vertex -17.6869 -35.8223 0 + endloop + endfacet + facet normal -0.776679 -0.629897 0 + outer loop + vertex -17.6327 -35.8892 -0.1 + vertex -17.6869 -35.8223 0 + vertex -17.6869 -35.8223 -0.1 + endloop + endfacet + facet normal -0.776679 -0.629897 0 + outer loop + vertex -17.6869 -35.8223 0 + vertex -17.6327 -35.8892 -0.1 + vertex -17.6327 -35.8892 0 + endloop + endfacet + facet normal -0.532937 -0.846155 0 + outer loop + vertex -17.6327 -35.8892 -0.1 + vertex -17.5603 -35.9348 0 + vertex -17.6327 -35.8892 0 + endloop + endfacet + facet normal -0.532937 -0.846155 -0 + outer loop + vertex -17.5603 -35.9348 0 + vertex -17.6327 -35.8892 -0.1 + vertex -17.5603 -35.9348 -0.1 + endloop + endfacet + facet normal -0.277484 -0.96073 0 + outer loop + vertex -17.5603 -35.9348 -0.1 + vertex -17.4702 -35.9608 0 + vertex -17.5603 -35.9348 0 + endloop + endfacet + facet normal -0.277484 -0.96073 -0 + outer loop + vertex -17.4702 -35.9608 0 + vertex -17.5603 -35.9348 -0.1 + vertex -17.4702 -35.9608 -0.1 + endloop + endfacet + facet normal -0.0767033 -0.997054 0 + outer loop + vertex -17.4702 -35.9608 -0.1 + vertex -17.3625 -35.9691 0 + vertex -17.4702 -35.9608 0 + endloop + endfacet + facet normal -0.0767033 -0.997054 -0 + outer loop + vertex -17.3625 -35.9691 0 + vertex -17.4702 -35.9608 -0.1 + vertex -17.3625 -35.9691 -0.1 + endloop + endfacet + facet normal -0.0829709 -0.996552 0 + outer loop + vertex -17.3625 -35.9691 -0.1 + vertex -17.1493 -35.9869 0 + vertex -17.3625 -35.9691 0 + endloop + endfacet + facet normal -0.0829709 -0.996552 -0 + outer loop + vertex -17.1493 -35.9869 0 + vertex -17.3625 -35.9691 -0.1 + vertex -17.1493 -35.9869 -0.1 + endloop + endfacet + facet normal -0.234852 -0.972031 0 + outer loop + vertex -17.1493 -35.9869 -0.1 + vertex -16.942 -36.0369 0 + vertex -17.1493 -35.9869 0 + endloop + endfacet + facet normal -0.234852 -0.972031 -0 + outer loop + vertex -16.942 -36.0369 0 + vertex -17.1493 -35.9869 -0.1 + vertex -16.942 -36.0369 -0.1 + endloop + endfacet + facet normal -0.371048 -0.928614 0 + outer loop + vertex -16.942 -36.0369 -0.1 + vertex -16.7476 -36.1146 0 + vertex -16.942 -36.0369 0 + endloop + endfacet + facet normal -0.371048 -0.928614 -0 + outer loop + vertex -16.7476 -36.1146 0 + vertex -16.942 -36.0369 -0.1 + vertex -16.7476 -36.1146 -0.1 + endloop + endfacet + facet normal -0.499006 -0.866599 0 + outer loop + vertex -16.7476 -36.1146 -0.1 + vertex -16.5729 -36.2152 0 + vertex -16.7476 -36.1146 0 + endloop + endfacet + facet normal -0.499006 -0.866599 -0 + outer loop + vertex -16.5729 -36.2152 0 + vertex -16.7476 -36.1146 -0.1 + vertex -16.5729 -36.2152 -0.1 + endloop + endfacet + facet normal -0.625925 -0.779883 0 + outer loop + vertex -16.5729 -36.2152 -0.1 + vertex -16.4249 -36.334 0 + vertex -16.5729 -36.2152 0 + endloop + endfacet + facet normal -0.625925 -0.779883 -0 + outer loop + vertex -16.4249 -36.334 0 + vertex -16.5729 -36.2152 -0.1 + vertex -16.4249 -36.334 -0.1 + endloop + endfacet + facet normal -0.756453 -0.654048 0 + outer loop + vertex -16.3106 -36.4662 -0.1 + vertex -16.4249 -36.334 0 + vertex -16.4249 -36.334 -0.1 + endloop + endfacet + facet normal -0.756453 -0.654048 0 + outer loop + vertex -16.4249 -36.334 0 + vertex -16.3106 -36.4662 -0.1 + vertex -16.3106 -36.4662 0 + endloop + endfacet + facet normal -0.886186 -0.46333 0 + outer loop + vertex -16.237 -36.6071 -0.1 + vertex -16.3106 -36.4662 0 + vertex -16.3106 -36.4662 -0.1 + endloop + endfacet + facet normal -0.886186 -0.46333 0 + outer loop + vertex -16.3106 -36.4662 0 + vertex -16.237 -36.6071 -0.1 + vertex -16.237 -36.6071 0 + endloop + endfacet + facet normal -0.984159 -0.177288 0 + outer loop + vertex -16.2109 -36.752 -0.1 + vertex -16.237 -36.6071 0 + vertex -16.237 -36.6071 -0.1 + endloop + endfacet + facet normal -0.984159 -0.177288 0 + outer loop + vertex -16.237 -36.6071 0 + vertex -16.2109 -36.752 -0.1 + vertex -16.2109 -36.752 0 + endloop + endfacet + facet normal -0.97657 0.215201 0 + outer loop + vertex -16.2485 -36.9225 -0.1 + vertex -16.2109 -36.752 0 + vertex -16.2109 -36.752 -0.1 + endloop + endfacet + facet normal -0.97657 0.215201 0 + outer loop + vertex -16.2109 -36.752 0 + vertex -16.2485 -36.9225 -0.1 + vertex -16.2485 -36.9225 0 + endloop + endfacet + facet normal -0.906917 0.42131 0 + outer loop + vertex -16.3508 -37.1428 -0.1 + vertex -16.2485 -36.9225 0 + vertex -16.2485 -36.9225 -0.1 + endloop + endfacet + facet normal -0.906917 0.42131 0 + outer loop + vertex -16.2485 -36.9225 0 + vertex -16.3508 -37.1428 -0.1 + vertex -16.3508 -37.1428 0 + endloop + endfacet + facet normal -0.847258 0.531182 0 + outer loop + vertex -16.5023 -37.3844 -0.1 + vertex -16.3508 -37.1428 0 + vertex -16.3508 -37.1428 -0.1 + endloop + endfacet + facet normal -0.847258 0.531182 0 + outer loop + vertex -16.3508 -37.1428 0 + vertex -16.5023 -37.3844 -0.1 + vertex -16.5023 -37.3844 0 + endloop + endfacet + facet normal -0.785088 0.619384 0 + outer loop + vertex -16.6872 -37.6188 -0.1 + vertex -16.5023 -37.3844 0 + vertex -16.5023 -37.3844 -0.1 + endloop + endfacet + facet normal -0.785088 0.619384 0 + outer loop + vertex -16.5023 -37.3844 0 + vertex -16.6872 -37.6188 -0.1 + vertex -16.6872 -37.6188 0 + endloop + endfacet + facet normal -0.731213 0.68215 0 + outer loop + vertex -16.8516 -37.795 -0.1 + vertex -16.6872 -37.6188 0 + vertex -16.6872 -37.6188 -0.1 + endloop + endfacet + facet normal -0.731213 0.68215 0 + outer loop + vertex -16.6872 -37.6188 0 + vertex -16.8516 -37.795 -0.1 + vertex -16.8516 -37.795 0 + endloop + endfacet + facet normal -0.615138 0.78842 0 + outer loop + vertex -16.8516 -37.795 -0.1 + vertex -17.0213 -37.9274 0 + vertex -16.8516 -37.795 0 + endloop + endfacet + facet normal -0.615138 0.78842 0 + outer loop + vertex -17.0213 -37.9274 0 + vertex -16.8516 -37.795 -0.1 + vertex -17.0213 -37.9274 -0.1 + endloop + endfacet + facet normal -0.390611 0.920556 0 + outer loop + vertex -17.0213 -37.9274 -0.1 + vertex -17.2437 -38.0218 0 + vertex -17.0213 -37.9274 0 + endloop + endfacet + facet normal -0.390611 0.920556 0 + outer loop + vertex -17.2437 -38.0218 0 + vertex -17.0213 -37.9274 -0.1 + vertex -17.2437 -38.0218 -0.1 + endloop + endfacet + facet normal -0.189492 0.981882 0 + outer loop + vertex -17.2437 -38.0218 -0.1 + vertex -17.5664 -38.0841 0 + vertex -17.2437 -38.0218 0 + endloop + endfacet + facet normal -0.189492 0.981882 0 + outer loop + vertex -17.5664 -38.0841 0 + vertex -17.2437 -38.0218 -0.1 + vertex -17.5664 -38.0841 -0.1 + endloop + endfacet + facet normal -0.0764443 0.997074 0 + outer loop + vertex -17.5664 -38.0841 -0.1 + vertex -18.0369 -38.1201 0 + vertex -17.5664 -38.0841 0 + endloop + endfacet + facet normal -0.0764443 0.997074 0 + outer loop + vertex -18.0369 -38.1201 0 + vertex -17.5664 -38.0841 -0.1 + vertex -18.0369 -38.1201 -0.1 + endloop + endfacet + facet normal -0.0236695 0.99972 0 + outer loop + vertex -18.0369 -38.1201 -0.1 + vertex -18.7028 -38.1359 0 + vertex -18.0369 -38.1201 0 + endloop + endfacet + facet normal -0.0236695 0.99972 0 + outer loop + vertex -18.7028 -38.1359 0 + vertex -18.0369 -38.1201 -0.1 + vertex -18.7028 -38.1359 -0.1 + endloop + endfacet + facet normal 0.00275597 0.999996 -0 + outer loop + vertex -18.7028 -38.1359 -0.1 + vertex -20.8109 -38.1301 0 + vertex -18.7028 -38.1359 0 + endloop + endfacet + facet normal 0.00275597 0.999996 0 + outer loop + vertex -20.8109 -38.1301 0 + vertex -18.7028 -38.1359 -0.1 + vertex -20.8109 -38.1301 -0.1 + endloop + endfacet + facet normal 0.0176671 0.999844 -0 + outer loop + vertex -20.8109 -38.1301 -0.1 + vertex -23.4866 -38.0828 0 + vertex -20.8109 -38.1301 0 + endloop + endfacet + facet normal 0.0176671 0.999844 0 + outer loop + vertex -23.4866 -38.0828 0 + vertex -20.8109 -38.1301 -0.1 + vertex -23.4866 -38.0828 -0.1 + endloop + endfacet + facet normal 0.0417305 0.999129 -0 + outer loop + vertex -23.4866 -38.0828 -0.1 + vertex -24.3782 -38.0456 0 + vertex -23.4866 -38.0828 0 + endloop + endfacet + facet normal 0.0417305 0.999129 0 + outer loop + vertex -24.3782 -38.0456 0 + vertex -23.4866 -38.0828 -0.1 + vertex -24.3782 -38.0456 -0.1 + endloop + endfacet + facet normal 0.0968237 0.995302 -0 + outer loop + vertex -24.3782 -38.0456 -0.1 + vertex -24.7978 -38.0047 0 + vertex -24.3782 -38.0456 0 + endloop + endfacet + facet normal 0.0968237 0.995302 0 + outer loop + vertex -24.7978 -38.0047 0 + vertex -24.3782 -38.0456 -0.1 + vertex -24.7978 -38.0047 -0.1 + endloop + endfacet + facet normal 0.412814 0.910815 -0 + outer loop + vertex -24.7978 -38.0047 -0.1 + vertex -24.9442 -37.9384 0 + vertex -24.7978 -38.0047 0 + endloop + endfacet + facet normal 0.412814 0.910815 0 + outer loop + vertex -24.9442 -37.9384 0 + vertex -24.7978 -38.0047 -0.1 + vertex -24.9442 -37.9384 -0.1 + endloop + endfacet + facet normal 0.678412 0.734682 -0 + outer loop + vertex -24.9442 -37.9384 -0.1 + vertex -25.0491 -37.8416 0 + vertex -24.9442 -37.9384 0 + endloop + endfacet + facet normal 0.678412 0.734682 0 + outer loop + vertex -25.0491 -37.8416 0 + vertex -24.9442 -37.9384 -0.1 + vertex -25.0491 -37.8416 -0.1 + endloop + endfacet + facet normal 0.880101 0.474787 0 + outer loop + vertex -25.0491 -37.8416 0 + vertex -25.1152 -37.719 -0.1 + vertex -25.1152 -37.719 0 + endloop + endfacet + facet normal 0.880101 0.474787 0 + outer loop + vertex -25.1152 -37.719 -0.1 + vertex -25.0491 -37.8416 0 + vertex -25.0491 -37.8416 -0.1 + endloop + endfacet + facet normal 0.978769 0.204965 0 + outer loop + vertex -25.1152 -37.719 0 + vertex -25.1453 -37.5754 -0.1 + vertex -25.1453 -37.5754 0 + endloop + endfacet + facet normal 0.978769 0.204965 0 + outer loop + vertex -25.1453 -37.5754 -0.1 + vertex -25.1152 -37.719 0 + vertex -25.1152 -37.719 -0.1 + endloop + endfacet + facet normal 0.99978 -0.0209726 0 + outer loop + vertex -25.1453 -37.5754 0 + vertex -25.1419 -37.4158 -0.1 + vertex -25.1419 -37.4158 0 + endloop + endfacet + facet normal 0.99978 -0.0209726 0 + outer loop + vertex -25.1419 -37.4158 -0.1 + vertex -25.1453 -37.5754 0 + vertex -25.1453 -37.5754 -0.1 + endloop + endfacet + facet normal 0.980708 -0.195479 0 + outer loop + vertex -25.1419 -37.4158 0 + vertex -25.1078 -37.2448 -0.1 + vertex -25.1078 -37.2448 0 + endloop + endfacet + facet normal 0.980708 -0.195479 0 + outer loop + vertex -25.1078 -37.2448 -0.1 + vertex -25.1419 -37.4158 0 + vertex -25.1419 -37.4158 -0.1 + endloop + endfacet + facet normal 0.94384 -0.330404 0 + outer loop + vertex -25.1078 -37.2448 0 + vertex -25.0457 -37.0673 -0.1 + vertex -25.0457 -37.0673 0 + endloop + endfacet + facet normal 0.94384 -0.330404 0 + outer loop + vertex -25.0457 -37.0673 -0.1 + vertex -25.1078 -37.2448 0 + vertex -25.1078 -37.2448 -0.1 + endloop + endfacet + facet normal 0.898573 -0.438825 0 + outer loop + vertex -25.0457 -37.0673 0 + vertex -24.9582 -36.888 -0.1 + vertex -24.9582 -36.888 0 + endloop + endfacet + facet normal 0.898573 -0.438825 0 + outer loop + vertex -24.9582 -36.888 -0.1 + vertex -25.0457 -37.0673 0 + vertex -25.0457 -37.0673 -0.1 + endloop + endfacet + facet normal 0.847669 -0.530525 0 + outer loop + vertex -24.9582 -36.888 0 + vertex -24.8479 -36.7119 -0.1 + vertex -24.8479 -36.7119 0 + endloop + endfacet + facet normal 0.847669 -0.530525 0 + outer loop + vertex -24.8479 -36.7119 -0.1 + vertex -24.9582 -36.888 0 + vertex -24.9582 -36.888 -0.1 + endloop + endfacet + facet normal 0.790663 -0.612252 0 + outer loop + vertex -24.8479 -36.7119 0 + vertex -24.7177 -36.5437 -0.1 + vertex -24.7177 -36.5437 0 + endloop + endfacet + facet normal 0.790663 -0.612252 0 + outer loop + vertex -24.7177 -36.5437 -0.1 + vertex -24.8479 -36.7119 0 + vertex -24.8479 -36.7119 -0.1 + endloop + endfacet + facet normal 0.7253 -0.688433 0 + outer loop + vertex -24.7177 -36.5437 0 + vertex -24.57 -36.3881 -0.1 + vertex -24.57 -36.3881 0 + endloop + endfacet + facet normal 0.7253 -0.688433 0 + outer loop + vertex -24.57 -36.3881 -0.1 + vertex -24.7177 -36.5437 0 + vertex -24.7177 -36.5437 -0.1 + endloop + endfacet + facet normal 0.647808 -0.761803 0 + outer loop + vertex -24.57 -36.3881 -0.1 + vertex -24.4077 -36.2501 0 + vertex -24.57 -36.3881 0 + endloop + endfacet + facet normal 0.647808 -0.761803 0 + outer loop + vertex -24.4077 -36.2501 0 + vertex -24.57 -36.3881 -0.1 + vertex -24.4077 -36.2501 -0.1 + endloop + endfacet + facet normal 0.553033 -0.833159 0 + outer loop + vertex -24.4077 -36.2501 -0.1 + vertex -24.2334 -36.1344 0 + vertex -24.4077 -36.2501 0 + endloop + endfacet + facet normal 0.553033 -0.833159 0 + outer loop + vertex -24.2334 -36.1344 0 + vertex -24.4077 -36.2501 -0.1 + vertex -24.2334 -36.1344 -0.1 + endloop + endfacet + facet normal 0.434505 -0.900669 0 + outer loop + vertex -24.2334 -36.1344 -0.1 + vertex -24.0497 -36.0458 0 + vertex -24.2334 -36.1344 0 + endloop + endfacet + facet normal 0.434505 -0.900669 0 + outer loop + vertex -24.0497 -36.0458 0 + vertex -24.2334 -36.1344 -0.1 + vertex -24.0497 -36.0458 -0.1 + endloop + endfacet + facet normal 0.285417 -0.958403 0 + outer loop + vertex -24.0497 -36.0458 -0.1 + vertex -23.8593 -35.9891 0 + vertex -24.0497 -36.0458 0 + endloop + endfacet + facet normal 0.285417 -0.958403 0 + outer loop + vertex -23.8593 -35.9891 0 + vertex -24.0497 -36.0458 -0.1 + vertex -23.8593 -35.9891 -0.1 + endloop + endfacet + facet normal 0.1022 -0.994764 0 + outer loop + vertex -23.8593 -35.9891 -0.1 + vertex -23.665 -35.9691 0 + vertex -23.8593 -35.9891 0 + endloop + endfacet + facet normal 0.1022 -0.994764 0 + outer loop + vertex -23.665 -35.9691 0 + vertex -23.8593 -35.9891 -0.1 + vertex -23.665 -35.9691 -0.1 + endloop + endfacet + facet normal 0.0676467 -0.997709 0 + outer loop + vertex -23.665 -35.9691 -0.1 + vertex -23.3082 -35.9449 0 + vertex -23.665 -35.9691 0 + endloop + endfacet + facet normal 0.0676467 -0.997709 0 + outer loop + vertex -23.3082 -35.9449 0 + vertex -23.665 -35.9691 -0.1 + vertex -23.3082 -35.9449 -0.1 + endloop + endfacet + facet normal 0.201749 -0.979437 0 + outer loop + vertex -23.3082 -35.9449 -0.1 + vertex -23.1471 -35.9117 0 + vertex -23.3082 -35.9449 0 + endloop + endfacet + facet normal 0.201749 -0.979437 0 + outer loop + vertex -23.1471 -35.9117 0 + vertex -23.3082 -35.9449 -0.1 + vertex -23.1471 -35.9117 -0.1 + endloop + endfacet + facet normal 0.311945 -0.9501 0 + outer loop + vertex -23.1471 -35.9117 -0.1 + vertex -22.9953 -35.8619 0 + vertex -23.1471 -35.9117 0 + endloop + endfacet + facet normal 0.311945 -0.9501 0 + outer loop + vertex -22.9953 -35.8619 0 + vertex -23.1471 -35.9117 -0.1 + vertex -22.9953 -35.8619 -0.1 + endloop + endfacet + facet normal 0.428709 -0.903443 0 + outer loop + vertex -22.9953 -35.8619 -0.1 + vertex -22.8511 -35.7934 0 + vertex -22.9953 -35.8619 0 + endloop + endfacet + facet normal 0.428709 -0.903443 0 + outer loop + vertex -22.8511 -35.7934 0 + vertex -22.9953 -35.8619 -0.1 + vertex -22.8511 -35.7934 -0.1 + endloop + endfacet + facet normal 0.540869 -0.841107 0 + outer loop + vertex -22.8511 -35.7934 -0.1 + vertex -22.7126 -35.7044 0 + vertex -22.8511 -35.7934 0 + endloop + endfacet + facet normal 0.540869 -0.841107 0 + outer loop + vertex -22.7126 -35.7044 0 + vertex -22.8511 -35.7934 -0.1 + vertex -22.7126 -35.7044 -0.1 + endloop + endfacet + facet normal 0.638801 -0.769372 0 + outer loop + vertex -22.7126 -35.7044 -0.1 + vertex -22.5782 -35.5929 0 + vertex -22.7126 -35.7044 0 + endloop + endfacet + facet normal 0.638801 -0.769372 0 + outer loop + vertex -22.5782 -35.5929 0 + vertex -22.7126 -35.7044 -0.1 + vertex -22.5782 -35.5929 -0.1 + endloop + endfacet + facet normal 0.717693 -0.69636 0 + outer loop + vertex -22.5782 -35.5929 0 + vertex -22.4463 -35.4568 -0.1 + vertex -22.4463 -35.4568 0 + endloop + endfacet + facet normal 0.717693 -0.69636 0 + outer loop + vertex -22.4463 -35.4568 -0.1 + vertex -22.5782 -35.5929 0 + vertex -22.5782 -35.5929 -0.1 + endloop + endfacet + facet normal 0.801318 -0.598238 0 + outer loop + vertex -22.4463 -35.4568 0 + vertex -22.1824 -35.1035 -0.1 + vertex -22.1824 -35.1035 0 + endloop + endfacet + facet normal 0.801318 -0.598238 0 + outer loop + vertex -22.1824 -35.1035 -0.1 + vertex -22.4463 -35.4568 0 + vertex -22.4463 -35.4568 -0.1 + endloop + endfacet + facet normal 0.865265 -0.501314 0 + outer loop + vertex -22.1824 -35.1035 0 + vertex -21.9074 -34.6287 -0.1 + vertex -21.9074 -34.6287 0 + endloop + endfacet + facet normal 0.865265 -0.501314 0 + outer loop + vertex -21.9074 -34.6287 -0.1 + vertex -22.1824 -35.1035 0 + vertex -22.1824 -35.1035 -0.1 + endloop + endfacet + facet normal 0.897795 -0.440414 0 + outer loop + vertex -21.9074 -34.6287 0 + vertex -21.6072 -34.0169 -0.1 + vertex -21.6072 -34.0169 0 + endloop + endfacet + facet normal 0.897795 -0.440414 0 + outer loop + vertex -21.6072 -34.0169 -0.1 + vertex -21.9074 -34.6287 0 + vertex -21.9074 -34.6287 -0.1 + endloop + endfacet + facet normal 0.914162 -0.405349 0 + outer loop + vertex -21.6072 -34.0169 0 + vertex -21.2682 -33.2523 -0.1 + vertex -21.2682 -33.2523 0 + endloop + endfacet + facet normal 0.914162 -0.405349 0 + outer loop + vertex -21.2682 -33.2523 -0.1 + vertex -21.6072 -34.0169 0 + vertex -21.6072 -34.0169 -0.1 + endloop + endfacet + facet normal 0.920953 -0.389675 0 + outer loop + vertex -21.2682 -33.2523 0 + vertex -19.7699 -29.7113 -0.1 + vertex -19.7699 -29.7113 0 + endloop + endfacet + facet normal 0.920953 -0.389675 0 + outer loop + vertex -19.7699 -29.7113 -0.1 + vertex -21.2682 -33.2523 0 + vertex -21.2682 -33.2523 -0.1 + endloop + endfacet + facet normal 0.925287 -0.379267 0 + outer loop + vertex -19.7699 -29.7113 0 + vertex -18.5311 -26.6889 -0.1 + vertex -18.5311 -26.6889 0 + endloop + endfacet + facet normal 0.925287 -0.379267 0 + outer loop + vertex -18.5311 -26.6889 -0.1 + vertex -19.7699 -29.7113 0 + vertex -19.7699 -29.7113 -0.1 + endloop + endfacet + facet normal 0.931695 -0.363243 0 + outer loop + vertex -18.5311 -26.6889 0 + vertex -17.6656 -24.469 -0.1 + vertex -17.6656 -24.469 0 + endloop + endfacet + facet normal 0.931695 -0.363243 0 + outer loop + vertex -17.6656 -24.469 -0.1 + vertex -18.5311 -26.6889 0 + vertex -18.5311 -26.6889 -0.1 + endloop + endfacet + facet normal 0.941797 -0.336183 0 + outer loop + vertex -17.6656 -24.469 0 + vertex -17.4084 -23.7485 -0.1 + vertex -17.4084 -23.7485 0 + endloop + endfacet + facet normal 0.941797 -0.336183 0 + outer loop + vertex -17.4084 -23.7485 -0.1 + vertex -17.6656 -24.469 0 + vertex -17.6656 -24.469 -0.1 + endloop + endfacet + facet normal 0.959662 -0.281158 0 + outer loop + vertex -17.4084 -23.7485 0 + vertex -17.2873 -23.335 -0.1 + vertex -17.2873 -23.335 0 + endloop + endfacet + facet normal 0.959662 -0.281158 0 + outer loop + vertex -17.2873 -23.335 -0.1 + vertex -17.4084 -23.7485 0 + vertex -17.4084 -23.7485 -0.1 + endloop + endfacet + facet normal 0.987024 -0.160575 0 + outer loop + vertex -17.2873 -23.335 0 + vertex -17.2226 -22.9371 -0.1 + vertex -17.2226 -22.9371 0 + endloop + endfacet + facet normal 0.987024 -0.160575 0 + outer loop + vertex -17.2226 -22.9371 -0.1 + vertex -17.2873 -23.335 0 + vertex -17.2873 -23.335 -0.1 + endloop + endfacet + facet normal 0.999826 0.0186517 0 + outer loop + vertex -17.2226 -22.9371 0 + vertex -17.2249 -22.8126 -0.1 + vertex -17.2249 -22.8126 0 + endloop + endfacet + facet normal 0.999826 0.0186517 0 + outer loop + vertex -17.2249 -22.8126 -0.1 + vertex -17.2226 -22.9371 0 + vertex -17.2226 -22.9371 -0.1 + endloop + endfacet + facet normal 0.932644 0.360799 0 + outer loop + vertex -17.2249 -22.8126 0 + vertex -17.2578 -22.7276 -0.1 + vertex -17.2578 -22.7276 0 + endloop + endfacet + facet normal 0.932644 0.360799 0 + outer loop + vertex -17.2578 -22.7276 -0.1 + vertex -17.2249 -22.8126 0 + vertex -17.2249 -22.8126 -0.1 + endloop + endfacet + facet normal 0.608972 0.793192 -0 + outer loop + vertex -17.2578 -22.7276 -0.1 + vertex -17.3267 -22.6747 0 + vertex -17.2578 -22.7276 0 + endloop + endfacet + facet normal 0.608972 0.793192 0 + outer loop + vertex -17.3267 -22.6747 0 + vertex -17.2578 -22.7276 -0.1 + vertex -17.3267 -22.6747 -0.1 + endloop + endfacet + facet normal 0.249366 0.968409 -0 + outer loop + vertex -17.3267 -22.6747 -0.1 + vertex -17.4374 -22.6462 0 + vertex -17.3267 -22.6747 0 + endloop + endfacet + facet normal 0.249366 0.968409 0 + outer loop + vertex -17.4374 -22.6462 0 + vertex -17.3267 -22.6747 -0.1 + vertex -17.4374 -22.6462 -0.1 + endloop + endfacet + facet normal 0.0372683 0.999305 -0 + outer loop + vertex -17.4374 -22.6462 -0.1 + vertex -17.8061 -22.6324 0 + vertex -17.4374 -22.6462 0 + endloop + endfacet + facet normal 0.0372683 0.999305 0 + outer loop + vertex -17.8061 -22.6324 0 + vertex -17.4374 -22.6462 -0.1 + vertex -17.8061 -22.6324 -0.1 + endloop + endfacet + facet normal 0.050033 0.998748 -0 + outer loop + vertex -17.8061 -22.6324 -0.1 + vertex -18.1091 -22.6172 0 + vertex -17.8061 -22.6324 0 + endloop + endfacet + facet normal 0.050033 0.998748 0 + outer loop + vertex -18.1091 -22.6172 0 + vertex -17.8061 -22.6324 -0.1 + vertex -18.1091 -22.6172 -0.1 + endloop + endfacet + facet normal 0.187734 0.98222 -0 + outer loop + vertex -18.1091 -22.6172 -0.1 + vertex -18.3541 -22.5704 0 + vertex -18.1091 -22.6172 0 + endloop + endfacet + facet normal 0.187734 0.98222 0 + outer loop + vertex -18.3541 -22.5704 0 + vertex -18.1091 -22.6172 -0.1 + vertex -18.3541 -22.5704 -0.1 + endloop + endfacet + facet normal 0.392235 0.919865 -0 + outer loop + vertex -18.3541 -22.5704 -0.1 + vertex -18.5429 -22.4899 0 + vertex -18.3541 -22.5704 0 + endloop + endfacet + facet normal 0.392235 0.919865 0 + outer loop + vertex -18.5429 -22.4899 0 + vertex -18.3541 -22.5704 -0.1 + vertex -18.5429 -22.4899 -0.1 + endloop + endfacet + facet normal 0.654816 0.755788 -0 + outer loop + vertex -18.5429 -22.4899 -0.1 + vertex -18.6769 -22.3738 0 + vertex -18.5429 -22.4899 0 + endloop + endfacet + facet normal 0.654816 0.755788 0 + outer loop + vertex -18.6769 -22.3738 0 + vertex -18.5429 -22.4899 -0.1 + vertex -18.6769 -22.3738 -0.1 + endloop + endfacet + facet normal 0.885096 0.465409 0 + outer loop + vertex -18.6769 -22.3738 0 + vertex -18.7577 -22.2202 -0.1 + vertex -18.7577 -22.2202 0 + endloop + endfacet + facet normal 0.885096 0.465409 0 + outer loop + vertex -18.7577 -22.2202 -0.1 + vertex -18.6769 -22.3738 0 + vertex -18.6769 -22.3738 -0.1 + endloop + endfacet + facet normal 0.988779 0.149383 0 + outer loop + vertex -18.7577 -22.2202 0 + vertex -18.7869 -22.0269 -0.1 + vertex -18.7869 -22.0269 0 + endloop + endfacet + facet normal 0.988779 0.149383 0 + outer loop + vertex -18.7869 -22.0269 -0.1 + vertex -18.7577 -22.2202 0 + vertex -18.7577 -22.2202 -0.1 + endloop + endfacet + facet normal 0.99608 -0.0884566 0 + outer loop + vertex -18.7869 -22.0269 0 + vertex -18.766 -21.7922 -0.1 + vertex -18.766 -21.7922 0 + endloop + endfacet + facet normal 0.99608 -0.0884566 0 + outer loop + vertex -18.766 -21.7922 -0.1 + vertex -18.7869 -22.0269 0 + vertex -18.7869 -22.0269 -0.1 + endloop + endfacet + facet normal 0.970344 -0.241728 0 + outer loop + vertex -18.766 -21.7922 0 + vertex -18.6967 -21.5139 -0.1 + vertex -18.6967 -21.5139 0 + endloop + endfacet + facet normal 0.970344 -0.241728 0 + outer loop + vertex -18.6967 -21.5139 -0.1 + vertex -18.766 -21.7922 0 + vertex -18.766 -21.7922 -0.1 + endloop + endfacet + facet normal 0.92433 -0.381593 0 + outer loop + vertex -18.6967 -21.5139 0 + vertex -18.5788 -21.2283 -0.1 + vertex -18.5788 -21.2283 0 + endloop + endfacet + facet normal 0.92433 -0.381593 0 + outer loop + vertex -18.5788 -21.2283 -0.1 + vertex -18.6967 -21.5139 0 + vertex -18.6967 -21.5139 -0.1 + endloop + endfacet + facet normal 0.848388 -0.529374 0 + outer loop + vertex -18.5788 -21.2283 0 + vertex -18.5053 -21.1105 -0.1 + vertex -18.5053 -21.1105 0 + endloop + endfacet + facet normal 0.848388 -0.529374 0 + outer loop + vertex -18.5053 -21.1105 -0.1 + vertex -18.5788 -21.2283 0 + vertex -18.5788 -21.2283 -0.1 + endloop + endfacet + facet normal 0.772185 -0.635398 0 + outer loop + vertex -18.5053 -21.1105 0 + vertex -18.4218 -21.0091 -0.1 + vertex -18.4218 -21.0091 0 + endloop + endfacet + facet normal 0.772185 -0.635398 0 + outer loop + vertex -18.4218 -21.0091 -0.1 + vertex -18.5053 -21.1105 0 + vertex -18.5053 -21.1105 -0.1 + endloop + endfacet + facet normal 0.673134 -0.739521 0 + outer loop + vertex -18.4218 -21.0091 -0.1 + vertex -18.3284 -20.924 0 + vertex -18.4218 -21.0091 0 + endloop + endfacet + facet normal 0.673134 -0.739521 0 + outer loop + vertex -18.3284 -20.924 0 + vertex -18.4218 -21.0091 -0.1 + vertex -18.3284 -20.924 -0.1 + endloop + endfacet + facet normal 0.553635 -0.832759 0 + outer loop + vertex -18.3284 -20.924 -0.1 + vertex -18.2248 -20.8552 0 + vertex -18.3284 -20.924 0 + endloop + endfacet + facet normal 0.553635 -0.832759 0 + outer loop + vertex -18.2248 -20.8552 0 + vertex -18.3284 -20.924 -0.1 + vertex -18.2248 -20.8552 -0.1 + endloop + endfacet + facet normal 0.4209 -0.907107 0 + outer loop + vertex -18.2248 -20.8552 -0.1 + vertex -18.1109 -20.8023 0 + vertex -18.2248 -20.8552 0 + endloop + endfacet + facet normal 0.4209 -0.907107 0 + outer loop + vertex -18.1109 -20.8023 0 + vertex -18.2248 -20.8552 -0.1 + vertex -18.1109 -20.8023 -0.1 + endloop + endfacet + facet normal 0.284987 -0.958531 0 + outer loop + vertex -18.1109 -20.8023 -0.1 + vertex -17.9865 -20.7653 0 + vertex -18.1109 -20.8023 0 + endloop + endfacet + facet normal 0.284987 -0.958531 0 + outer loop + vertex -17.9865 -20.7653 0 + vertex -18.1109 -20.8023 -0.1 + vertex -17.9865 -20.7653 -0.1 + endloop + endfacet + facet normal 0.279088 -0.960266 0 + outer loop + vertex -17.9865 -20.7653 -0.1 + vertex -16.9393 -20.461 0 + vertex -17.9865 -20.7653 0 + endloop + endfacet + facet normal 0.279088 -0.960266 0 + outer loop + vertex -16.9393 -20.461 0 + vertex -17.9865 -20.7653 -0.1 + vertex -16.9393 -20.461 -0.1 + endloop + endfacet + facet normal 0.302435 -0.95317 0 + outer loop + vertex -16.9393 -20.461 -0.1 + vertex -15.1436 -19.8912 0 + vertex -16.9393 -20.461 0 + endloop + endfacet + facet normal 0.302435 -0.95317 0 + outer loop + vertex -15.1436 -19.8912 0 + vertex -16.9393 -20.461 -0.1 + vertex -15.1436 -19.8912 -0.1 + endloop + endfacet + facet normal 0.297661 -0.954672 0 + outer loop + vertex -15.1436 -19.8912 -0.1 + vertex -14.1989 -19.5967 0 + vertex -15.1436 -19.8912 0 + endloop + endfacet + facet normal 0.297661 -0.954672 0 + outer loop + vertex -14.1989 -19.5967 0 + vertex -15.1436 -19.8912 -0.1 + vertex -14.1989 -19.5967 -0.1 + endloop + endfacet + facet normal 0.272658 -0.962111 0 + outer loop + vertex -14.1989 -19.5967 -0.1 + vertex -13.3483 -19.3556 0 + vertex -14.1989 -19.5967 0 + endloop + endfacet + facet normal 0.272658 -0.962111 0 + outer loop + vertex -13.3483 -19.3556 0 + vertex -14.1989 -19.5967 -0.1 + vertex -13.3483 -19.3556 -0.1 + endloop + endfacet + facet normal 0.238231 -0.971209 0 + outer loop + vertex -13.3483 -19.3556 -0.1 + vertex -12.6849 -19.1929 0 + vertex -13.3483 -19.3556 0 + endloop + endfacet + facet normal 0.238231 -0.971209 0 + outer loop + vertex -12.6849 -19.1929 0 + vertex -13.3483 -19.3556 -0.1 + vertex -12.6849 -19.1929 -0.1 + endloop + endfacet + facet normal 0.153595 -0.988134 0 + outer loop + vertex -12.6849 -19.1929 -0.1 + vertex -12.302 -19.1333 0 + vertex -12.6849 -19.1929 0 + endloop + endfacet + facet normal 0.153595 -0.988134 0 + outer loop + vertex -12.302 -19.1333 0 + vertex -12.6849 -19.1929 -0.1 + vertex -12.302 -19.1333 -0.1 + endloop + endfacet + facet normal -0.105808 -0.994387 0 + outer loop + vertex -12.302 -19.1333 -0.1 + vertex -12.0792 -19.1571 0 + vertex -12.302 -19.1333 0 + endloop + endfacet + facet normal -0.105808 -0.994387 -0 + outer loop + vertex -12.0792 -19.1571 0 + vertex -12.302 -19.1333 -0.1 + vertex -12.0792 -19.1571 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.6833 -25.6471 -0.1 + vertex 39.342 -26.9688 -0.1 + vertex 35.957 -24.8864 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.3422 -26.5156 -0.1 + vertex 39.342 -26.9688 -0.1 + vertex 35.6833 -25.6471 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 39.342 -26.9688 -0.1 + vertex 35.3422 -26.5156 -0.1 + vertex 38.2305 -29.6614 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.8561 -30.1753 -0.1 + vertex 38.2305 -29.6614 -0.1 + vertex 35.3422 -26.5156 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.2305 -29.6614 -0.1 + vertex 33.8561 -30.1753 -0.1 + vertex 37.444 -31.6395 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.3957 -19.1543 -0.1 + vertex 42.162 -19.859 -0.1 + vertex 42.1595 -19.6516 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.7426 -19.1572 -0.1 + vertex 42.1595 -19.6516 -0.1 + vertex 42.1149 -19.4743 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.162 -19.859 -0.1 + vertex 41.3957 -19.1543 -0.1 + vertex 42.1212 -20.0931 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.7426 -19.1572 -0.1 + vertex 42.1149 -19.4743 -0.1 + vertex 42.0297 -19.3306 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 41.156 -19.2119 -0.1 + vertex 42.1212 -20.0931 -0.1 + vertex 41.3957 -19.1543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.1212 -20.0931 -0.1 + vertex 41.156 -19.2119 -0.1 + vertex 42.0356 -20.3507 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.7426 -19.1572 -0.1 + vertex 42.0297 -19.3306 -0.1 + vertex 41.9051 -19.2238 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.9233 -19.8512 -0.1 + vertex 47.9993 -20.1225 -0.1 + vertex 47.9745 -19.9807 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.9993 -20.1225 -0.1 + vertex 47.9233 -19.8512 -0.1 + vertex 47.9987 -20.2887 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.845 -19.7221 -0.1 + vertex 47.9987 -20.2887 -0.1 + vertex 47.9233 -19.8512 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.9987 -20.2887 -0.1 + vertex 47.845 -19.7221 -0.1 + vertex 47.9737 -20.4912 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.7384 -19.5813 -0.1 + vertex 47.9737 -20.4912 -0.1 + vertex 47.845 -19.7221 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.044 -19.1833 -0.1 + vertex 47.9737 -20.4912 -0.1 + vertex 47.7384 -19.5813 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.8289 -19.1548 -0.1 + vertex 47.9737 -20.4912 -0.1 + vertex 47.044 -19.1833 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.2257 -19.2263 -0.1 + vertex 47.7384 -19.5813 -0.1 + vertex 47.6302 -19.4614 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.274 -19.1343 -0.1 + vertex 47.8542 -21.0531 -0.1 + vertex 46.8289 -19.1548 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.2257 -19.2263 -0.1 + vertex 47.6302 -19.4614 -0.1 + vertex 47.5127 -19.3635 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.2257 -19.2263 -0.1 + vertex 47.5127 -19.3635 -0.1 + vertex 47.3799 -19.2858 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.9737 -20.4912 -0.1 + vertex 46.8289 -19.1548 -0.1 + vertex 47.8542 -21.0531 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.7384 -19.5813 -0.1 + vertex 47.2257 -19.2263 -0.1 + vertex 47.044 -19.1833 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.8542 -21.0531 -0.1 + vertex 46.274 -19.1343 -0.1 + vertex 47.7155 -21.5429 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 45.8151 -19.1475 -0.1 + vertex 47.7155 -21.5429 -0.1 + vertex 46.274 -19.1343 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.7155 -21.5429 -0.1 + vertex 45.8151 -19.1475 -0.1 + vertex 47.5422 -21.9981 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 45.391 -19.1898 -0.1 + vertex 47.5422 -21.9981 -0.1 + vertex 45.8151 -19.1475 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.5422 -21.9981 -0.1 + vertex 45.391 -19.1898 -0.1 + vertex 47.3383 -22.4165 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 44.9905 -19.265 -0.1 + vertex 47.3383 -22.4165 -0.1 + vertex 45.391 -19.1898 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 44.6026 -19.3768 -0.1 + vertex 47.3383 -22.4165 -0.1 + vertex 44.9905 -19.265 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.3383 -22.4165 -0.1 + vertex 44.6026 -19.3768 -0.1 + vertex 47.1074 -22.796 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 44.2162 -19.5289 -0.1 + vertex 47.1074 -22.796 -0.1 + vertex 44.6026 -19.3768 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.1074 -22.796 -0.1 + vertex 44.2162 -19.5289 -0.1 + vertex 46.8534 -23.1343 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.3873 -23.2523 -0.1 + vertex 46.8534 -23.1343 -0.1 + vertex 44.2162 -19.5289 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.8534 -23.1343 -0.1 + vertex 43.3873 -23.2523 -0.1 + vertex 46.5801 -23.4293 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.5801 -23.4293 -0.1 + vertex 43.3873 -23.2523 -0.1 + vertex 46.2914 -23.6786 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 43.6239 -23.5069 -0.1 + vertex 46.2914 -23.6786 -0.1 + vertex 43.3873 -23.2523 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.2914 -23.6786 -0.1 + vertex 43.6239 -23.5069 -0.1 + vertex 45.9909 -23.8802 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 43.8807 -23.7673 -0.1 + vertex 45.3703 -24.1311 -0.1 + vertex 43.6239 -23.5069 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.3703 -24.1311 -0.1 + vertex 43.8807 -23.7673 -0.1 + vertex 45.0576 -24.176 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.9909 -23.8802 -0.1 + vertex 43.6239 -23.5069 -0.1 + vertex 45.6826 -24.0317 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.0576 -24.176 -0.1 + vertex 43.8807 -23.7673 -0.1 + vertex 44.7485 -24.1643 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.7485 -24.1643 -0.1 + vertex 43.8807 -23.7673 -0.1 + vertex 44.4468 -24.0937 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.3873 -23.2523 -0.1 + vertex 44.2162 -19.5289 -0.1 + vertex 43.8201 -19.7253 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.4468 -24.0937 -0.1 + vertex 43.8807 -23.7673 -0.1 + vertex 44.1563 -23.9621 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.3873 -23.2523 -0.1 + vertex 43.8201 -19.7253 -0.1 + vertex 43.4033 -19.9696 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.6826 -24.0317 -0.1 + vertex 43.6239 -23.5069 -0.1 + vertex 45.3703 -24.1311 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.4033 -19.9696 -0.1 + vertex 43.1493 -23.0437 -0.1 + vertex 43.3873 -23.2523 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 42.9547 -20.2657 -0.1 + vertex 43.1493 -23.0437 -0.1 + vertex 43.4033 -19.9696 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.9547 -20.2657 -0.1 + vertex 42.9376 -22.9028 -0.1 + vertex 43.1493 -23.0437 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.9547 -20.2657 -0.1 + vertex 42.8503 -22.8644 -0.1 + vertex 42.9376 -22.9028 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 42.3117 -20.6924 -0.1 + vertex 42.8503 -22.8644 -0.1 + vertex 42.9547 -20.2657 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.8503 -22.8644 -0.1 + vertex 42.3117 -20.6924 -0.1 + vertex 42.7799 -22.851 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 42.1116 -20.8028 -0.1 + vertex 42.7799 -22.851 -0.1 + vertex 42.3117 -20.6924 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.7799 -22.851 -0.1 + vertex 42.1116 -20.8028 -0.1 + vertex 42.6968 -22.8729 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 41.9827 -20.8453 -0.1 + vertex 42.6968 -22.8729 -0.1 + vertex 42.1116 -20.8028 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.6968 -22.8729 -0.1 + vertex 41.9827 -20.8453 -0.1 + vertex 42.5728 -22.9356 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.9427 -20.8413 -0.1 + vertex 42.5728 -22.9356 -0.1 + vertex 41.9827 -20.8453 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.5728 -22.9356 -0.1 + vertex 41.9427 -20.8413 -0.1 + vertex 42.2267 -23.1657 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.7898 -23.5063 -0.1 + vertex 41.9427 -20.8413 -0.1 + vertex 41.9179 -20.8207 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.9427 -20.8413 -0.1 + vertex 41.7898 -23.5063 -0.1 + vertex 42.2267 -23.1657 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 39.5298 -19.7361 -0.1 + vertex 41.9179 -20.8207 -0.1 + vertex 41.9099 -20.7296 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.0356 -20.3507 -0.1 + vertex 41.156 -19.2119 -0.1 + vertex 41.9515 -20.5727 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.1595 -19.6516 -0.1 + vertex 41.7426 -19.1572 -0.1 + vertex 41.5436 -19.1343 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.1595 -19.6516 -0.1 + vertex 41.5436 -19.1343 -0.1 + vertex 41.3957 -19.1543 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 40.4513 -19.4233 -0.1 + vertex 41.9515 -20.5727 -0.1 + vertex 41.156 -19.2119 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.9515 -20.5727 -0.1 + vertex 40.4513 -19.4233 -0.1 + vertex 41.9099 -20.7296 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 39.5298 -19.7361 -0.1 + vertex 41.9099 -20.7296 -0.1 + vertex 40.4513 -19.4233 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.9179 -20.8207 -0.1 + vertex 39.5298 -19.7361 -0.1 + vertex 41.3103 -23.9223 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.9179 -20.8207 -0.1 + vertex 41.3103 -23.9223 -0.1 + vertex 41.7898 -23.5063 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 38.4916 -20.1181 -0.1 + vertex 41.3103 -23.9223 -0.1 + vertex 39.5298 -19.7361 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.3103 -23.9223 -0.1 + vertex 38.4916 -20.1181 -0.1 + vertex 40.922 -24.2835 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 40.922 -24.2835 -0.1 + vertex 38.4916 -20.1181 -0.1 + vertex 40.604 -24.6171 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.3539 -23.0402 -0.1 + vertex 40.604 -24.6171 -0.1 + vertex 38.4916 -20.1181 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 36.3671 -23.1585 -0.1 + vertex 40.604 -24.6171 -0.1 + vertex 36.3539 -23.0402 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 40.604 -24.6171 -0.1 + vertex 36.362 -23.3104 -0.1 + vertex 40.3218 -24.9877 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.2977 -23.7121 -0.1 + vertex 40.3218 -24.9877 -0.1 + vertex 36.362 -23.3104 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 40.3218 -24.9877 -0.1 + vertex 36.2977 -23.7121 -0.1 + vertex 40.0406 -25.46 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.3539 -23.0402 -0.1 + vertex 38.4916 -20.1181 -0.1 + vertex 37.4642 -20.5001 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.1622 -24.2394 -0.1 + vertex 40.0406 -25.46 -0.1 + vertex 36.2977 -23.7121 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 40.0406 -25.46 -0.1 + vertex 36.1622 -24.2394 -0.1 + vertex 39.7256 -26.0988 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.3224 -22.9562 -0.1 + vertex 37.4642 -20.5001 -0.1 + vertex 36.5724 -20.813 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.957 -24.8864 -0.1 + vertex 39.7256 -26.0988 -0.1 + vertex 36.1622 -24.2394 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 39.7256 -26.0988 -0.1 + vertex 35.957 -24.8864 -0.1 + vertex 39.342 -26.9688 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.362 -23.3104 -0.1 + vertex 40.604 -24.6171 -0.1 + vertex 36.3671 -23.1585 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.4642 -20.5001 -0.1 + vertex 36.3224 -22.9562 -0.1 + vertex 36.3539 -23.0402 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.5724 -20.813 -0.1 + vertex 36.2723 -22.9073 -0.1 + vertex 36.3224 -22.9562 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.9118 -21.0243 -0.1 + vertex 36.2723 -22.9073 -0.1 + vertex 36.5724 -20.813 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.2723 -22.9073 -0.1 + vertex 35.9118 -21.0243 -0.1 + vertex 36.2034 -22.8943 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.5778 -21.102 -0.1 + vertex 36.2034 -22.8943 -0.1 + vertex 35.9118 -21.0243 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.2034 -22.8943 -0.1 + vertex 35.5778 -21.102 -0.1 + vertex 36.1157 -22.9178 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.1157 -22.9178 -0.1 + vertex 35.5778 -21.102 -0.1 + vertex 35.9442 -22.9618 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.9442 -22.9618 -0.1 + vertex 35.5778 -21.102 -0.1 + vertex 35.7166 -22.9783 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.0706 -21.3217 -0.1 + vertex 35.7166 -22.9783 -0.1 + vertex 35.5778 -21.102 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.2304 -21.2043 -0.1 + vertex 35.5778 -21.102 -0.1 + vertex 35.4013 -21.1287 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.5778 -21.102 -0.1 + vertex 35.2304 -21.2043 -0.1 + vertex 35.0706 -21.3217 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 34.9274 -21.474 -0.1 + vertex 35.7166 -22.9783 -0.1 + vertex 35.0706 -21.3217 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.7166 -22.9783 -0.1 + vertex 34.9274 -21.474 -0.1 + vertex 35.4626 -22.9668 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 34.8063 -21.6543 -0.1 + vertex 35.4626 -22.9668 -0.1 + vertex 34.9274 -21.474 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 34.713 -21.8554 -0.1 + vertex 35.4626 -22.9668 -0.1 + vertex 34.8063 -21.6543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.4626 -22.9668 -0.1 + vertex 34.713 -21.8554 -0.1 + vertex 35.2118 -22.9271 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 34.653 -22.0706 -0.1 + vertex 35.2118 -22.9271 -0.1 + vertex 34.713 -21.8554 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 34.6318 -22.2927 -0.1 + vertex 35.2118 -22.9271 -0.1 + vertex 34.653 -22.0706 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.2118 -22.9271 -0.1 + vertex 34.6318 -22.2927 -0.1 + vertex 34.9345 -22.8399 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 34.6385 -22.4262 -0.1 + vertex 34.9345 -22.8399 -0.1 + vertex 34.6318 -22.2927 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 34.6602 -22.54 -0.1 + vertex 34.9345 -22.8399 -0.1 + vertex 34.6385 -22.4262 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.9345 -22.8399 -0.1 + vertex 34.6602 -22.54 -0.1 + vertex 34.8338 -22.7839 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.8338 -22.7839 -0.1 + vertex 34.6602 -22.54 -0.1 + vertex 34.7558 -22.7166 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.7558 -22.7166 -0.1 + vertex 34.6602 -22.54 -0.1 + vertex 34.6986 -22.636 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.6954 -36.1853 -0.1 + vertex 38.1248 -36.8464 -0.1 + vertex 38.119 -36.6694 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.8576 -36.2498 -0.1 + vertex 38.119 -36.6694 -0.1 + vertex 38.0969 -36.5276 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.203 -36.0604 -0.1 + vertex 38.1248 -36.8464 -0.1 + vertex 37.6954 -36.1853 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.9736 -36.3241 -0.1 + vertex 38.0969 -36.5276 -0.1 + vertex 38.0509 -36.4146 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.1248 -36.8464 -0.1 + vertex 37.203 -36.0604 -0.1 + vertex 38.103 -37.2562 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.0969 -36.5276 -0.1 + vertex 37.9736 -36.3241 -0.1 + vertex 37.8576 -36.2498 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.119 -36.6694 -0.1 + vertex 37.8576 -36.2498 -0.1 + vertex 37.6954 -36.1853 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 37.3927 -37.9628 -0.1 + vertex 38.103 -37.2562 -0.1 + vertex 37.203 -36.0604 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 37.7849 -37.8018 -0.1 + vertex 38.0668 -37.4245 -0.1 + vertex 37.6132 -37.8903 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.0668 -37.4245 -0.1 + vertex 37.7849 -37.8018 -0.1 + vertex 38.0057 -37.5705 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.0057 -37.5705 -0.1 + vertex 37.7849 -37.8018 -0.1 + vertex 37.9137 -37.6957 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 37.6132 -37.8903 -0.1 + vertex 38.103 -37.2562 -0.1 + vertex 37.3927 -37.9628 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.103 -37.2562 -0.1 + vertex 37.6132 -37.8903 -0.1 + vertex 38.0668 -37.4245 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.203 -36.0604 -0.1 + vertex 37.1174 -38.0208 -0.1 + vertex 37.3927 -37.9628 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.203 -36.0604 -0.1 + vertex 36.7812 -38.066 -0.1 + vertex 37.1174 -38.0208 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.6812 -35.9318 -0.1 + vertex 36.7812 -38.066 -0.1 + vertex 37.203 -36.0604 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.9024 -38.1241 -0.1 + vertex 36.6812 -35.9318 -0.1 + vertex 36.5187 -35.8653 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.9024 -38.1241 -0.1 + vertex 36.5187 -35.8653 -0.1 + vertex 36.4089 -35.7834 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.7085 -38.1497 -0.1 + vertex 36.4089 -35.7834 -0.1 + vertex 36.3422 -35.6758 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.7085 -38.1497 -0.1 + vertex 36.3422 -35.6758 -0.1 + vertex 36.3089 -35.532 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.444 -31.6395 -0.1 + vertex 33.8561 -30.1753 -0.1 + vertex 36.8389 -33.2656 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 33.1139 -32.0001 -0.1 + vertex 36.8389 -33.2656 -0.1 + vertex 33.8561 -30.1753 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.6812 -35.9318 -0.1 + vertex 35.9024 -38.1241 -0.1 + vertex 36.7812 -38.066 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 32.0766 -34.3595 -0.1 + vertex 36.3089 -35.532 -0.1 + vertex 36.2992 -35.3418 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.8389 -33.2656 -0.1 + vertex 33.1139 -32.0001 -0.1 + vertex 36.4479 -34.448 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 32.5373 -33.371 -0.1 + vertex 36.4479 -34.448 -0.1 + vertex 33.1139 -32.0001 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.4479 -34.448 -0.1 + vertex 32.5373 -33.371 -0.1 + vertex 36.3428 -34.844 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.3428 -34.844 -0.1 + vertex 32.5373 -33.371 -0.1 + vertex 36.3035 -35.0946 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 32.0766 -34.3595 -0.1 + vertex 36.3035 -35.0946 -0.1 + vertex 32.5373 -33.371 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.3035 -35.0946 -0.1 + vertex 32.0766 -34.3595 -0.1 + vertex 36.2992 -35.3418 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.4089 -35.7834 -0.1 + vertex 34.7085 -38.1497 -0.1 + vertex 35.9024 -38.1241 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.3089 -35.532 -0.1 + vertex 32.0766 -34.3595 -0.1 + vertex 31.8743 -34.7329 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.3089 -35.532 -0.1 + vertex 31.8743 -34.7329 -0.1 + vertex 34.7085 -38.1497 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.7085 -38.1497 -0.1 + vertex 31.8743 -34.7329 -0.1 + vertex 33.1514 -38.1555 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 31.6824 -35.0376 -0.1 + vertex 33.1514 -38.1555 -0.1 + vertex 31.8743 -34.7329 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 31.4948 -35.2825 -0.1 + vertex 33.1514 -38.1555 -0.1 + vertex 31.6824 -35.0376 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 31.3052 -35.4767 -0.1 + vertex 33.1514 -38.1555 -0.1 + vertex 31.4948 -35.2825 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 31.1075 -35.6291 -0.1 + vertex 33.1514 -38.1555 -0.1 + vertex 31.3052 -35.4767 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.1514 -38.1555 -0.1 + vertex 31.1075 -35.6291 -0.1 + vertex 31.1824 -38.1409 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 30.8955 -35.7486 -0.1 + vertex 31.1824 -38.1409 -0.1 + vertex 31.1075 -35.6291 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 30.6629 -35.8443 -0.1 + vertex 31.1824 -38.1409 -0.1 + vertex 30.8955 -35.7486 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 30.4037 -35.9251 -0.1 + vertex 31.1824 -38.1409 -0.1 + vertex 30.6629 -35.8443 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.4037 -35.9251 -0.1 + vertex 29.8192 -38.0948 -0.1 + vertex 31.1824 -38.1409 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.7804 -36.0779 -0.1 + vertex 29.8192 -38.0948 -0.1 + vertex 30.4037 -35.9251 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.5705 -36.1356 -0.1 + vertex 29.8192 -38.0948 -0.1 + vertex 29.7804 -36.0779 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.3757 -36.2065 -0.1 + vertex 29.8192 -38.0948 -0.1 + vertex 29.5705 -36.1356 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.1966 -36.2895 -0.1 + vertex 29.8192 -38.0948 -0.1 + vertex 29.3757 -36.2065 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.8192 -38.0948 -0.1 + vertex 29.1966 -36.2895 -0.1 + vertex 29.3448 -38.0588 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.034 -36.3831 -0.1 + vertex 29.3448 -38.0588 -0.1 + vertex 29.1966 -36.2895 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.8888 -36.4863 -0.1 + vertex 29.3448 -38.0588 -0.1 + vertex 29.034 -36.3831 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.7617 -36.5978 -0.1 + vertex 29.3448 -38.0588 -0.1 + vertex 28.8888 -36.4863 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.6534 -36.7163 -0.1 + vertex 29.3448 -38.0588 -0.1 + vertex 28.7617 -36.5978 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.3448 -38.0588 -0.1 + vertex 28.6534 -36.7163 -0.1 + vertex 28.9979 -38.0135 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.5648 -36.8405 -0.1 + vertex 28.9979 -38.0135 -0.1 + vertex 28.6534 -36.7163 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.4965 -36.9693 -0.1 + vertex 28.9979 -38.0135 -0.1 + vertex 28.5648 -36.8405 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.4495 -37.1014 -0.1 + vertex 28.9979 -38.0135 -0.1 + vertex 28.4965 -36.9693 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.7706 -37.9584 -0.1 + vertex 28.5587 -37.7674 -0.1 + vertex 28.6548 -37.8931 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.4243 -37.2355 -0.1 + vertex 28.9979 -38.0135 -0.1 + vertex 28.4495 -37.1014 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.9979 -38.0135 -0.1 + vertex 28.5587 -37.7674 -0.1 + vertex 28.7706 -37.9584 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.4219 -37.3704 -0.1 + vertex 28.9979 -38.0135 -0.1 + vertex 28.4243 -37.2355 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 28.5587 -37.7674 -0.1 + vertex 28.9979 -38.0135 -0.1 + vertex 28.4883 -37.6376 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 28.4883 -37.6376 -0.1 + vertex 28.9979 -38.0135 -0.1 + vertex 28.443 -37.5048 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.9979 -38.0135 -0.1 + vertex 28.4219 -37.3704 -0.1 + vertex 28.443 -37.5048 -0.1 + endloop + endfacet + facet normal -0.131122 -0.991366 0 + outer loop + vertex 46.8289 -19.1548 -0.1 + vertex 47.044 -19.1833 0 + vertex 46.8289 -19.1548 0 + endloop + endfacet + facet normal -0.131122 -0.991366 -0 + outer loop + vertex 47.044 -19.1833 0 + vertex 46.8289 -19.1548 -0.1 + vertex 47.044 -19.1833 -0.1 + endloop + endfacet + facet normal -0.230596 -0.97305 0 + outer loop + vertex 47.044 -19.1833 -0.1 + vertex 47.2257 -19.2263 0 + vertex 47.044 -19.1833 0 + endloop + endfacet + facet normal -0.230596 -0.97305 -0 + outer loop + vertex 47.2257 -19.2263 0 + vertex 47.044 -19.1833 -0.1 + vertex 47.2257 -19.2263 -0.1 + endloop + endfacet + facet normal -0.359881 -0.932998 0 + outer loop + vertex 47.2257 -19.2263 -0.1 + vertex 47.3799 -19.2858 0 + vertex 47.2257 -19.2263 0 + endloop + endfacet + facet normal -0.359881 -0.932998 -0 + outer loop + vertex 47.3799 -19.2858 0 + vertex 47.2257 -19.2263 -0.1 + vertex 47.3799 -19.2858 -0.1 + endloop + endfacet + facet normal -0.505271 -0.862961 0 + outer loop + vertex 47.3799 -19.2858 -0.1 + vertex 47.5127 -19.3635 0 + vertex 47.3799 -19.2858 0 + endloop + endfacet + facet normal -0.505271 -0.862961 -0 + outer loop + vertex 47.5127 -19.3635 0 + vertex 47.3799 -19.2858 -0.1 + vertex 47.5127 -19.3635 -0.1 + endloop + endfacet + facet normal -0.640123 -0.768272 0 + outer loop + vertex 47.5127 -19.3635 -0.1 + vertex 47.6302 -19.4614 0 + vertex 47.5127 -19.3635 0 + endloop + endfacet + facet normal -0.640123 -0.768272 -0 + outer loop + vertex 47.6302 -19.4614 0 + vertex 47.5127 -19.3635 -0.1 + vertex 47.6302 -19.4614 -0.1 + endloop + endfacet + facet normal -0.742266 -0.670106 0 + outer loop + vertex 47.7384 -19.5813 -0.1 + vertex 47.6302 -19.4614 0 + vertex 47.6302 -19.4614 -0.1 + endloop + endfacet + facet normal -0.742266 -0.670106 0 + outer loop + vertex 47.6302 -19.4614 0 + vertex 47.7384 -19.5813 -0.1 + vertex 47.7384 -19.5813 0 + endloop + endfacet + facet normal -0.797332 -0.60354 0 + outer loop + vertex 47.845 -19.7221 -0.1 + vertex 47.7384 -19.5813 0 + vertex 47.7384 -19.5813 -0.1 + endloop + endfacet + facet normal -0.797332 -0.60354 0 + outer loop + vertex 47.7384 -19.5813 0 + vertex 47.845 -19.7221 -0.1 + vertex 47.845 -19.7221 0 + endloop + endfacet + facet normal -0.85488 -0.518827 0 + outer loop + vertex 47.9233 -19.8512 -0.1 + vertex 47.845 -19.7221 0 + vertex 47.845 -19.7221 -0.1 + endloop + endfacet + facet normal -0.85488 -0.518827 0 + outer loop + vertex 47.845 -19.7221 0 + vertex 47.9233 -19.8512 -0.1 + vertex 47.9233 -19.8512 0 + endloop + endfacet + facet normal -0.930142 -0.367201 0 + outer loop + vertex 47.9745 -19.9807 -0.1 + vertex 47.9233 -19.8512 0 + vertex 47.9233 -19.8512 -0.1 + endloop + endfacet + facet normal -0.930142 -0.367201 0 + outer loop + vertex 47.9233 -19.8512 0 + vertex 47.9745 -19.9807 -0.1 + vertex 47.9745 -19.9807 0 + endloop + endfacet + facet normal -0.985048 -0.172278 0 + outer loop + vertex 47.9993 -20.1225 -0.1 + vertex 47.9745 -19.9807 0 + vertex 47.9745 -19.9807 -0.1 + endloop + endfacet + facet normal -0.985048 -0.172278 0 + outer loop + vertex 47.9745 -19.9807 0 + vertex 47.9993 -20.1225 -0.1 + vertex 47.9993 -20.1225 0 + endloop + endfacet + facet normal -0.999994 0.0034209 0 + outer loop + vertex 47.9987 -20.2887 -0.1 + vertex 47.9993 -20.1225 0 + vertex 47.9993 -20.1225 -0.1 + endloop + endfacet + facet normal -0.999994 0.0034209 0 + outer loop + vertex 47.9993 -20.1225 0 + vertex 47.9987 -20.2887 -0.1 + vertex 47.9987 -20.2887 0 + endloop + endfacet + facet normal -0.992465 0.122526 0 + outer loop + vertex 47.9737 -20.4912 -0.1 + vertex 47.9987 -20.2887 0 + vertex 47.9987 -20.2887 -0.1 + endloop + endfacet + facet normal -0.992465 0.122526 0 + outer loop + vertex 47.9987 -20.2887 0 + vertex 47.9737 -20.4912 -0.1 + vertex 47.9737 -20.4912 0 + endloop + endfacet + facet normal -0.97813 0.207995 0 + outer loop + vertex 47.8542 -21.0531 -0.1 + vertex 47.9737 -20.4912 0 + vertex 47.9737 -20.4912 -0.1 + endloop + endfacet + facet normal -0.97813 0.207995 0 + outer loop + vertex 47.9737 -20.4912 0 + vertex 47.8542 -21.0531 -0.1 + vertex 47.8542 -21.0531 0 + endloop + endfacet + facet normal -0.962149 0.272524 0 + outer loop + vertex 47.7155 -21.5429 -0.1 + vertex 47.8542 -21.0531 0 + vertex 47.8542 -21.0531 -0.1 + endloop + endfacet + facet normal -0.962149 0.272524 0 + outer loop + vertex 47.8542 -21.0531 0 + vertex 47.7155 -21.5429 -0.1 + vertex 47.7155 -21.5429 0 + endloop + endfacet + facet normal -0.934598 0.355705 0 + outer loop + vertex 47.5422 -21.9981 -0.1 + vertex 47.7155 -21.5429 0 + vertex 47.7155 -21.5429 -0.1 + endloop + endfacet + facet normal -0.934598 0.355705 0 + outer loop + vertex 47.7155 -21.5429 0 + vertex 47.5422 -21.9981 -0.1 + vertex 47.5422 -21.9981 0 + endloop + endfacet + facet normal -0.898902 0.438149 0 + outer loop + vertex 47.3383 -22.4165 -0.1 + vertex 47.5422 -21.9981 0 + vertex 47.5422 -21.9981 -0.1 + endloop + endfacet + facet normal -0.898902 0.438149 0 + outer loop + vertex 47.5422 -21.9981 0 + vertex 47.3383 -22.4165 -0.1 + vertex 47.3383 -22.4165 0 + endloop + endfacet + facet normal -0.854314 0.519757 0 + outer loop + vertex 47.1074 -22.796 -0.1 + vertex 47.3383 -22.4165 0 + vertex 47.3383 -22.4165 -0.1 + endloop + endfacet + facet normal -0.854314 0.519757 0 + outer loop + vertex 47.3383 -22.4165 0 + vertex 47.1074 -22.796 -0.1 + vertex 47.1074 -22.796 0 + endloop + endfacet + facet normal -0.79973 0.600359 0 + outer loop + vertex 46.8534 -23.1343 -0.1 + vertex 47.1074 -22.796 0 + vertex 47.1074 -22.796 -0.1 + endloop + endfacet + facet normal -0.79973 0.600359 0 + outer loop + vertex 47.1074 -22.796 0 + vertex 46.8534 -23.1343 -0.1 + vertex 46.8534 -23.1343 0 + endloop + endfacet + facet normal -0.73354 0.679647 0 + outer loop + vertex 46.5801 -23.4293 -0.1 + vertex 46.8534 -23.1343 0 + vertex 46.8534 -23.1343 -0.1 + endloop + endfacet + facet normal -0.73354 0.679647 0 + outer loop + vertex 46.8534 -23.1343 0 + vertex 46.5801 -23.4293 -0.1 + vertex 46.5801 -23.4293 0 + endloop + endfacet + facet normal -0.653573 0.756863 0 + outer loop + vertex 46.5801 -23.4293 -0.1 + vertex 46.2914 -23.6786 0 + vertex 46.5801 -23.4293 0 + endloop + endfacet + facet normal -0.653573 0.756863 0 + outer loop + vertex 46.2914 -23.6786 0 + vertex 46.5801 -23.4293 -0.1 + vertex 46.2914 -23.6786 -0.1 + endloop + endfacet + facet normal -0.557126 0.830428 0 + outer loop + vertex 46.2914 -23.6786 -0.1 + vertex 45.9909 -23.8802 0 + vertex 46.2914 -23.6786 0 + endloop + endfacet + facet normal -0.557126 0.830428 0 + outer loop + vertex 45.9909 -23.8802 0 + vertex 46.2914 -23.6786 -0.1 + vertex 45.9909 -23.8802 -0.1 + endloop + endfacet + facet normal -0.441145 0.897436 0 + outer loop + vertex 45.9909 -23.8802 -0.1 + vertex 45.6826 -24.0317 0 + vertex 45.9909 -23.8802 0 + endloop + endfacet + facet normal -0.441145 0.897436 0 + outer loop + vertex 45.6826 -24.0317 0 + vertex 45.9909 -23.8802 -0.1 + vertex 45.6826 -24.0317 -0.1 + endloop + endfacet + facet normal -0.303061 0.952971 0 + outer loop + vertex 45.6826 -24.0317 -0.1 + vertex 45.3703 -24.1311 0 + vertex 45.6826 -24.0317 0 + endloop + endfacet + facet normal -0.303061 0.952971 0 + outer loop + vertex 45.3703 -24.1311 0 + vertex 45.6826 -24.0317 -0.1 + vertex 45.3703 -24.1311 -0.1 + endloop + endfacet + facet normal -0.142218 0.989835 0 + outer loop + vertex 45.3703 -24.1311 -0.1 + vertex 45.0576 -24.176 0 + vertex 45.3703 -24.1311 0 + endloop + endfacet + facet normal -0.142218 0.989835 0 + outer loop + vertex 45.0576 -24.176 0 + vertex 45.3703 -24.1311 -0.1 + vertex 45.0576 -24.176 -0.1 + endloop + endfacet + facet normal 0.0378695 0.999283 -0 + outer loop + vertex 45.0576 -24.176 -0.1 + vertex 44.7485 -24.1643 0 + vertex 45.0576 -24.176 0 + endloop + endfacet + facet normal 0.0378695 0.999283 0 + outer loop + vertex 44.7485 -24.1643 0 + vertex 45.0576 -24.176 -0.1 + vertex 44.7485 -24.1643 -0.1 + endloop + endfacet + facet normal 0.227696 0.973732 -0 + outer loop + vertex 44.7485 -24.1643 -0.1 + vertex 44.4468 -24.0937 0 + vertex 44.7485 -24.1643 0 + endloop + endfacet + facet normal 0.227696 0.973732 0 + outer loop + vertex 44.4468 -24.0937 0 + vertex 44.7485 -24.1643 -0.1 + vertex 44.4468 -24.0937 -0.1 + endloop + endfacet + facet normal 0.412594 0.910915 -0 + outer loop + vertex 44.4468 -24.0937 -0.1 + vertex 44.1563 -23.9621 0 + vertex 44.4468 -24.0937 0 + endloop + endfacet + facet normal 0.412594 0.910915 0 + outer loop + vertex 44.1563 -23.9621 0 + vertex 44.4468 -24.0937 -0.1 + vertex 44.1563 -23.9621 -0.1 + endloop + endfacet + facet normal 0.57736 0.81649 -0 + outer loop + vertex 44.1563 -23.9621 -0.1 + vertex 43.8807 -23.7673 0 + vertex 44.1563 -23.9621 0 + endloop + endfacet + facet normal 0.57736 0.81649 0 + outer loop + vertex 43.8807 -23.7673 0 + vertex 44.1563 -23.9621 -0.1 + vertex 43.8807 -23.7673 -0.1 + endloop + endfacet + facet normal 0.711931 0.70225 0 + outer loop + vertex 43.8807 -23.7673 0 + vertex 43.6239 -23.5069 -0.1 + vertex 43.6239 -23.5069 0 + endloop + endfacet + facet normal 0.711931 0.70225 0 + outer loop + vertex 43.6239 -23.5069 -0.1 + vertex 43.8807 -23.7673 0 + vertex 43.8807 -23.7673 -0.1 + endloop + endfacet + facet normal 0.732645 0.680611 0 + outer loop + vertex 43.6239 -23.5069 0 + vertex 43.3873 -23.2523 -0.1 + vertex 43.3873 -23.2523 0 + endloop + endfacet + facet normal 0.732645 0.680611 0 + outer loop + vertex 43.3873 -23.2523 -0.1 + vertex 43.6239 -23.5069 0 + vertex 43.6239 -23.5069 -0.1 + endloop + endfacet + facet normal 0.659068 0.752084 -0 + outer loop + vertex 43.3873 -23.2523 -0.1 + vertex 43.1493 -23.0437 0 + vertex 43.3873 -23.2523 0 + endloop + endfacet + facet normal 0.659068 0.752084 0 + outer loop + vertex 43.1493 -23.0437 0 + vertex 43.3873 -23.2523 -0.1 + vertex 43.1493 -23.0437 -0.1 + endloop + endfacet + facet normal 0.55411 0.832444 -0 + outer loop + vertex 43.1493 -23.0437 -0.1 + vertex 42.9376 -22.9028 0 + vertex 43.1493 -23.0437 0 + endloop + endfacet + facet normal 0.55411 0.832444 0 + outer loop + vertex 42.9376 -22.9028 0 + vertex 43.1493 -23.0437 -0.1 + vertex 42.9376 -22.9028 -0.1 + endloop + endfacet + facet normal 0.402192 0.915555 -0 + outer loop + vertex 42.9376 -22.9028 -0.1 + vertex 42.8503 -22.8644 0 + vertex 42.9376 -22.9028 0 + endloop + endfacet + facet normal 0.402192 0.915555 0 + outer loop + vertex 42.8503 -22.8644 0 + vertex 42.9376 -22.9028 -0.1 + vertex 42.8503 -22.8644 -0.1 + endloop + endfacet + facet normal 0.186876 0.982384 -0 + outer loop + vertex 42.8503 -22.8644 -0.1 + vertex 42.7799 -22.851 0 + vertex 42.8503 -22.8644 0 + endloop + endfacet + facet normal 0.186876 0.982384 0 + outer loop + vertex 42.7799 -22.851 0 + vertex 42.8503 -22.8644 -0.1 + vertex 42.7799 -22.851 -0.1 + endloop + endfacet + facet normal -0.254315 0.967121 0 + outer loop + vertex 42.7799 -22.851 -0.1 + vertex 42.6968 -22.8729 0 + vertex 42.7799 -22.851 0 + endloop + endfacet + facet normal -0.254315 0.967121 0 + outer loop + vertex 42.6968 -22.8729 0 + vertex 42.7799 -22.851 -0.1 + vertex 42.6968 -22.8729 -0.1 + endloop + endfacet + facet normal -0.451219 0.892413 0 + outer loop + vertex 42.6968 -22.8729 -0.1 + vertex 42.5728 -22.9356 0 + vertex 42.6968 -22.8729 0 + endloop + endfacet + facet normal -0.451219 0.892413 0 + outer loop + vertex 42.5728 -22.9356 0 + vertex 42.6968 -22.8729 -0.1 + vertex 42.5728 -22.9356 -0.1 + endloop + endfacet + facet normal -0.553713 0.832708 0 + outer loop + vertex 42.5728 -22.9356 -0.1 + vertex 42.2267 -23.1657 0 + vertex 42.5728 -22.9356 0 + endloop + endfacet + facet normal -0.553713 0.832708 0 + outer loop + vertex 42.2267 -23.1657 0 + vertex 42.5728 -22.9356 -0.1 + vertex 42.2267 -23.1657 -0.1 + endloop + endfacet + facet normal -0.614835 0.788656 0 + outer loop + vertex 42.2267 -23.1657 -0.1 + vertex 41.7898 -23.5063 0 + vertex 42.2267 -23.1657 0 + endloop + endfacet + facet normal -0.614835 0.788656 0 + outer loop + vertex 41.7898 -23.5063 0 + vertex 42.2267 -23.1657 -0.1 + vertex 41.7898 -23.5063 -0.1 + endloop + endfacet + facet normal -0.655263 0.755401 0 + outer loop + vertex 41.7898 -23.5063 -0.1 + vertex 41.3103 -23.9223 0 + vertex 41.7898 -23.5063 0 + endloop + endfacet + facet normal -0.655263 0.755401 0 + outer loop + vertex 41.3103 -23.9223 0 + vertex 41.7898 -23.5063 -0.1 + vertex 41.3103 -23.9223 -0.1 + endloop + endfacet + facet normal -0.681106 0.732185 0 + outer loop + vertex 41.3103 -23.9223 -0.1 + vertex 40.922 -24.2835 0 + vertex 41.3103 -23.9223 0 + endloop + endfacet + facet normal -0.681106 0.732185 0 + outer loop + vertex 40.922 -24.2835 0 + vertex 41.3103 -23.9223 -0.1 + vertex 40.922 -24.2835 -0.1 + endloop + endfacet + facet normal -0.723872 0.689934 0 + outer loop + vertex 40.604 -24.6171 -0.1 + vertex 40.922 -24.2835 0 + vertex 40.922 -24.2835 -0.1 + endloop + endfacet + facet normal -0.723872 0.689934 0 + outer loop + vertex 40.922 -24.2835 0 + vertex 40.604 -24.6171 -0.1 + vertex 40.604 -24.6171 0 + endloop + endfacet + facet normal -0.795563 0.60587 0 + outer loop + vertex 40.3218 -24.9877 -0.1 + vertex 40.604 -24.6171 0 + vertex 40.604 -24.6171 -0.1 + endloop + endfacet + facet normal -0.795563 0.60587 0 + outer loop + vertex 40.604 -24.6171 0 + vertex 40.3218 -24.9877 -0.1 + vertex 40.3218 -24.9877 0 + endloop + endfacet + facet normal -0.859211 0.511621 0 + outer loop + vertex 40.0406 -25.46 -0.1 + vertex 40.3218 -24.9877 0 + vertex 40.3218 -24.9877 -0.1 + endloop + endfacet + facet normal -0.859211 0.511621 0 + outer loop + vertex 40.3218 -24.9877 0 + vertex 40.0406 -25.46 -0.1 + vertex 40.0406 -25.46 0 + endloop + endfacet + facet normal -0.896877 0.442281 0 + outer loop + vertex 39.7256 -26.0988 -0.1 + vertex 40.0406 -25.46 0 + vertex 40.0406 -25.46 -0.1 + endloop + endfacet + facet normal -0.896877 0.442281 0 + outer loop + vertex 40.0406 -25.46 0 + vertex 39.7256 -26.0988 -0.1 + vertex 39.7256 -26.0988 0 + endloop + endfacet + facet normal -0.915036 0.403372 0 + outer loop + vertex 39.342 -26.9688 -0.1 + vertex 39.7256 -26.0988 0 + vertex 39.7256 -26.0988 -0.1 + endloop + endfacet + facet normal -0.915036 0.403372 0 + outer loop + vertex 39.7256 -26.0988 0 + vertex 39.342 -26.9688 -0.1 + vertex 39.342 -26.9688 0 + endloop + endfacet + facet normal -0.924339 0.381572 0 + outer loop + vertex 38.2305 -29.6614 -0.1 + vertex 39.342 -26.9688 0 + vertex 39.342 -26.9688 -0.1 + endloop + endfacet + facet normal -0.924339 0.381572 0 + outer loop + vertex 39.342 -26.9688 0 + vertex 38.2305 -29.6614 -0.1 + vertex 38.2305 -29.6614 0 + endloop + endfacet + facet normal -0.929232 0.369498 0 + outer loop + vertex 37.444 -31.6395 -0.1 + vertex 38.2305 -29.6614 0 + vertex 38.2305 -29.6614 -0.1 + endloop + endfacet + facet normal -0.929232 0.369498 0 + outer loop + vertex 38.2305 -29.6614 0 + vertex 37.444 -31.6395 -0.1 + vertex 37.444 -31.6395 0 + endloop + endfacet + facet normal -0.937221 0.348736 0 + outer loop + vertex 36.8389 -33.2656 -0.1 + vertex 37.444 -31.6395 0 + vertex 37.444 -31.6395 -0.1 + endloop + endfacet + facet normal -0.937221 0.348736 0 + outer loop + vertex 37.444 -31.6395 0 + vertex 36.8389 -33.2656 -0.1 + vertex 36.8389 -33.2656 0 + endloop + endfacet + facet normal -0.949427 0.313989 0 + outer loop + vertex 36.4479 -34.448 -0.1 + vertex 36.8389 -33.2656 0 + vertex 36.8389 -33.2656 -0.1 + endloop + endfacet + facet normal -0.949427 0.313989 0 + outer loop + vertex 36.8389 -33.2656 0 + vertex 36.4479 -34.448 -0.1 + vertex 36.4479 -34.448 0 + endloop + endfacet + facet normal -0.966574 0.256387 0 + outer loop + vertex 36.3428 -34.844 -0.1 + vertex 36.4479 -34.448 0 + vertex 36.4479 -34.448 -0.1 + endloop + endfacet + facet normal -0.966574 0.256387 0 + outer loop + vertex 36.4479 -34.448 0 + vertex 36.3428 -34.844 -0.1 + vertex 36.3428 -34.844 0 + endloop + endfacet + facet normal -0.987922 0.154951 0 + outer loop + vertex 36.3035 -35.0946 -0.1 + vertex 36.3428 -34.844 0 + vertex 36.3428 -34.844 -0.1 + endloop + endfacet + facet normal -0.987922 0.154951 0 + outer loop + vertex 36.3428 -34.844 0 + vertex 36.3035 -35.0946 -0.1 + vertex 36.3035 -35.0946 0 + endloop + endfacet + facet normal -0.999846 0.0175753 0 + outer loop + vertex 36.2992 -35.3418 -0.1 + vertex 36.3035 -35.0946 0 + vertex 36.3035 -35.0946 -0.1 + endloop + endfacet + facet normal -0.999846 0.0175753 0 + outer loop + vertex 36.3035 -35.0946 0 + vertex 36.2992 -35.3418 -0.1 + vertex 36.2992 -35.3418 0 + endloop + endfacet + facet normal -0.99871 -0.0507764 0 + outer loop + vertex 36.3089 -35.532 -0.1 + vertex 36.2992 -35.3418 0 + vertex 36.2992 -35.3418 -0.1 + endloop + endfacet + facet normal -0.99871 -0.0507764 0 + outer loop + vertex 36.2992 -35.3418 0 + vertex 36.3089 -35.532 -0.1 + vertex 36.3089 -35.532 0 + endloop + endfacet + facet normal -0.974112 -0.226068 0 + outer loop + vertex 36.3422 -35.6758 -0.1 + vertex 36.3089 -35.532 0 + vertex 36.3089 -35.532 -0.1 + endloop + endfacet + facet normal -0.974112 -0.226068 0 + outer loop + vertex 36.3089 -35.532 0 + vertex 36.3422 -35.6758 -0.1 + vertex 36.3422 -35.6758 0 + endloop + endfacet + facet normal -0.84992 -0.526911 0 + outer loop + vertex 36.4089 -35.7834 -0.1 + vertex 36.3422 -35.6758 0 + vertex 36.3422 -35.6758 -0.1 + endloop + endfacet + facet normal -0.84992 -0.526911 0 + outer loop + vertex 36.3422 -35.6758 0 + vertex 36.4089 -35.7834 -0.1 + vertex 36.4089 -35.7834 0 + endloop + endfacet + facet normal -0.59793 -0.801548 0 + outer loop + vertex 36.4089 -35.7834 -0.1 + vertex 36.5187 -35.8653 0 + vertex 36.4089 -35.7834 0 + endloop + endfacet + facet normal -0.59793 -0.801548 -0 + outer loop + vertex 36.5187 -35.8653 0 + vertex 36.4089 -35.7834 -0.1 + vertex 36.5187 -35.8653 -0.1 + endloop + endfacet + facet normal -0.37896 -0.925413 0 + outer loop + vertex 36.5187 -35.8653 -0.1 + vertex 36.6812 -35.9318 0 + vertex 36.5187 -35.8653 0 + endloop + endfacet + facet normal -0.37896 -0.925413 -0 + outer loop + vertex 36.6812 -35.9318 0 + vertex 36.5187 -35.8653 -0.1 + vertex 36.6812 -35.9318 -0.1 + endloop + endfacet + facet normal -0.239239 -0.970961 0 + outer loop + vertex 36.6812 -35.9318 -0.1 + vertex 37.203 -36.0604 0 + vertex 36.6812 -35.9318 0 + endloop + endfacet + facet normal -0.239239 -0.970961 -0 + outer loop + vertex 37.203 -36.0604 0 + vertex 36.6812 -35.9318 -0.1 + vertex 37.203 -36.0604 -0.1 + endloop + endfacet + facet normal -0.245847 -0.969309 0 + outer loop + vertex 37.203 -36.0604 -0.1 + vertex 37.6954 -36.1853 0 + vertex 37.203 -36.0604 0 + endloop + endfacet + facet normal -0.245847 -0.969309 -0 + outer loop + vertex 37.6954 -36.1853 0 + vertex 37.203 -36.0604 -0.1 + vertex 37.6954 -36.1853 -0.1 + endloop + endfacet + facet normal -0.369675 -0.929161 0 + outer loop + vertex 37.6954 -36.1853 -0.1 + vertex 37.8576 -36.2498 0 + vertex 37.6954 -36.1853 0 + endloop + endfacet + facet normal -0.369675 -0.929161 -0 + outer loop + vertex 37.8576 -36.2498 0 + vertex 37.6954 -36.1853 -0.1 + vertex 37.8576 -36.2498 -0.1 + endloop + endfacet + facet normal -0.539517 -0.841975 0 + outer loop + vertex 37.8576 -36.2498 -0.1 + vertex 37.9736 -36.3241 0 + vertex 37.8576 -36.2498 0 + endloop + endfacet + facet normal -0.539517 -0.841975 -0 + outer loop + vertex 37.9736 -36.3241 0 + vertex 37.8576 -36.2498 -0.1 + vertex 37.9736 -36.3241 -0.1 + endloop + endfacet + facet normal -0.760366 -0.649494 0 + outer loop + vertex 38.0509 -36.4146 -0.1 + vertex 37.9736 -36.3241 0 + vertex 37.9736 -36.3241 -0.1 + endloop + endfacet + facet normal -0.760366 -0.649494 0 + outer loop + vertex 37.9736 -36.3241 0 + vertex 38.0509 -36.4146 -0.1 + vertex 38.0509 -36.4146 0 + endloop + endfacet + facet normal -0.926147 -0.377163 0 + outer loop + vertex 38.0969 -36.5276 -0.1 + vertex 38.0509 -36.4146 0 + vertex 38.0509 -36.4146 -0.1 + endloop + endfacet + facet normal -0.926147 -0.377163 0 + outer loop + vertex 38.0509 -36.4146 0 + vertex 38.0969 -36.5276 -0.1 + vertex 38.0969 -36.5276 0 + endloop + endfacet + facet normal -0.988006 -0.154417 0 + outer loop + vertex 38.119 -36.6694 -0.1 + vertex 38.0969 -36.5276 0 + vertex 38.0969 -36.5276 -0.1 + endloop + endfacet + facet normal -0.988006 -0.154417 0 + outer loop + vertex 38.0969 -36.5276 0 + vertex 38.119 -36.6694 -0.1 + vertex 38.119 -36.6694 0 + endloop + endfacet + facet normal -0.999475 -0.0324031 0 + outer loop + vertex 38.1248 -36.8464 -0.1 + vertex 38.119 -36.6694 0 + vertex 38.119 -36.6694 -0.1 + endloop + endfacet + facet normal -0.999475 -0.0324031 0 + outer loop + vertex 38.119 -36.6694 0 + vertex 38.1248 -36.8464 -0.1 + vertex 38.1248 -36.8464 0 + endloop + endfacet + facet normal -0.99859 0.0530808 0 + outer loop + vertex 38.103 -37.2562 -0.1 + vertex 38.1248 -36.8464 0 + vertex 38.1248 -36.8464 -0.1 + endloop + endfacet + facet normal -0.99859 0.0530808 0 + outer loop + vertex 38.1248 -36.8464 0 + vertex 38.103 -37.2562 -0.1 + vertex 38.103 -37.2562 0 + endloop + endfacet + facet normal -0.977614 0.210405 0 + outer loop + vertex 38.0668 -37.4245 -0.1 + vertex 38.103 -37.2562 0 + vertex 38.103 -37.2562 -0.1 + endloop + endfacet + facet normal -0.977614 0.210405 0 + outer loop + vertex 38.103 -37.2562 0 + vertex 38.0668 -37.4245 -0.1 + vertex 38.0668 -37.4245 0 + endloop + endfacet + facet normal -0.922461 0.38609 0 + outer loop + vertex 38.0057 -37.5705 -0.1 + vertex 38.0668 -37.4245 0 + vertex 38.0668 -37.4245 -0.1 + endloop + endfacet + facet normal -0.922461 0.38609 0 + outer loop + vertex 38.0668 -37.4245 0 + vertex 38.0057 -37.5705 -0.1 + vertex 38.0057 -37.5705 0 + endloop + endfacet + facet normal -0.806037 0.591865 0 + outer loop + vertex 37.9137 -37.6957 -0.1 + vertex 38.0057 -37.5705 0 + vertex 38.0057 -37.5705 -0.1 + endloop + endfacet + facet normal -0.806037 0.591865 0 + outer loop + vertex 38.0057 -37.5705 0 + vertex 37.9137 -37.6957 -0.1 + vertex 37.9137 -37.6957 0 + endloop + endfacet + facet normal -0.635642 0.771984 0 + outer loop + vertex 37.9137 -37.6957 -0.1 + vertex 37.7849 -37.8018 0 + vertex 37.9137 -37.6957 0 + endloop + endfacet + facet normal -0.635642 0.771984 0 + outer loop + vertex 37.7849 -37.8018 0 + vertex 37.9137 -37.6957 -0.1 + vertex 37.7849 -37.8018 -0.1 + endloop + endfacet + facet normal -0.458146 0.888877 0 + outer loop + vertex 37.7849 -37.8018 -0.1 + vertex 37.6132 -37.8903 0 + vertex 37.7849 -37.8018 0 + endloop + endfacet + facet normal -0.458146 0.888877 0 + outer loop + vertex 37.6132 -37.8903 0 + vertex 37.7849 -37.8018 -0.1 + vertex 37.6132 -37.8903 -0.1 + endloop + endfacet + facet normal -0.312246 0.950001 0 + outer loop + vertex 37.6132 -37.8903 -0.1 + vertex 37.3927 -37.9628 0 + vertex 37.6132 -37.8903 0 + endloop + endfacet + facet normal -0.312246 0.950001 0 + outer loop + vertex 37.3927 -37.9628 0 + vertex 37.6132 -37.8903 -0.1 + vertex 37.3927 -37.9628 -0.1 + endloop + endfacet + facet normal -0.206263 0.978497 0 + outer loop + vertex 37.3927 -37.9628 -0.1 + vertex 37.1174 -38.0208 0 + vertex 37.3927 -37.9628 0 + endloop + endfacet + facet normal -0.206263 0.978497 0 + outer loop + vertex 37.1174 -38.0208 0 + vertex 37.3927 -37.9628 -0.1 + vertex 37.1174 -38.0208 -0.1 + endloop + endfacet + facet normal -0.133215 0.991087 0 + outer loop + vertex 37.1174 -38.0208 -0.1 + vertex 36.7812 -38.066 0 + vertex 37.1174 -38.0208 0 + endloop + endfacet + facet normal -0.133215 0.991087 0 + outer loop + vertex 36.7812 -38.066 0 + vertex 37.1174 -38.0208 -0.1 + vertex 36.7812 -38.066 -0.1 + endloop + endfacet + facet normal -0.0659814 0.997821 0 + outer loop + vertex 36.7812 -38.066 -0.1 + vertex 35.9024 -38.1241 0 + vertex 36.7812 -38.066 0 + endloop + endfacet + facet normal -0.0659814 0.997821 0 + outer loop + vertex 35.9024 -38.1241 0 + vertex 36.7812 -38.066 -0.1 + vertex 35.9024 -38.1241 -0.1 + endloop + endfacet + facet normal -0.0214493 0.99977 0 + outer loop + vertex 35.9024 -38.1241 -0.1 + vertex 34.7085 -38.1497 0 + vertex 35.9024 -38.1241 0 + endloop + endfacet + facet normal -0.0214493 0.99977 0 + outer loop + vertex 34.7085 -38.1497 0 + vertex 35.9024 -38.1241 -0.1 + vertex 34.7085 -38.1497 -0.1 + endloop + endfacet + facet normal -0.00368212 0.999993 0 + outer loop + vertex 34.7085 -38.1497 -0.1 + vertex 33.1514 -38.1555 0 + vertex 34.7085 -38.1497 0 + endloop + endfacet + facet normal -0.00368212 0.999993 0 + outer loop + vertex 33.1514 -38.1555 0 + vertex 34.7085 -38.1497 -0.1 + vertex 33.1514 -38.1555 -0.1 + endloop + endfacet + facet normal 0.00738333 0.999973 -0 + outer loop + vertex 33.1514 -38.1555 -0.1 + vertex 31.1824 -38.1409 0 + vertex 33.1514 -38.1555 0 + endloop + endfacet + facet normal 0.00738333 0.999973 0 + outer loop + vertex 31.1824 -38.1409 0 + vertex 33.1514 -38.1555 -0.1 + vertex 31.1824 -38.1409 -0.1 + endloop + endfacet + facet normal 0.0337924 0.999429 -0 + outer loop + vertex 31.1824 -38.1409 -0.1 + vertex 29.8192 -38.0948 0 + vertex 31.1824 -38.1409 0 + endloop + endfacet + facet normal 0.0337924 0.999429 0 + outer loop + vertex 29.8192 -38.0948 0 + vertex 31.1824 -38.1409 -0.1 + vertex 29.8192 -38.0948 -0.1 + endloop + endfacet + facet normal 0.0757553 0.997126 -0 + outer loop + vertex 29.8192 -38.0948 -0.1 + vertex 29.3448 -38.0588 0 + vertex 29.8192 -38.0948 0 + endloop + endfacet + facet normal 0.0757553 0.997126 0 + outer loop + vertex 29.3448 -38.0588 0 + vertex 29.8192 -38.0948 -0.1 + vertex 29.3448 -38.0588 -0.1 + endloop + endfacet + facet normal 0.129569 0.99157 -0 + outer loop + vertex 29.3448 -38.0588 -0.1 + vertex 28.9979 -38.0135 0 + vertex 29.3448 -38.0588 0 + endloop + endfacet + facet normal 0.129569 0.99157 0 + outer loop + vertex 28.9979 -38.0135 0 + vertex 29.3448 -38.0588 -0.1 + vertex 28.9979 -38.0135 -0.1 + endloop + endfacet + facet normal 0.235468 0.971882 -0 + outer loop + vertex 28.9979 -38.0135 -0.1 + vertex 28.7706 -37.9584 0 + vertex 28.9979 -38.0135 0 + endloop + endfacet + facet normal 0.235468 0.971882 0 + outer loop + vertex 28.7706 -37.9584 0 + vertex 28.9979 -38.0135 -0.1 + vertex 28.7706 -37.9584 -0.1 + endloop + endfacet + facet normal 0.491281 0.871001 -0 + outer loop + vertex 28.7706 -37.9584 -0.1 + vertex 28.6548 -37.8931 0 + vertex 28.7706 -37.9584 0 + endloop + endfacet + facet normal 0.491281 0.871001 0 + outer loop + vertex 28.6548 -37.8931 0 + vertex 28.7706 -37.9584 -0.1 + vertex 28.6548 -37.8931 -0.1 + endloop + endfacet + facet normal 0.794168 0.607698 0 + outer loop + vertex 28.6548 -37.8931 0 + vertex 28.5587 -37.7674 -0.1 + vertex 28.5587 -37.7674 0 + endloop + endfacet + facet normal 0.794168 0.607698 0 + outer loop + vertex 28.5587 -37.7674 -0.1 + vertex 28.6548 -37.8931 0 + vertex 28.6548 -37.8931 -0.1 + endloop + endfacet + facet normal 0.879213 0.47643 0 + outer loop + vertex 28.5587 -37.7674 0 + vertex 28.4883 -37.6376 -0.1 + vertex 28.4883 -37.6376 0 + endloop + endfacet + facet normal 0.879213 0.47643 0 + outer loop + vertex 28.4883 -37.6376 -0.1 + vertex 28.5587 -37.7674 0 + vertex 28.5587 -37.7674 -0.1 + endloop + endfacet + facet normal 0.946363 0.323104 0 + outer loop + vertex 28.4883 -37.6376 0 + vertex 28.443 -37.5048 -0.1 + vertex 28.443 -37.5048 0 + endloop + endfacet + facet normal 0.946363 0.323104 0 + outer loop + vertex 28.443 -37.5048 -0.1 + vertex 28.4883 -37.6376 0 + vertex 28.4883 -37.6376 -0.1 + endloop + endfacet + facet normal 0.987941 0.154833 0 + outer loop + vertex 28.443 -37.5048 0 + vertex 28.4219 -37.3704 -0.1 + vertex 28.4219 -37.3704 0 + endloop + endfacet + facet normal 0.987941 0.154833 0 + outer loop + vertex 28.4219 -37.3704 -0.1 + vertex 28.443 -37.5048 0 + vertex 28.443 -37.5048 -0.1 + endloop + endfacet + facet normal 0.99984 -0.0178826 0 + outer loop + vertex 28.4219 -37.3704 0 + vertex 28.4243 -37.2355 -0.1 + vertex 28.4243 -37.2355 0 + endloop + endfacet + facet normal 0.99984 -0.0178826 0 + outer loop + vertex 28.4243 -37.2355 -0.1 + vertex 28.4219 -37.3704 0 + vertex 28.4219 -37.3704 -0.1 + endloop + endfacet + facet normal 0.982895 -0.184165 0 + outer loop + vertex 28.4243 -37.2355 0 + vertex 28.4495 -37.1014 -0.1 + vertex 28.4495 -37.1014 0 + endloop + endfacet + facet normal 0.982895 -0.184165 0 + outer loop + vertex 28.4495 -37.1014 -0.1 + vertex 28.4243 -37.2355 0 + vertex 28.4243 -37.2355 -0.1 + endloop + endfacet + facet normal 0.941957 -0.335735 0 + outer loop + vertex 28.4495 -37.1014 0 + vertex 28.4965 -36.9693 -0.1 + vertex 28.4965 -36.9693 0 + endloop + endfacet + facet normal 0.941957 -0.335735 0 + outer loop + vertex 28.4965 -36.9693 -0.1 + vertex 28.4495 -37.1014 0 + vertex 28.4495 -37.1014 -0.1 + endloop + endfacet + facet normal 0.883597 -0.468248 0 + outer loop + vertex 28.4965 -36.9693 0 + vertex 28.5648 -36.8405 -0.1 + vertex 28.5648 -36.8405 0 + endloop + endfacet + facet normal 0.883597 -0.468248 0 + outer loop + vertex 28.5648 -36.8405 -0.1 + vertex 28.4965 -36.9693 0 + vertex 28.4965 -36.9693 -0.1 + endloop + endfacet + facet normal 0.814058 -0.580783 0 + outer loop + vertex 28.5648 -36.8405 0 + vertex 28.6534 -36.7163 -0.1 + vertex 28.6534 -36.7163 0 + endloop + endfacet + facet normal 0.814058 -0.580783 0 + outer loop + vertex 28.6534 -36.7163 -0.1 + vertex 28.5648 -36.8405 0 + vertex 28.5648 -36.8405 -0.1 + endloop + endfacet + facet normal 0.738176 -0.674608 0 + outer loop + vertex 28.6534 -36.7163 0 + vertex 28.7617 -36.5978 -0.1 + vertex 28.7617 -36.5978 0 + endloop + endfacet + facet normal 0.738176 -0.674608 0 + outer loop + vertex 28.7617 -36.5978 -0.1 + vertex 28.6534 -36.7163 0 + vertex 28.6534 -36.7163 -0.1 + endloop + endfacet + facet normal 0.659231 -0.75194 0 + outer loop + vertex 28.7617 -36.5978 -0.1 + vertex 28.8888 -36.4863 0 + vertex 28.7617 -36.5978 0 + endloop + endfacet + facet normal 0.659231 -0.75194 0 + outer loop + vertex 28.8888 -36.4863 0 + vertex 28.7617 -36.5978 -0.1 + vertex 28.8888 -36.4863 -0.1 + endloop + endfacet + facet normal 0.57926 -0.815143 0 + outer loop + vertex 28.8888 -36.4863 -0.1 + vertex 29.034 -36.3831 0 + vertex 28.8888 -36.4863 0 + endloop + endfacet + facet normal 0.57926 -0.815143 0 + outer loop + vertex 29.034 -36.3831 0 + vertex 28.8888 -36.4863 -0.1 + vertex 29.034 -36.3831 -0.1 + endloop + endfacet + facet normal 0.499403 -0.86637 0 + outer loop + vertex 29.034 -36.3831 -0.1 + vertex 29.1966 -36.2895 0 + vertex 29.034 -36.3831 0 + endloop + endfacet + facet normal 0.499403 -0.86637 0 + outer loop + vertex 29.1966 -36.2895 0 + vertex 29.034 -36.3831 -0.1 + vertex 29.1966 -36.2895 -0.1 + endloop + endfacet + facet normal 0.420274 -0.907397 0 + outer loop + vertex 29.1966 -36.2895 -0.1 + vertex 29.3757 -36.2065 0 + vertex 29.1966 -36.2895 0 + endloop + endfacet + facet normal 0.420274 -0.907397 0 + outer loop + vertex 29.3757 -36.2065 0 + vertex 29.1966 -36.2895 -0.1 + vertex 29.3757 -36.2065 -0.1 + endloop + endfacet + facet normal 0.34216 -0.939642 0 + outer loop + vertex 29.3757 -36.2065 -0.1 + vertex 29.5705 -36.1356 0 + vertex 29.3757 -36.2065 0 + endloop + endfacet + facet normal 0.34216 -0.939642 0 + outer loop + vertex 29.5705 -36.1356 0 + vertex 29.3757 -36.2065 -0.1 + vertex 29.5705 -36.1356 -0.1 + endloop + endfacet + facet normal 0.265166 -0.964203 0 + outer loop + vertex 29.5705 -36.1356 -0.1 + vertex 29.7804 -36.0779 0 + vertex 29.5705 -36.1356 0 + endloop + endfacet + facet normal 0.265166 -0.964203 0 + outer loop + vertex 29.7804 -36.0779 0 + vertex 29.5705 -36.1356 -0.1 + vertex 29.7804 -36.0779 -0.1 + endloop + endfacet + facet normal 0.237962 -0.971274 0 + outer loop + vertex 29.7804 -36.0779 -0.1 + vertex 30.4037 -35.9251 0 + vertex 29.7804 -36.0779 0 + endloop + endfacet + facet normal 0.237962 -0.971274 0 + outer loop + vertex 30.4037 -35.9251 0 + vertex 29.7804 -36.0779 -0.1 + vertex 30.4037 -35.9251 -0.1 + endloop + endfacet + facet normal 0.297523 -0.954715 0 + outer loop + vertex 30.4037 -35.9251 -0.1 + vertex 30.6629 -35.8443 0 + vertex 30.4037 -35.9251 0 + endloop + endfacet + facet normal 0.297523 -0.954715 0 + outer loop + vertex 30.6629 -35.8443 0 + vertex 30.4037 -35.9251 -0.1 + vertex 30.6629 -35.8443 -0.1 + endloop + endfacet + facet normal 0.380574 -0.92475 0 + outer loop + vertex 30.6629 -35.8443 -0.1 + vertex 30.8955 -35.7486 0 + vertex 30.6629 -35.8443 0 + endloop + endfacet + facet normal 0.380574 -0.92475 0 + outer loop + vertex 30.8955 -35.7486 0 + vertex 30.6629 -35.8443 -0.1 + vertex 30.8955 -35.7486 -0.1 + endloop + endfacet + facet normal 0.491191 -0.871052 0 + outer loop + vertex 30.8955 -35.7486 -0.1 + vertex 31.1075 -35.6291 0 + vertex 30.8955 -35.7486 0 + endloop + endfacet + facet normal 0.491191 -0.871052 0 + outer loop + vertex 31.1075 -35.6291 0 + vertex 30.8955 -35.7486 -0.1 + vertex 31.1075 -35.6291 -0.1 + endloop + endfacet + facet normal 0.610497 -0.792019 0 + outer loop + vertex 31.1075 -35.6291 -0.1 + vertex 31.3052 -35.4767 0 + vertex 31.1075 -35.6291 0 + endloop + endfacet + facet normal 0.610497 -0.792019 0 + outer loop + vertex 31.3052 -35.4767 0 + vertex 31.1075 -35.6291 -0.1 + vertex 31.3052 -35.4767 -0.1 + endloop + endfacet + facet normal 0.71556 -0.698551 0 + outer loop + vertex 31.3052 -35.4767 0 + vertex 31.4948 -35.2825 -0.1 + vertex 31.4948 -35.2825 0 + endloop + endfacet + facet normal 0.71556 -0.698551 0 + outer loop + vertex 31.4948 -35.2825 -0.1 + vertex 31.3052 -35.4767 0 + vertex 31.3052 -35.4767 -0.1 + endloop + endfacet + facet normal 0.793854 -0.608109 0 + outer loop + vertex 31.4948 -35.2825 0 + vertex 31.6824 -35.0376 -0.1 + vertex 31.6824 -35.0376 0 + endloop + endfacet + facet normal 0.793854 -0.608109 0 + outer loop + vertex 31.6824 -35.0376 -0.1 + vertex 31.4948 -35.2825 0 + vertex 31.4948 -35.2825 -0.1 + endloop + endfacet + facet normal 0.846168 -0.532916 0 + outer loop + vertex 31.6824 -35.0376 0 + vertex 31.8743 -34.7329 -0.1 + vertex 31.8743 -34.7329 0 + endloop + endfacet + facet normal 0.846168 -0.532916 0 + outer loop + vertex 31.8743 -34.7329 -0.1 + vertex 31.6824 -35.0376 0 + vertex 31.6824 -35.0376 -0.1 + endloop + endfacet + facet normal 0.879213 -0.47643 0 + outer loop + vertex 31.8743 -34.7329 0 + vertex 32.0766 -34.3595 -0.1 + vertex 32.0766 -34.3595 0 + endloop + endfacet + facet normal 0.879213 -0.47643 0 + outer loop + vertex 32.0766 -34.3595 -0.1 + vertex 31.8743 -34.7329 0 + vertex 31.8743 -34.7329 -0.1 + endloop + endfacet + facet normal 0.906414 -0.422389 0 + outer loop + vertex 32.0766 -34.3595 0 + vertex 32.5373 -33.371 -0.1 + vertex 32.5373 -33.371 0 + endloop + endfacet + facet normal 0.906414 -0.422389 0 + outer loop + vertex 32.5373 -33.371 -0.1 + vertex 32.0766 -34.3595 0 + vertex 32.0766 -34.3595 -0.1 + endloop + endfacet + facet normal 0.921762 -0.387755 0 + outer loop + vertex 32.5373 -33.371 0 + vertex 33.1139 -32.0001 -0.1 + vertex 33.1139 -32.0001 0 + endloop + endfacet + facet normal 0.921762 -0.387755 0 + outer loop + vertex 33.1139 -32.0001 -0.1 + vertex 32.5373 -33.371 0 + vertex 32.5373 -33.371 -0.1 + endloop + endfacet + facet normal 0.926317 -0.376745 0 + outer loop + vertex 33.1139 -32.0001 0 + vertex 33.8561 -30.1753 -0.1 + vertex 33.8561 -30.1753 0 + endloop + endfacet + facet normal 0.926317 -0.376745 0 + outer loop + vertex 33.8561 -30.1753 -0.1 + vertex 33.1139 -32.0001 0 + vertex 33.1139 -32.0001 -0.1 + endloop + endfacet + facet normal 0.926524 -0.376237 0 + outer loop + vertex 33.8561 -30.1753 0 + vertex 35.3422 -26.5156 -0.1 + vertex 35.3422 -26.5156 0 + endloop + endfacet + facet normal 0.926524 -0.376237 0 + outer loop + vertex 35.3422 -26.5156 -0.1 + vertex 33.8561 -30.1753 0 + vertex 33.8561 -30.1753 -0.1 + endloop + endfacet + facet normal 0.930815 -0.36549 0 + outer loop + vertex 35.3422 -26.5156 0 + vertex 35.6833 -25.6471 -0.1 + vertex 35.6833 -25.6471 0 + endloop + endfacet + facet normal 0.930815 -0.36549 0 + outer loop + vertex 35.6833 -25.6471 -0.1 + vertex 35.3422 -26.5156 0 + vertex 35.3422 -26.5156 -0.1 + endloop + endfacet + facet normal 0.940922 -0.338624 0 + outer loop + vertex 35.6833 -25.6471 0 + vertex 35.957 -24.8864 -0.1 + vertex 35.957 -24.8864 0 + endloop + endfacet + facet normal 0.940922 -0.338624 0 + outer loop + vertex 35.957 -24.8864 -0.1 + vertex 35.6833 -25.6471 0 + vertex 35.6833 -25.6471 -0.1 + endloop + endfacet + facet normal 0.953192 -0.302366 0 + outer loop + vertex 35.957 -24.8864 0 + vertex 36.1622 -24.2394 -0.1 + vertex 36.1622 -24.2394 0 + endloop + endfacet + facet normal 0.953192 -0.302366 0 + outer loop + vertex 36.1622 -24.2394 -0.1 + vertex 35.957 -24.8864 0 + vertex 35.957 -24.8864 -0.1 + endloop + endfacet + facet normal 0.968572 -0.248734 0 + outer loop + vertex 36.1622 -24.2394 0 + vertex 36.2977 -23.7121 -0.1 + vertex 36.2977 -23.7121 0 + endloop + endfacet + facet normal 0.968572 -0.248734 0 + outer loop + vertex 36.2977 -23.7121 -0.1 + vertex 36.1622 -24.2394 0 + vertex 36.1622 -24.2394 -0.1 + endloop + endfacet + facet normal 0.987422 -0.158107 0 + outer loop + vertex 36.2977 -23.7121 0 + vertex 36.362 -23.3104 -0.1 + vertex 36.362 -23.3104 0 + endloop + endfacet + facet normal 0.987422 -0.158107 0 + outer loop + vertex 36.362 -23.3104 -0.1 + vertex 36.2977 -23.7121 0 + vertex 36.2977 -23.7121 -0.1 + endloop + endfacet + facet normal 0.999436 -0.0335772 0 + outer loop + vertex 36.362 -23.3104 0 + vertex 36.3671 -23.1585 -0.1 + vertex 36.3671 -23.1585 0 + endloop + endfacet + facet normal 0.999436 -0.0335772 0 + outer loop + vertex 36.3671 -23.1585 -0.1 + vertex 36.362 -23.3104 0 + vertex 36.362 -23.3104 -0.1 + endloop + endfacet + facet normal 0.993888 0.110395 0 + outer loop + vertex 36.3671 -23.1585 0 + vertex 36.3539 -23.0402 -0.1 + vertex 36.3539 -23.0402 0 + endloop + endfacet + facet normal 0.993888 0.110395 0 + outer loop + vertex 36.3539 -23.0402 -0.1 + vertex 36.3671 -23.1585 0 + vertex 36.3671 -23.1585 -0.1 + endloop + endfacet + facet normal 0.93611 0.351708 0 + outer loop + vertex 36.3539 -23.0402 0 + vertex 36.3224 -22.9562 -0.1 + vertex 36.3224 -22.9562 0 + endloop + endfacet + facet normal 0.93611 0.351708 0 + outer loop + vertex 36.3224 -22.9562 -0.1 + vertex 36.3539 -23.0402 0 + vertex 36.3539 -23.0402 -0.1 + endloop + endfacet + facet normal 0.698293 0.715812 -0 + outer loop + vertex 36.3224 -22.9562 -0.1 + vertex 36.2723 -22.9073 0 + vertex 36.3224 -22.9562 0 + endloop + endfacet + facet normal 0.698293 0.715812 0 + outer loop + vertex 36.2723 -22.9073 0 + vertex 36.3224 -22.9562 -0.1 + vertex 36.2723 -22.9073 -0.1 + endloop + endfacet + facet normal 0.186395 0.982475 -0 + outer loop + vertex 36.2723 -22.9073 -0.1 + vertex 36.2034 -22.8943 0 + vertex 36.2723 -22.9073 0 + endloop + endfacet + facet normal 0.186395 0.982475 0 + outer loop + vertex 36.2034 -22.8943 0 + vertex 36.2723 -22.9073 -0.1 + vertex 36.2034 -22.8943 -0.1 + endloop + endfacet + facet normal -0.258789 0.965934 0 + outer loop + vertex 36.2034 -22.8943 -0.1 + vertex 36.1157 -22.9178 0 + vertex 36.2034 -22.8943 0 + endloop + endfacet + facet normal -0.258789 0.965934 0 + outer loop + vertex 36.1157 -22.9178 0 + vertex 36.2034 -22.8943 -0.1 + vertex 36.1157 -22.9178 -0.1 + endloop + endfacet + facet normal -0.248765 0.968564 0 + outer loop + vertex 36.1157 -22.9178 -0.1 + vertex 35.9442 -22.9618 0 + vertex 36.1157 -22.9178 0 + endloop + endfacet + facet normal -0.248765 0.968564 0 + outer loop + vertex 35.9442 -22.9618 0 + vertex 36.1157 -22.9178 -0.1 + vertex 35.9442 -22.9618 -0.1 + endloop + endfacet + facet normal -0.0720501 0.997401 0 + outer loop + vertex 35.9442 -22.9618 -0.1 + vertex 35.7166 -22.9783 0 + vertex 35.9442 -22.9618 0 + endloop + endfacet + facet normal -0.0720501 0.997401 0 + outer loop + vertex 35.7166 -22.9783 0 + vertex 35.9442 -22.9618 -0.1 + vertex 35.7166 -22.9783 -0.1 + endloop + endfacet + facet normal 0.0451334 0.998981 -0 + outer loop + vertex 35.7166 -22.9783 -0.1 + vertex 35.4626 -22.9668 0 + vertex 35.7166 -22.9783 0 + endloop + endfacet + facet normal 0.0451334 0.998981 0 + outer loop + vertex 35.4626 -22.9668 0 + vertex 35.7166 -22.9783 -0.1 + vertex 35.4626 -22.9668 -0.1 + endloop + endfacet + facet normal 0.156383 0.987697 -0 + outer loop + vertex 35.4626 -22.9668 -0.1 + vertex 35.2118 -22.9271 0 + vertex 35.4626 -22.9668 0 + endloop + endfacet + facet normal 0.156383 0.987697 0 + outer loop + vertex 35.2118 -22.9271 0 + vertex 35.4626 -22.9668 -0.1 + vertex 35.2118 -22.9271 -0.1 + endloop + endfacet + facet normal 0.299759 0.954015 -0 + outer loop + vertex 35.2118 -22.9271 -0.1 + vertex 34.9345 -22.8399 0 + vertex 35.2118 -22.9271 0 + endloop + endfacet + facet normal 0.299759 0.954015 0 + outer loop + vertex 34.9345 -22.8399 0 + vertex 35.2118 -22.9271 -0.1 + vertex 34.9345 -22.8399 -0.1 + endloop + endfacet + facet normal 0.486497 0.873682 -0 + outer loop + vertex 34.9345 -22.8399 -0.1 + vertex 34.8338 -22.7839 0 + vertex 34.9345 -22.8399 0 + endloop + endfacet + facet normal 0.486497 0.873682 0 + outer loop + vertex 34.8338 -22.7839 0 + vertex 34.9345 -22.8399 -0.1 + vertex 34.8338 -22.7839 -0.1 + endloop + endfacet + facet normal 0.653163 0.757217 -0 + outer loop + vertex 34.8338 -22.7839 -0.1 + vertex 34.7558 -22.7166 0 + vertex 34.8338 -22.7839 0 + endloop + endfacet + facet normal 0.653163 0.757217 0 + outer loop + vertex 34.7558 -22.7166 0 + vertex 34.8338 -22.7839 -0.1 + vertex 34.7558 -22.7166 -0.1 + endloop + endfacet + facet normal 0.815361 0.578952 0 + outer loop + vertex 34.7558 -22.7166 0 + vertex 34.6986 -22.636 -0.1 + vertex 34.6986 -22.636 0 + endloop + endfacet + facet normal 0.815361 0.578952 0 + outer loop + vertex 34.6986 -22.636 -0.1 + vertex 34.7558 -22.7166 0 + vertex 34.7558 -22.7166 -0.1 + endloop + endfacet + facet normal 0.928456 0.371442 0 + outer loop + vertex 34.6986 -22.636 0 + vertex 34.6602 -22.54 -0.1 + vertex 34.6602 -22.54 0 + endloop + endfacet + facet normal 0.928456 0.371442 0 + outer loop + vertex 34.6602 -22.54 -0.1 + vertex 34.6986 -22.636 0 + vertex 34.6986 -22.636 -0.1 + endloop + endfacet + facet normal 0.982392 0.186829 0 + outer loop + vertex 34.6602 -22.54 0 + vertex 34.6385 -22.4262 -0.1 + vertex 34.6385 -22.4262 0 + endloop + endfacet + facet normal 0.982392 0.186829 0 + outer loop + vertex 34.6385 -22.4262 -0.1 + vertex 34.6602 -22.54 0 + vertex 34.6602 -22.54 -0.1 + endloop + endfacet + facet normal 0.998716 0.050655 0 + outer loop + vertex 34.6385 -22.4262 0 + vertex 34.6318 -22.2927 -0.1 + vertex 34.6318 -22.2927 0 + endloop + endfacet + facet normal 0.998716 0.050655 0 + outer loop + vertex 34.6318 -22.2927 -0.1 + vertex 34.6385 -22.4262 0 + vertex 34.6385 -22.4262 -0.1 + endloop + endfacet + facet normal 0.995457 -0.0952108 0 + outer loop + vertex 34.6318 -22.2927 0 + vertex 34.653 -22.0706 -0.1 + vertex 34.653 -22.0706 0 + endloop + endfacet + facet normal 0.995457 -0.0952108 0 + outer loop + vertex 34.653 -22.0706 -0.1 + vertex 34.6318 -22.2927 0 + vertex 34.6318 -22.2927 -0.1 + endloop + endfacet + facet normal 0.963199 -0.268788 0 + outer loop + vertex 34.653 -22.0706 0 + vertex 34.713 -21.8554 -0.1 + vertex 34.713 -21.8554 0 + endloop + endfacet + facet normal 0.963199 -0.268788 0 + outer loop + vertex 34.713 -21.8554 -0.1 + vertex 34.653 -22.0706 0 + vertex 34.653 -22.0706 -0.1 + endloop + endfacet + facet normal 0.90719 -0.420722 0 + outer loop + vertex 34.713 -21.8554 0 + vertex 34.8063 -21.6543 -0.1 + vertex 34.8063 -21.6543 0 + endloop + endfacet + facet normal 0.90719 -0.420722 0 + outer loop + vertex 34.8063 -21.6543 -0.1 + vertex 34.713 -21.8554 0 + vertex 34.713 -21.8554 -0.1 + endloop + endfacet + facet normal 0.830216 -0.557442 0 + outer loop + vertex 34.8063 -21.6543 0 + vertex 34.9274 -21.474 -0.1 + vertex 34.9274 -21.474 0 + endloop + endfacet + facet normal 0.830216 -0.557442 0 + outer loop + vertex 34.9274 -21.474 -0.1 + vertex 34.8063 -21.6543 0 + vertex 34.8063 -21.6543 -0.1 + endloop + endfacet + facet normal 0.728585 -0.684956 0 + outer loop + vertex 34.9274 -21.474 0 + vertex 35.0706 -21.3217 -0.1 + vertex 35.0706 -21.3217 0 + endloop + endfacet + facet normal 0.728585 -0.684956 0 + outer loop + vertex 35.0706 -21.3217 -0.1 + vertex 34.9274 -21.474 0 + vertex 34.9274 -21.474 -0.1 + endloop + endfacet + facet normal 0.592071 -0.805886 0 + outer loop + vertex 35.0706 -21.3217 -0.1 + vertex 35.2304 -21.2043 0 + vertex 35.0706 -21.3217 0 + endloop + endfacet + facet normal 0.592071 -0.805886 0 + outer loop + vertex 35.2304 -21.2043 0 + vertex 35.0706 -21.3217 -0.1 + vertex 35.2304 -21.2043 -0.1 + endloop + endfacet + facet normal 0.404331 -0.914613 0 + outer loop + vertex 35.2304 -21.2043 -0.1 + vertex 35.4013 -21.1287 0 + vertex 35.2304 -21.2043 0 + endloop + endfacet + facet normal 0.404331 -0.914613 0 + outer loop + vertex 35.4013 -21.1287 0 + vertex 35.2304 -21.2043 -0.1 + vertex 35.4013 -21.1287 -0.1 + endloop + endfacet + facet normal 0.149785 -0.988719 0 + outer loop + vertex 35.4013 -21.1287 -0.1 + vertex 35.5778 -21.102 0 + vertex 35.4013 -21.1287 0 + endloop + endfacet + facet normal 0.149785 -0.988719 0 + outer loop + vertex 35.5778 -21.102 0 + vertex 35.4013 -21.1287 -0.1 + vertex 35.5778 -21.102 -0.1 + endloop + endfacet + facet normal 0.22645 -0.974023 0 + outer loop + vertex 35.5778 -21.102 -0.1 + vertex 35.9118 -21.0243 0 + vertex 35.5778 -21.102 0 + endloop + endfacet + facet normal 0.22645 -0.974023 0 + outer loop + vertex 35.9118 -21.0243 0 + vertex 35.5778 -21.102 -0.1 + vertex 35.9118 -21.0243 -0.1 + endloop + endfacet + facet normal 0.304725 -0.95244 0 + outer loop + vertex 35.9118 -21.0243 -0.1 + vertex 36.5724 -20.813 0 + vertex 35.9118 -21.0243 0 + endloop + endfacet + facet normal 0.304725 -0.95244 0 + outer loop + vertex 36.5724 -20.813 0 + vertex 35.9118 -21.0243 -0.1 + vertex 36.5724 -20.813 -0.1 + endloop + endfacet + facet normal 0.331013 -0.943626 0 + outer loop + vertex 36.5724 -20.813 -0.1 + vertex 37.4642 -20.5001 0 + vertex 36.5724 -20.813 0 + endloop + endfacet + facet normal 0.331013 -0.943626 0 + outer loop + vertex 37.4642 -20.5001 0 + vertex 36.5724 -20.813 -0.1 + vertex 37.4642 -20.5001 -0.1 + endloop + endfacet + facet normal 0.348531 -0.937297 0 + outer loop + vertex 37.4642 -20.5001 -0.1 + vertex 38.4916 -20.1181 0 + vertex 37.4642 -20.5001 0 + endloop + endfacet + facet normal 0.348531 -0.937297 0 + outer loop + vertex 38.4916 -20.1181 0 + vertex 37.4642 -20.5001 -0.1 + vertex 38.4916 -20.1181 -0.1 + endloop + endfacet + facet normal 0.345306 -0.93849 0 + outer loop + vertex 38.4916 -20.1181 -0.1 + vertex 39.5298 -19.7361 0 + vertex 38.4916 -20.1181 0 + endloop + endfacet + facet normal 0.345306 -0.93849 0 + outer loop + vertex 39.5298 -19.7361 0 + vertex 38.4916 -20.1181 -0.1 + vertex 39.5298 -19.7361 -0.1 + endloop + endfacet + facet normal 0.321461 -0.946923 0 + outer loop + vertex 39.5298 -19.7361 -0.1 + vertex 40.4513 -19.4233 0 + vertex 39.5298 -19.7361 0 + endloop + endfacet + facet normal 0.321461 -0.946923 0 + outer loop + vertex 40.4513 -19.4233 0 + vertex 39.5298 -19.7361 -0.1 + vertex 40.4513 -19.4233 -0.1 + endloop + endfacet + facet normal 0.28733 -0.957832 0 + outer loop + vertex 40.4513 -19.4233 -0.1 + vertex 41.156 -19.2119 0 + vertex 40.4513 -19.4233 0 + endloop + endfacet + facet normal 0.28733 -0.957832 0 + outer loop + vertex 41.156 -19.2119 0 + vertex 40.4513 -19.4233 -0.1 + vertex 41.156 -19.2119 -0.1 + endloop + endfacet + facet normal 0.23347 -0.972364 0 + outer loop + vertex 41.156 -19.2119 -0.1 + vertex 41.3957 -19.1543 0 + vertex 41.156 -19.2119 0 + endloop + endfacet + facet normal 0.23347 -0.972364 0 + outer loop + vertex 41.3957 -19.1543 0 + vertex 41.156 -19.2119 -0.1 + vertex 41.3957 -19.1543 -0.1 + endloop + endfacet + facet normal 0.13452 -0.990911 0 + outer loop + vertex 41.3957 -19.1543 -0.1 + vertex 41.5436 -19.1343 0 + vertex 41.3957 -19.1543 0 + endloop + endfacet + facet normal 0.13452 -0.990911 0 + outer loop + vertex 41.5436 -19.1343 0 + vertex 41.3957 -19.1543 -0.1 + vertex 41.5436 -19.1343 -0.1 + endloop + endfacet + facet normal -0.114485 -0.993425 0 + outer loop + vertex 41.5436 -19.1343 -0.1 + vertex 41.7426 -19.1572 0 + vertex 41.5436 -19.1343 0 + endloop + endfacet + facet normal -0.114485 -0.993425 -0 + outer loop + vertex 41.7426 -19.1572 0 + vertex 41.5436 -19.1343 -0.1 + vertex 41.7426 -19.1572 -0.1 + endloop + endfacet + facet normal -0.379137 -0.925341 0 + outer loop + vertex 41.7426 -19.1572 -0.1 + vertex 41.9051 -19.2238 0 + vertex 41.7426 -19.1572 0 + endloop + endfacet + facet normal -0.379137 -0.925341 -0 + outer loop + vertex 41.9051 -19.2238 0 + vertex 41.7426 -19.1572 -0.1 + vertex 41.9051 -19.2238 -0.1 + endloop + endfacet + facet normal -0.651079 -0.75901 0 + outer loop + vertex 41.9051 -19.2238 -0.1 + vertex 42.0297 -19.3306 0 + vertex 41.9051 -19.2238 0 + endloop + endfacet + facet normal -0.651079 -0.75901 -0 + outer loop + vertex 42.0297 -19.3306 0 + vertex 41.9051 -19.2238 -0.1 + vertex 42.0297 -19.3306 -0.1 + endloop + endfacet + facet normal -0.860116 -0.510098 0 + outer loop + vertex 42.1149 -19.4743 -0.1 + vertex 42.0297 -19.3306 0 + vertex 42.0297 -19.3306 -0.1 + endloop + endfacet + facet normal -0.860116 -0.510098 0 + outer loop + vertex 42.0297 -19.3306 0 + vertex 42.1149 -19.4743 -0.1 + vertex 42.1149 -19.4743 0 + endloop + endfacet + facet normal -0.969806 -0.243876 0 + outer loop + vertex 42.1595 -19.6516 -0.1 + vertex 42.1149 -19.4743 0 + vertex 42.1149 -19.4743 -0.1 + endloop + endfacet + facet normal -0.969806 -0.243876 0 + outer loop + vertex 42.1149 -19.4743 0 + vertex 42.1595 -19.6516 -0.1 + vertex 42.1595 -19.6516 0 + endloop + endfacet + facet normal -0.999925 -0.0122495 0 + outer loop + vertex 42.162 -19.859 -0.1 + vertex 42.1595 -19.6516 0 + vertex 42.1595 -19.6516 -0.1 + endloop + endfacet + facet normal -0.999925 -0.0122495 0 + outer loop + vertex 42.1595 -19.6516 0 + vertex 42.162 -19.859 -0.1 + vertex 42.162 -19.859 0 + endloop + endfacet + facet normal -0.985121 0.171861 0 + outer loop + vertex 42.1212 -20.0931 -0.1 + vertex 42.162 -19.859 0 + vertex 42.162 -19.859 -0.1 + endloop + endfacet + facet normal -0.985121 0.171861 0 + outer loop + vertex 42.162 -19.859 0 + vertex 42.1212 -20.0931 -0.1 + vertex 42.1212 -20.0931 0 + endloop + endfacet + facet normal -0.948956 0.315408 0 + outer loop + vertex 42.0356 -20.3507 -0.1 + vertex 42.1212 -20.0931 0 + vertex 42.1212 -20.0931 -0.1 + endloop + endfacet + facet normal -0.948956 0.315408 0 + outer loop + vertex 42.1212 -20.0931 0 + vertex 42.0356 -20.3507 -0.1 + vertex 42.0356 -20.3507 0 + endloop + endfacet + facet normal -0.935213 0.354086 0 + outer loop + vertex 41.9515 -20.5727 -0.1 + vertex 42.0356 -20.3507 0 + vertex 42.0356 -20.3507 -0.1 + endloop + endfacet + facet normal -0.935213 0.354086 0 + outer loop + vertex 42.0356 -20.3507 0 + vertex 41.9515 -20.5727 -0.1 + vertex 41.9515 -20.5727 0 + endloop + endfacet + facet normal -0.96654 0.256517 0 + outer loop + vertex 41.9099 -20.7296 -0.1 + vertex 41.9515 -20.5727 0 + vertex 41.9515 -20.5727 -0.1 + endloop + endfacet + facet normal -0.96654 0.256517 0 + outer loop + vertex 41.9515 -20.5727 0 + vertex 41.9099 -20.7296 -0.1 + vertex 41.9099 -20.7296 0 + endloop + endfacet + facet normal -0.996169 -0.0874488 0 + outer loop + vertex 41.9179 -20.8207 -0.1 + vertex 41.9099 -20.7296 0 + vertex 41.9099 -20.7296 -0.1 + endloop + endfacet + facet normal -0.996169 -0.0874488 0 + outer loop + vertex 41.9099 -20.7296 0 + vertex 41.9179 -20.8207 -0.1 + vertex 41.9179 -20.8207 0 + endloop + endfacet + facet normal -0.639023 -0.769188 0 + outer loop + vertex 41.9179 -20.8207 -0.1 + vertex 41.9427 -20.8413 0 + vertex 41.9179 -20.8207 0 + endloop + endfacet + facet normal -0.639023 -0.769188 -0 + outer loop + vertex 41.9427 -20.8413 0 + vertex 41.9179 -20.8207 -0.1 + vertex 41.9427 -20.8413 -0.1 + endloop + endfacet + facet normal -0.0984788 -0.995139 0 + outer loop + vertex 41.9427 -20.8413 -0.1 + vertex 41.9827 -20.8453 0 + vertex 41.9427 -20.8413 0 + endloop + endfacet + facet normal -0.0984788 -0.995139 -0 + outer loop + vertex 41.9827 -20.8453 0 + vertex 41.9427 -20.8413 -0.1 + vertex 41.9827 -20.8453 -0.1 + endloop + endfacet + facet normal 0.313279 -0.949661 0 + outer loop + vertex 41.9827 -20.8453 -0.1 + vertex 42.1116 -20.8028 0 + vertex 41.9827 -20.8453 0 + endloop + endfacet + facet normal 0.313279 -0.949661 0 + outer loop + vertex 42.1116 -20.8028 0 + vertex 41.9827 -20.8453 -0.1 + vertex 42.1116 -20.8028 -0.1 + endloop + endfacet + facet normal 0.482712 -0.875779 0 + outer loop + vertex 42.1116 -20.8028 -0.1 + vertex 42.3117 -20.6924 0 + vertex 42.1116 -20.8028 0 + endloop + endfacet + facet normal 0.482712 -0.875779 0 + outer loop + vertex 42.3117 -20.6924 0 + vertex 42.1116 -20.8028 -0.1 + vertex 42.3117 -20.6924 -0.1 + endloop + endfacet + facet normal 0.552983 -0.833193 0 + outer loop + vertex 42.3117 -20.6924 -0.1 + vertex 42.9547 -20.2657 0 + vertex 42.3117 -20.6924 0 + endloop + endfacet + facet normal 0.552983 -0.833193 0 + outer loop + vertex 42.9547 -20.2657 0 + vertex 42.3117 -20.6924 -0.1 + vertex 42.9547 -20.2657 -0.1 + endloop + endfacet + facet normal 0.550831 -0.834617 0 + outer loop + vertex 42.9547 -20.2657 -0.1 + vertex 43.4033 -19.9696 0 + vertex 42.9547 -20.2657 0 + endloop + endfacet + facet normal 0.550831 -0.834617 0 + outer loop + vertex 43.4033 -19.9696 0 + vertex 42.9547 -20.2657 -0.1 + vertex 43.4033 -19.9696 -0.1 + endloop + endfacet + facet normal 0.505722 -0.862696 0 + outer loop + vertex 43.4033 -19.9696 -0.1 + vertex 43.8201 -19.7253 0 + vertex 43.4033 -19.9696 0 + endloop + endfacet + facet normal 0.505722 -0.862696 0 + outer loop + vertex 43.8201 -19.7253 0 + vertex 43.4033 -19.9696 -0.1 + vertex 43.8201 -19.7253 -0.1 + endloop + endfacet + facet normal 0.444191 -0.895932 0 + outer loop + vertex 43.8201 -19.7253 -0.1 + vertex 44.2162 -19.5289 0 + vertex 43.8201 -19.7253 0 + endloop + endfacet + facet normal 0.444191 -0.895932 0 + outer loop + vertex 44.2162 -19.5289 0 + vertex 43.8201 -19.7253 -0.1 + vertex 44.2162 -19.5289 -0.1 + endloop + endfacet + facet normal 0.36641 -0.930454 0 + outer loop + vertex 44.2162 -19.5289 -0.1 + vertex 44.6026 -19.3768 0 + vertex 44.2162 -19.5289 0 + endloop + endfacet + facet normal 0.36641 -0.930454 0 + outer loop + vertex 44.6026 -19.3768 0 + vertex 44.2162 -19.5289 -0.1 + vertex 44.6026 -19.3768 -0.1 + endloop + endfacet + facet normal 0.276888 -0.960902 0 + outer loop + vertex 44.6026 -19.3768 -0.1 + vertex 44.9905 -19.265 0 + vertex 44.6026 -19.3768 0 + endloop + endfacet + facet normal 0.276888 -0.960902 0 + outer loop + vertex 44.9905 -19.265 0 + vertex 44.6026 -19.3768 -0.1 + vertex 44.9905 -19.265 -0.1 + endloop + endfacet + facet normal 0.184446 -0.982843 0 + outer loop + vertex 44.9905 -19.265 -0.1 + vertex 45.391 -19.1898 0 + vertex 44.9905 -19.265 0 + endloop + endfacet + facet normal 0.184446 -0.982843 0 + outer loop + vertex 45.391 -19.1898 0 + vertex 44.9905 -19.265 -0.1 + vertex 45.391 -19.1898 -0.1 + endloop + endfacet + facet normal 0.0992848 -0.995059 0 + outer loop + vertex 45.391 -19.1898 -0.1 + vertex 45.8151 -19.1475 0 + vertex 45.391 -19.1898 0 + endloop + endfacet + facet normal 0.0992848 -0.995059 0 + outer loop + vertex 45.8151 -19.1475 0 + vertex 45.391 -19.1898 -0.1 + vertex 45.8151 -19.1475 -0.1 + endloop + endfacet + facet normal 0.028896 -0.999582 0 + outer loop + vertex 45.8151 -19.1475 -0.1 + vertex 46.274 -19.1343 0 + vertex 45.8151 -19.1475 0 + endloop + endfacet + facet normal 0.028896 -0.999582 0 + outer loop + vertex 46.274 -19.1343 0 + vertex 45.8151 -19.1475 -0.1 + vertex 46.274 -19.1343 -0.1 + endloop + endfacet + facet normal -0.036999 -0.999315 0 + outer loop + vertex 46.274 -19.1343 -0.1 + vertex 46.8289 -19.1548 0 + vertex 46.274 -19.1343 0 + endloop + endfacet + facet normal -0.036999 -0.999315 -0 + outer loop + vertex 46.8289 -19.1548 0 + vertex 46.274 -19.1343 -0.1 + vertex 46.8289 -19.1548 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.1728 30.7024 -0.1 + vertex 12.3025 30.5214 -0.1 + vertex 12.291 30.606 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.1728 30.7024 -0.1 + vertex 12.291 30.606 -0.1 + vertex 12.2478 30.6663 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0661 30.7144 -0.1 + vertex 12.3025 30.5214 -0.1 + vertex 12.1728 30.7024 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3025 30.5214 -0.1 + vertex 12.0661 30.7144 -0.1 + vertex 12.2821 30.4122 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.9476 30.6899 -0.1 + vertex 12.2821 30.4122 -0.1 + vertex 12.0661 30.7144 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2821 30.4122 -0.1 + vertex 11.9476 30.6899 -0.1 + vertex 12.23 30.2784 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.7177 30.5077 -0.1 + vertex 12.23 30.2784 -0.1 + vertex 11.8311 30.6195 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.23 30.2784 -0.1 + vertex 11.9476 30.6899 -0.1 + vertex 11.8311 30.6195 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.6088 30.3591 -0.1 + vertex 12.23 30.2784 -0.1 + vertex 11.7177 30.5077 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.23 30.2784 -0.1 + vertex 11.6088 30.3591 -0.1 + vertex 12.0304 29.9363 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.5057 30.1782 -0.1 + vertex 12.0304 29.9363 -0.1 + vertex 11.6088 30.3591 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0304 29.9363 -0.1 + vertex 11.5057 30.1782 -0.1 + vertex 11.965 29.8184 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.965 29.8184 -0.1 + vertex 11.4096 29.9696 -0.1 + vertex 11.9082 29.6745 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.4096 29.9696 -0.1 + vertex 11.965 29.8184 -0.1 + vertex 11.5057 30.1782 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.6784 17.7808 -0.1 + vertex 26.0696 17.9605 -0.1 + vertex 26.0933 17.5963 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.2605 19.0904 -0.1 + vertex 26.0009 18.2942 -0.1 + vertex 26.0696 17.9605 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.5652 19.0574 -0.1 + vertex 26.1176 19.296 -0.1 + vertex 25.9541 19.4837 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.2605 19.0904 -0.1 + vertex 25.8914 18.5921 -0.1 + vertex 26.0009 18.2942 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.5652 19.0574 -0.1 + vertex 25.9541 19.4837 -0.1 + vertex 25.7697 19.6539 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.2605 19.0904 -0.1 + vertex 25.7448 18.8483 -0.1 + vertex 25.8914 18.5921 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.1176 19.296 -0.1 + vertex 25.5652 19.0574 -0.1 + vertex 25.7448 18.8483 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3564 19.2137 -0.1 + vertex 25.7697 19.6539 -0.1 + vertex 25.5639 19.8069 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.7697 19.6539 -0.1 + vertex 25.3564 19.2137 -0.1 + vertex 25.5652 19.0574 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.1224 19.3115 -0.1 + vertex 25.5639 19.8069 -0.1 + vertex 25.3364 19.943 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.5639 19.8069 -0.1 + vertex 25.1224 19.3115 -0.1 + vertex 25.3564 19.2137 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.9972 19.3368 -0.1 + vertex 25.3364 19.943 -0.1 + vertex 25.087 20.0627 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3364 19.943 -0.1 + vertex 24.9972 19.3368 -0.1 + vertex 25.1224 19.3115 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.087 20.0627 -0.1 + vertex 24.8672 19.3454 -0.1 + vertex 24.9972 19.3368 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.8151 20.1664 -0.1 + vertex 24.8672 19.3454 -0.1 + vertex 25.087 20.0627 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.8151 20.1664 -0.1 + vertex 24.6124 19.3722 -0.1 + vertex 24.8672 19.3454 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.5205 20.2543 -0.1 + vertex 24.6124 19.3722 -0.1 + vertex 24.8151 20.1664 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.5205 20.2543 -0.1 + vertex 24.2514 19.4451 -0.1 + vertex 24.6124 19.3722 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2028 20.3268 -0.1 + vertex 24.2514 19.4451 -0.1 + vertex 24.5205 20.2543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.8321 19.5531 -0.1 + vertex 24.2028 20.3268 -0.1 + vertex 23.8617 20.3844 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2028 20.3268 -0.1 + vertex 23.8321 19.5531 -0.1 + vertex 24.2514 19.4451 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.4027 19.6849 -0.1 + vertex 23.8617 20.3844 -0.1 + vertex 23.4814 20.4643 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.8617 20.3844 -0.1 + vertex 23.4027 19.6849 -0.1 + vertex 23.8321 19.5531 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.9977 19.8472 -0.1 + vertex 23.4814 20.4643 -0.1 + vertex 23.1504 20.59 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.4814 20.4643 -0.1 + vertex 22.9977 19.8472 -0.1 + vertex 23.4027 19.6849 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.6486 20.047 -0.1 + vertex 23.1504 20.59 -0.1 + vertex 22.8668 20.7638 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.3515 20.2895 -0.1 + vertex 22.8668 20.7638 -0.1 + vertex 22.7421 20.8693 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.1504 20.59 -0.1 + vertex 22.6486 20.047 -0.1 + vertex 22.9977 19.8472 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.2213 20.4283 -0.1 + vertex 22.7421 20.8693 -0.1 + vertex 22.6286 20.9877 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.8989 20.9229 -0.1 + vertex 22.6286 20.9877 -0.1 + vertex 22.4341 21.2638 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.8668 20.7638 -0.1 + vertex 22.3515 20.2895 -0.1 + vertex 22.6486 20.047 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.7362 21.3239 -0.1 + vertex 22.4341 21.2638 -0.1 + vertex 22.2815 21.5943 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.7421 20.8693 -0.1 + vertex 22.2213 20.4283 -0.1 + vertex 22.3515 20.2895 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.6111 21.7881 -0.1 + vertex 22.2815 21.5943 -0.1 + vertex 22.1689 21.9813 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.6286 20.9877 -0.1 + vertex 22.1028 20.5797 -0.1 + vertex 22.2213 20.4283 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.5197 22.3204 -0.1 + vertex 22.1689 21.9813 -0.1 + vertex 22.0944 22.427 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.4205 22.8275 -0.1 + vertex 22.0944 22.427 -0.1 + vertex 21.9928 23.1034 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.3493 23.064 -0.1 + vertex 21.9928 23.1034 -0.1 + vertex 21.926 23.397 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.6286 20.9877 -0.1 + vertex 21.8989 20.9229 -0.1 + vertex 22.1028 20.5797 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.2635 23.2891 -0.1 + vertex 21.926 23.397 -0.1 + vertex 21.8437 23.6658 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1632 23.503 -0.1 + vertex 21.8437 23.6658 -0.1 + vertex 21.7423 23.9135 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.4341 21.2638 -0.1 + vertex 21.7362 21.3239 -0.1 + vertex 21.8989 20.9229 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0482 23.7058 -0.1 + vertex 21.7423 23.9135 -0.1 + vertex 21.6182 24.144 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.2815 21.5943 -0.1 + vertex 21.6111 21.7881 -0.1 + vertex 21.7362 21.3239 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.1689 21.9813 -0.1 + vertex 21.5197 22.3204 -0.1 + vertex 21.6111 21.7881 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9184 23.8976 -0.1 + vertex 21.6182 24.144 -0.1 + vertex 21.4677 24.3609 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.0944 22.427 -0.1 + vertex 21.4205 22.8275 -0.1 + vertex 21.5197 22.3204 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.9928 23.1034 -0.1 + vertex 21.3493 23.064 -0.1 + vertex 21.4205 22.8275 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.7738 24.0784 -0.1 + vertex 21.4677 24.3609 -0.1 + vertex 21.2873 24.568 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.926 23.397 -0.1 + vertex 21.2635 23.2891 -0.1 + vertex 21.3493 23.064 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.8437 23.6658 -0.1 + vertex 21.1632 23.503 -0.1 + vertex 21.2635 23.2891 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.6143 24.2484 -0.1 + vertex 21.2873 24.568 -0.1 + vertex 21.0733 24.7691 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.7423 23.9135 -0.1 + vertex 21.0482 23.7058 -0.1 + vertex 21.1632 23.503 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.6182 24.144 -0.1 + vertex 20.9184 23.8976 -0.1 + vertex 21.0482 23.7058 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.4398 24.4076 -0.1 + vertex 21.0733 24.7691 -0.1 + vertex 20.8221 24.9679 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.4677 24.3609 -0.1 + vertex 20.7738 24.0784 -0.1 + vertex 20.9184 23.8976 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.2873 24.568 -0.1 + vertex 20.6143 24.2484 -0.1 + vertex 20.7738 24.0784 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2502 24.5562 -0.1 + vertex 20.8221 24.9679 -0.1 + vertex 20.53 25.168 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0733 24.7691 -0.1 + vertex 20.4398 24.4076 -0.1 + vertex 20.6143 24.2484 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8221 24.9679 -0.1 + vertex 20.2502 24.5562 -0.1 + vertex 20.4398 24.4076 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0455 24.6942 -0.1 + vertex 20.53 25.168 -0.1 + vertex 20.1936 25.3734 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.53 25.168 -0.1 + vertex 20.0455 24.6942 -0.1 + vertex 20.2502 24.5562 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.1936 25.3734 -0.1 + vertex 19.5904 24.9388 -0.1 + vertex 20.0455 24.6942 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3729 25.8147 -0.1 + vertex 19.5904 24.9388 -0.1 + vertex 20.1936 25.3734 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3729 25.8147 -0.1 + vertex 19.0737 25.1422 -0.1 + vertex 19.5904 24.9388 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3729 25.8147 -0.1 + vertex 18.5685 25.3244 -0.1 + vertex 19.0737 25.1422 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.3311 26.3216 -0.1 + vertex 18.5685 25.3244 -0.1 + vertex 19.3729 25.8147 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.3311 26.3216 -0.1 + vertex 18.1033 25.5216 -0.1 + vertex 18.5685 25.3244 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.3311 26.3216 -0.1 + vertex 17.6707 25.7385 -0.1 + vertex 18.1033 25.5216 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6504 26.6607 -0.1 + vertex 17.6707 25.7385 -0.1 + vertex 18.3311 26.3216 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6504 26.6607 -0.1 + vertex 17.2631 25.98 -0.1 + vertex 17.6707 25.7385 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.873 26.2508 -0.1 + vertex 17.6504 26.6607 -0.1 + vertex 17.0889 26.9817 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6504 26.6607 -0.1 + vertex 16.873 26.2508 -0.1 + vertex 17.2631 25.98 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.4932 26.5558 -0.1 + vertex 17.0889 26.9817 -0.1 + vertex 16.6359 27.2959 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.0889 26.9817 -0.1 + vertex 16.4932 26.5558 -0.1 + vertex 16.873 26.2508 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.116 26.8997 -0.1 + vertex 16.6359 27.2959 -0.1 + vertex 16.4467 27.454 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.116 26.8997 -0.1 + vertex 16.4467 27.454 -0.1 + vertex 16.2806 27.6146 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.734 27.2872 -0.1 + vertex 16.2806 27.6146 -0.1 + vertex 16.1362 27.7792 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.6359 27.2959 -0.1 + vertex 16.116 26.8997 -0.1 + vertex 16.4932 26.5558 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.734 27.2872 -0.1 + vertex 16.1362 27.7792 -0.1 + vertex 16.0121 27.9491 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.344 27.7317 -0.1 + vertex 16.0121 27.9491 -0.1 + vertex 15.9071 28.1258 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2193 27.9155 -0.1 + vertex 15.9071 28.1258 -0.1 + vertex 15.8197 28.3106 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1337 28.0941 -0.1 + vertex 15.8197 28.3106 -0.1 + vertex 15.7487 28.5051 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2806 27.6146 -0.1 + vertex 15.734 27.2872 -0.1 + vertex 16.116 26.8997 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0574 28.4965 -0.1 + vertex 15.7487 28.5051 -0.1 + vertex 15.6927 28.7106 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.0552 28.7509 -0.1 + vertex 15.6927 28.7106 -0.1 + vertex 15.6202 29.1601 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.1102 29.496 -0.1 + vertex 15.6202 29.1601 -0.1 + vertex 15.5622 29.5773 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.1701 29.8123 -0.1 + vertex 15.5622 29.5773 -0.1 + vertex 15.49 29.8698 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.2437 30.0088 -0.1 + vertex 15.49 29.8698 -0.1 + vertex 15.4091 30.0386 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.2838 30.0618 -0.1 + vertex 15.4091 30.0386 -0.1 + vertex 15.3672 30.0768 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6202 29.1601 -0.1 + vertex 15.0694 29.0611 -0.1 + vertex 15.0552 28.7509 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2838 30.0618 -0.1 + vertex 15.3672 30.0768 -0.1 + vertex 15.3252 30.0845 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.4091 30.0386 -0.1 + vertex 15.2838 30.0618 -0.1 + vertex 15.2437 30.0088 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.49 29.8698 -0.1 + vertex 15.2437 30.0088 -0.1 + vertex 15.1701 29.8123 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6927 28.7106 -0.1 + vertex 15.0552 28.7509 -0.1 + vertex 15.0574 28.4965 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.5622 29.5773 -0.1 + vertex 15.1701 29.8123 -0.1 + vertex 15.1102 29.496 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6202 29.1601 -0.1 + vertex 15.1102 29.496 -0.1 + vertex 15.0694 29.0611 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.0121 27.9491 -0.1 + vertex 15.344 27.7317 -0.1 + vertex 15.734 27.2872 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.7487 28.5051 -0.1 + vertex 15.0574 28.4965 -0.1 + vertex 15.0817 28.2827 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.9071 28.1258 -0.1 + vertex 15.2193 27.9155 -0.1 + vertex 15.344 27.7317 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.7487 28.5051 -0.1 + vertex 15.0817 28.2827 -0.1 + vertex 15.1337 28.0941 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.8197 28.3106 -0.1 + vertex 15.1337 28.0941 -0.1 + vertex 15.2193 27.9155 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.6024 10.7775 -0.1 + vertex 21.7259 8.22365 -0.1 + vertex 27.5775 10.2019 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 23.6083 4.95794 -0.1 + vertex 27.0158 7.30485 -0.1 + vertex 23.5351 5.37146 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 22.0631 7.89267 -0.1 + vertex 27.5775 10.2019 -0.1 + vertex 21.7259 8.22365 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.5397 9.70386 -0.1 + vertex 22.0631 7.89267 -0.1 + vertex 27.4871 9.26334 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 23.6192 4.7586 -0.1 + vertex 27.0158 7.30485 -0.1 + vertex 23.6083 4.95794 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.0158 7.30485 -0.1 + vertex 23.6192 4.7586 -0.1 + vertex 24.9074 2.59483 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 22.3621 7.54907 -0.1 + vertex 27.4871 9.26334 -0.1 + vertex 22.0631 7.89267 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.6129 4.5634 -0.1 + vertex 24.9074 2.59483 -0.1 + vertex 23.6192 4.7586 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.5494 4.18291 -0.1 + vertex 24.9074 2.59483 -0.1 + vertex 23.5897 4.3717 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4176 8.86037 -0.1 + vertex 22.3621 7.54907 -0.1 + vertex 27.3295 8.47496 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.4183 3.81156 -0.1 + vertex 24.9074 2.59483 -0.1 + vertex 23.5494 4.18291 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.22 3.44442 -0.1 + vertex 24.764 2.4559 -0.1 + vertex 23.4183 3.81156 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.9074 2.59483 -0.1 + vertex 23.4183 3.81156 -0.1 + vertex 24.764 2.4559 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.5897 4.3717 -0.1 + vertex 24.9074 2.59483 -0.1 + vertex 23.6129 4.5634 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.0158 7.30485 -0.1 + vertex 23.3929 5.8089 -0.1 + vertex 23.5351 5.37146 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3295 8.47496 -0.1 + vertex 22.3621 7.54907 -0.1 + vertex 27.2208 8.08714 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.0158 7.30485 -0.1 + vertex 23.1811 6.27516 -0.1 + vertex 23.3929 5.8089 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.0158 7.30485 -0.1 + vertex 22.8992 6.77518 -0.1 + vertex 23.1811 6.27516 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.1048 7.68143 -0.1 + vertex 22.8992 6.77518 -0.1 + vertex 27.0158 7.30485 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 22.8992 6.77518 -0.1 + vertex 27.1048 7.68143 -0.1 + vertex 22.6364 7.18064 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4871 9.26334 -0.1 + vertex 22.3621 7.54907 -0.1 + vertex 27.4176 8.86037 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2208 8.08714 -0.1 + vertex 22.6364 7.18064 -0.1 + vertex 27.1048 7.68143 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 22.6364 7.18064 -0.1 + vertex 27.2208 8.08714 -0.1 + vertex 22.3621 7.54907 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.3371 8.55423 -0.1 + vertex 22.2336 15.278 -0.1 + vertex 21.6737 15.039 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.5775 10.2019 -0.1 + vertex 22.0631 7.89267 -0.1 + vertex 27.5397 9.70386 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8834 8.89663 -0.1 + vertex 21.6737 15.039 -0.1 + vertex 21.1771 14.8489 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.6737 15.039 -0.1 + vertex 20.8834 8.89663 -0.1 + vertex 21.3371 8.55423 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3513 9.26304 -0.1 + vertex 21.1771 14.8489 -0.1 + vertex 20.8452 14.735 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7274 9.66569 -0.1 + vertex 20.8452 14.735 -0.1 + vertex 20.5722 14.6577 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1771 14.8489 -0.1 + vertex 20.3513 9.26304 -0.1 + vertex 20.8834 8.89663 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4723 9.81661 -0.1 + vertex 20.5722 14.6577 -0.1 + vertex 20.327 14.6203 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.2206 9.94402 -0.1 + vertex 20.327 14.6203 -0.1 + vertex 20.0785 14.6265 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.6964 10.137 -0.1 + vertex 20.0785 14.6265 -0.1 + vertex 19.7955 14.6797 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8452 14.735 -0.1 + vertex 19.7274 9.66569 -0.1 + vertex 20.3513 9.26304 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.5722 14.6577 -0.1 + vertex 19.4723 9.81661 -0.1 + vertex 19.7274 9.66569 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4085 10.2069 -0.1 + vertex 19.7955 14.6797 -0.1 + vertex 19.4469 14.7833 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.327 14.6203 -0.1 + vertex 19.2206 9.94402 -0.1 + vertex 19.4723 9.81661 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0785 14.6265 -0.1 + vertex 18.9645 10.0501 -0.1 + vertex 19.2206 9.94402 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0785 14.6265 -0.1 + vertex 18.6964 10.137 -0.1 + vertex 18.9645 10.0501 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.093 10.2619 -0.1 + vertex 19.4469 14.7833 -0.1 + vertex 18.4281 15.1559 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7955 14.6797 -0.1 + vertex 18.4085 10.2069 -0.1 + vertex 18.6964 10.137 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4469 14.7833 -0.1 + vertex 18.093 10.2619 -0.1 + vertex 18.4085 10.2069 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.499 10.3797 -0.1 + vertex 18.4281 15.1559 -0.1 + vertex 17.448 15.5385 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4281 15.1559 -0.1 + vertex 17.3487 10.3363 -0.1 + vertex 18.093 10.2619 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2187 10.3704 -0.1 + vertex 17.448 15.5385 -0.1 + vertex 16.6072 15.8977 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4281 15.1559 -0.1 + vertex 16.499 10.3797 -0.1 + vertex 17.3487 10.3363 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.448 15.5385 -0.1 + vertex 16.2187 10.3704 -0.1 + vertex 16.499 10.3797 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.6072 15.8977 -0.1 + vertex 16.005 10.3315 -0.1 + vertex 16.2187 10.3704 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.8738 16.2527 -0.1 + vertex 16.005 10.3315 -0.1 + vertex 16.6072 15.8977 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.8738 16.2527 -0.1 + vertex 15.8355 10.2563 -0.1 + vertex 16.005 10.3315 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2162 16.623 -0.1 + vertex 15.8355 10.2563 -0.1 + vertex 15.8738 16.2527 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.8355 10.2563 -0.1 + vertex 15.2162 16.623 -0.1 + vertex 15.6879 10.1383 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.4375 16.5104 -0.1 + vertex 15.6879 10.1383 -0.1 + vertex 15.2162 16.623 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6879 10.1383 -0.1 + vertex 10.4375 16.5104 -0.1 + vertex 15.5399 9.97068 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.5399 9.97068 -0.1 + vertex 10.4375 16.5104 -0.1 + vertex 15.369 9.74689 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 9.73318 16.1788 -0.1 + vertex 15.369 9.74689 -0.1 + vertex 10.4375 16.5104 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.369 9.74689 -0.1 + vertex 9.73318 16.1788 -0.1 + vertex 15.213 9.52982 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.213 9.52982 -0.1 + vertex 9.73318 16.1788 -0.1 + vertex 15.0942 9.33737 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 9.19116 15.9452 -0.1 + vertex 15.0942 9.33737 -0.1 + vertex 9.73318 16.1788 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 8.99158 15.8746 -0.1 + vertex 15.0942 9.33737 -0.1 + vertex 9.19116 15.9452 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.4375 16.5104 -0.1 + vertex 15.2162 16.623 -0.1 + vertex 14.6028 17.0277 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 24.4388 2.25734 -0.1 + vertex 24.764 2.4559 -0.1 + vertex 23.22 3.44442 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.764 2.4559 -0.1 + vertex 24.4388 2.25734 -0.1 + vertex 24.6285 2.34829 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.4388 2.25734 -0.1 + vertex 23.22 3.44442 -0.1 + vertex 24.2201 2.19262 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2201 2.19262 -0.1 + vertex 23.22 3.44442 -0.1 + vertex 23.9975 2.16372 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.9975 2.16372 -0.1 + vertex 23.22 3.44442 -0.1 + vertex 23.7673 2.14309 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.0427 3.12896 -0.1 + vertex 23.7673 2.14309 -0.1 + vertex 23.22 3.44442 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.7673 2.14309 -0.1 + vertex 23.0427 3.12896 -0.1 + vertex 23.5277 2.10089 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.9115 2.82433 -0.1 + vertex 23.5277 2.10089 -0.1 + vertex 23.0427 3.12896 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.827 2.54396 -0.1 + vertex 23.5277 2.10089 -0.1 + vertex 22.9115 2.82433 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.5277 2.10089 -0.1 + vertex 22.827 2.54396 -0.1 + vertex 23.3072 2.04326 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.7901 2.30129 -0.1 + vertex 23.3072 2.04326 -0.1 + vertex 22.827 2.54396 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.3072 2.04326 -0.1 + vertex 22.7901 2.30129 -0.1 + vertex 23.0469 1.94283 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 22.8016 2.10976 -0.1 + vertex 23.0469 1.94283 -0.1 + vertex 22.7901 2.30129 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 22.8257 2.03737 -0.1 + vertex 23.0469 1.94283 -0.1 + vertex 22.8016 2.10976 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0469 1.94283 -0.1 + vertex 22.8257 2.03737 -0.1 + vertex 22.9727 1.93385 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 22.8622 1.9828 -0.1 + vertex 22.9727 1.93385 -0.1 + vertex 22.8257 2.03737 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.9727 1.93385 -0.1 + vertex 22.8622 1.9828 -0.1 + vertex 22.9112 1.94773 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4227 15.3534 -0.1 + vertex 24.3498 16.3417 -0.1 + vertex 27.4995 15.0808 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3198 15.5987 -0.1 + vertex 24.3498 16.3417 -0.1 + vertex 27.4227 15.3534 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4995 15.0808 -0.1 + vertex 24.3498 16.3417 -0.1 + vertex 27.5539 14.7505 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.3498 16.3417 -0.1 + vertex 27.3198 15.5987 -0.1 + vertex 24.659 16.5397 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.5539 14.7505 -0.1 + vertex 24.3498 16.3417 -0.1 + vertex 27.5896 14.3319 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.1872 15.8473 -0.1 + vertex 24.659 16.5397 -0.1 + vertex 27.3198 15.5987 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.9148 16.0975 -0.1 + vertex 27.5896 14.3319 -0.1 + vertex 24.3498 16.3417 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.659 16.5397 -0.1 + vertex 25.8187 16.7495 -0.1 + vertex 24.7548 16.6154 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.5896 14.3319 -0.1 + vertex 23.9148 16.0975 -0.1 + vertex 27.6103 13.7945 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.3919 15.8262 -0.1 + vertex 27.6103 13.7945 -0.1 + vertex 23.9148 16.0975 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.7548 16.6154 -0.1 + vertex 25.8187 16.7495 -0.1 + vertex 24.8049 16.6725 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.6103 13.7945 -0.1 + vertex 23.3919 15.8262 -0.1 + vertex 27.6211 12.2412 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.659 16.5397 -0.1 + vertex 27.1872 15.8473 -0.1 + vertex 25.8187 16.7495 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.2336 15.278 -0.1 + vertex 27.6211 12.2412 -0.1 + vertex 23.3919 15.8262 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.3371 8.55423 -0.1 + vertex 27.6211 12.2412 -0.1 + vertex 22.2336 15.278 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.8659 16.7424 -0.1 + vertex 27.1872 15.8473 -0.1 + vertex 27.0139 16.2113 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.6211 12.2412 -0.1 + vertex 21.3371 8.55423 -0.1 + vertex 27.6024 10.7775 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 21.7259 8.22365 -0.1 + vertex 27.6024 10.7775 -0.1 + vertex 21.3371 8.55423 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.0158 7.30485 -0.1 + vertex 24.9074 2.59483 -0.1 + vertex 26.9517 6.92758 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.1872 15.8473 -0.1 + vertex 25.8659 16.7424 -0.1 + vertex 25.8187 16.7495 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.8659 16.7424 -0.1 + vertex 27.0139 16.2113 -0.1 + vertex 26.8653 16.6367 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.8138 2.23679 -0.1 + vertex 26.9647 2.16551 -0.1 + vertex 26.9615 2.94949 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.4766 2.59351 -0.1 + vertex 26.9615 2.94949 -0.1 + vertex 26.9294 3.98634 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9647 2.16551 -0.1 + vertex 25.8138 2.23679 -0.1 + vertex 26.0094 1.96397 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.185 2.7087 -0.1 + vertex 26.9294 3.98634 -0.1 + vertex 26.8871 5.49316 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 26.3175 1.53367 -0.1 + vertex 26.9647 2.16551 -0.1 + vertex 26.0094 1.96397 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9517 6.92758 -0.1 + vertex 24.9074 2.59483 -0.1 + vertex 26.9103 6.51977 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9615 2.94949 -0.1 + vertex 25.6376 2.44612 -0.1 + vertex 25.8138 2.23679 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.9855 16.8461 -0.1 + vertex 26.8653 16.6367 -0.1 + vertex 26.7571 17.0706 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 26.4455 1.37999 -0.1 + vertex 26.9324 1.61996 -0.1 + vertex 26.3175 1.53367 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.0803 17.2678 -0.1 + vertex 26.7571 17.0706 -0.1 + vertex 26.7051 17.4601 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.0933 17.5963 -0.1 + vertex 26.7051 17.4601 -0.1 + vertex 26.6784 17.7808 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.8653 16.6367 -0.1 + vertex 25.9855 16.8461 -0.1 + vertex 25.9096 16.7563 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.0696 17.9605 -0.1 + vertex 26.6784 17.7808 -0.1 + vertex 26.6332 18.0815 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0696 17.9605 -0.1 + vertex 26.6332 18.0815 -0.1 + vertex 26.5691 18.3624 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7571 17.0706 -0.1 + vertex 26.0434 17.0172 -0.1 + vertex 25.9855 16.8461 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0696 17.9605 -0.1 + vertex 26.5691 18.3624 -0.1 + vertex 26.4859 18.624 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9324 1.61996 -0.1 + vertex 26.4455 1.37999 -0.1 + vertex 26.901 1.43209 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0696 17.9605 -0.1 + vertex 26.4859 18.624 -0.1 + vertex 26.3832 18.8665 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 26.5572 1.2697 -0.1 + vertex 26.901 1.43209 -0.1 + vertex 26.4455 1.37999 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0696 17.9605 -0.1 + vertex 26.3832 18.8665 -0.1 + vertex 26.2605 19.0904 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.7448 18.8483 -0.1 + vertex 26.2605 19.0904 -0.1 + vertex 26.1176 19.296 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7051 17.4601 -0.1 + vertex 26.0933 17.5963 -0.1 + vertex 26.0803 17.2678 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7571 17.0706 -0.1 + vertex 26.0803 17.2678 -0.1 + vertex 26.0434 17.0172 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 26.6535 1.20459 -0.1 + vertex 26.8581 1.29842 -0.1 + vertex 26.5572 1.2697 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.8581 1.29842 -0.1 + vertex 26.6535 1.20459 -0.1 + vertex 26.8032 1.21715 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.8032 1.21715 -0.1 + vertex 26.6535 1.20459 -0.1 + vertex 26.7352 1.18648 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.8659 16.7424 -0.1 + vertex 26.8653 16.6367 -0.1 + vertex 25.9096 16.7563 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9103 6.51977 -0.1 + vertex 24.9074 2.59483 -0.1 + vertex 26.8894 6.05157 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.7157 16.8274 -0.1 + vertex 24.8049 16.6725 -0.1 + vertex 25.8187 16.7495 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.901 1.43209 -0.1 + vertex 26.5572 1.2697 -0.1 + vertex 26.8581 1.29842 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.8049 16.6725 -0.1 + vertex 25.7157 16.8274 -0.1 + vertex 24.8294 16.7672 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9647 2.16551 -0.1 + vertex 26.3175 1.53367 -0.1 + vertex 26.9324 1.61996 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.8294 16.7672 -0.1 + vertex 25.7157 16.8274 -0.1 + vertex 25.6037 16.9917 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.8232 16.8925 -0.1 + vertex 25.6037 16.9917 -0.1 + vertex 25.4856 17.2443 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9615 2.94949 -0.1 + vertex 25.4766 2.59351 -0.1 + vertex 25.6376 2.44612 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.789 17.0321 -0.1 + vertex 25.4856 17.2443 -0.1 + vertex 25.3467 17.5167 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 25.0464 2.67962 -0.1 + vertex 26.8894 6.05157 -0.1 + vertex 24.9074 2.59483 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.7291 17.1695 -0.1 + vertex 25.3467 17.5167 -0.1 + vertex 25.2614 17.6336 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9294 3.98634 -0.1 + vertex 25.3271 2.68052 -0.1 + vertex 25.4766 2.59351 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6602 17.253 -0.1 + vertex 25.2614 17.6336 -0.1 + vertex 25.163 17.7384 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6602 17.253 -0.1 + vertex 25.163 17.7384 -0.1 + vertex 25.0501 17.8316 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9294 3.98634 -0.1 + vertex 25.185 2.7087 -0.1 + vertex 25.3271 2.68052 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6602 17.253 -0.1 + vertex 25.0501 17.8316 -0.1 + vertex 24.9207 17.9138 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.8871 5.49316 -0.1 + vertex 25.0464 2.67962 -0.1 + vertex 25.185 2.7087 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.8894 6.05157 -0.1 + vertex 25.0464 2.67962 -0.1 + vertex 26.8871 5.49316 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.6037 16.9917 -0.1 + vertex 24.8232 16.8925 -0.1 + vertex 24.8294 16.7672 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.4856 17.2443 -0.1 + vertex 24.789 17.0321 -0.1 + vertex 24.8232 16.8925 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3467 17.5167 -0.1 + vertex 24.7291 17.1695 -0.1 + vertex 24.789 17.0321 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.2614 17.6336 -0.1 + vertex 24.6602 17.253 -0.1 + vertex 24.7291 17.1695 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.5483 17.3222 -0.1 + vertex 24.9207 17.9138 -0.1 + vertex 24.6059 18.0475 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.9207 17.9138 -0.1 + vertex 24.5483 17.3222 -0.1 + vertex 24.6602 17.253 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6059 18.0475 -0.1 + vertex 24.386 17.3783 -0.1 + vertex 24.5483 17.3222 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.166 17.4223 -0.1 + vertex 24.6059 18.0475 -0.1 + vertex 24.2049 18.1437 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6059 18.0475 -0.1 + vertex 24.166 17.4223 -0.1 + vertex 24.386 17.3783 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.7039 18.207 -0.1 + vertex 24.166 17.4223 -0.1 + vertex 24.2049 18.1437 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.7039 18.207 -0.1 + vertex 23.5226 17.4791 -0.1 + vertex 24.166 17.4223 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0891 18.2417 -0.1 + vertex 23.5226 17.4791 -0.1 + vertex 23.7039 18.207 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0891 18.2417 -0.1 + vertex 22.5588 17.5015 -0.1 + vertex 23.5226 17.4791 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.3468 18.2522 -0.1 + vertex 22.5588 17.5015 -0.1 + vertex 23.0891 18.2417 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.5679 18.2611 -0.1 + vertex 22.5588 17.5015 -0.1 + vertex 22.3468 18.2522 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.5679 18.2611 -0.1 + vertex 21.0506 17.5236 -0.1 + vertex 22.5588 17.5015 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9709 18.304 -0.1 + vertex 21.0506 17.5236 -0.1 + vertex 21.5679 18.2611 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.7319 18.3459 -0.1 + vertex 21.0506 17.5236 -0.1 + vertex 20.9709 18.304 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2276 17.5562 -0.1 + vertex 20.7319 18.3459 -0.1 + vertex 20.5281 18.4055 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0333 17.6179 -0.1 + vertex 20.5281 18.4055 -0.1 + vertex 20.3561 18.486 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.7319 18.3459 -0.1 + vertex 20.2276 17.5562 -0.1 + vertex 21.0506 17.5236 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6934 17.9694 -0.1 + vertex 20.3561 18.486 -0.1 + vertex 20.2124 18.5903 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.5281 18.4055 -0.1 + vertex 20.1284 17.5777 -0.1 + vertex 20.2276 17.5562 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5469 18.2611 -0.1 + vertex 20.2124 18.5903 -0.1 + vertex 20.0935 18.7216 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.5281 18.4055 -0.1 + vertex 20.0333 17.6179 -0.1 + vertex 20.1284 17.5777 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4153 18.6317 -0.1 + vertex 20.0935 18.7216 -0.1 + vertex 19.9962 18.8829 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3561 18.486 -0.1 + vertex 19.9424 17.6771 -0.1 + vertex 20.0333 17.6179 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4153 18.6317 -0.1 + vertex 19.9962 18.8829 -0.1 + vertex 19.9169 19.0772 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3561 18.486 -0.1 + vertex 19.8554 17.7553 -0.1 + vertex 19.9424 17.6771 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.2984 19.082 -0.1 + vertex 19.9169 19.0772 -0.1 + vertex 19.8522 19.3078 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.1956 19.6132 -0.1 + vertex 19.8522 19.3078 -0.1 + vertex 19.753 19.8896 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3561 18.486 -0.1 + vertex 19.6934 17.9694 -0.1 + vertex 19.8554 17.7553 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.1065 20.2262 -0.1 + vertex 19.753 19.8896 -0.1 + vertex 19.6713 20.6529 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.0081 20.8787 -0.1 + vertex 19.6713 20.6529 -0.1 + vertex 19.58 21.4118 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0935 18.7216 -0.1 + vertex 19.4153 18.6317 -0.1 + vertex 19.5469 18.2611 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.892 21.4494 -0.1 + vertex 19.58 21.4118 -0.1 + vertex 19.5238 21.6908 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.892 21.4494 -0.1 + vertex 19.5238 21.6908 -0.1 + vertex 19.4538 21.9215 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2124 18.5903 -0.1 + vertex 19.5469 18.2611 -0.1 + vertex 19.6934 17.9694 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.7726 21.8767 -0.1 + vertex 19.4538 21.9215 -0.1 + vertex 19.3646 22.1178 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.9169 19.0772 -0.1 + vertex 19.2984 19.082 -0.1 + vertex 19.4153 18.6317 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.7726 21.8767 -0.1 + vertex 19.3646 22.1178 -0.1 + vertex 19.2511 22.2936 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.8522 19.3078 -0.1 + vertex 19.1956 19.6132 -0.1 + vertex 19.2984 19.082 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.7163 22.0174 -0.1 + vertex 19.2511 22.2936 -0.1 + vertex 19.108 22.463 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.753 19.8896 -0.1 + vertex 19.1065 20.2262 -0.1 + vertex 19.1956 19.6132 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6713 20.6529 -0.1 + vertex 19.0081 20.8787 -0.1 + vertex 19.1065 20.2262 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.6646 22.0992 -0.1 + vertex 19.108 22.463 -0.1 + vertex 18.9302 22.6398 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.58 21.4118 -0.1 + vertex 18.892 21.4494 -0.1 + vertex 19.0081 20.8787 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4538 21.9215 -0.1 + vertex 18.7726 21.8767 -0.1 + vertex 18.892 21.4494 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.2511 22.2936 -0.1 + vertex 18.7163 22.0174 -0.1 + vertex 18.7726 21.8767 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.108 22.463 -0.1 + vertex 18.6646 22.0992 -0.1 + vertex 18.7163 22.0174 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4732 22.2317 -0.1 + vertex 18.9302 22.6398 -0.1 + vertex 18.6454 22.8797 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.9302 22.6398 -0.1 + vertex 18.4732 22.2317 -0.1 + vertex 18.6646 22.0992 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.127 22.4141 -0.1 + vertex 18.6454 22.8797 -0.1 + vertex 18.318 23.1114 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.6454 22.8797 -0.1 + vertex 18.127 22.4141 -0.1 + vertex 18.4732 22.2317 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6752 22.6222 -0.1 + vertex 18.318 23.1114 -0.1 + vertex 17.9883 23.3086 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6752 22.6222 -0.1 + vertex 17.9883 23.3086 -0.1 + vertex 17.6969 23.4449 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.318 23.1114 -0.1 + vertex 17.6752 22.6222 -0.1 + vertex 18.127 22.4141 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6969 23.4449 -0.1 + vertex 17.1667 22.8321 -0.1 + vertex 17.6752 22.6222 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2809 23.9862 -0.1 + vertex 17.1667 22.8321 -0.1 + vertex 17.6969 23.4449 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2809 23.9862 -0.1 + vertex 15.5173 23.4995 -0.1 + vertex 17.1667 22.8321 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1328 24.4531 -0.1 + vertex 15.5173 23.4995 -0.1 + vertex 16.2809 23.9862 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0281 24.1527 -0.1 + vertex 15.1328 24.4531 -0.1 + vertex 14.2197 24.8651 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1328 24.4531 -0.1 + vertex 14.0281 24.1527 -0.1 + vertex 15.5173 23.4995 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.2197 24.8651 -0.1 + vertex 13.7923 24.2655 -0.1 + vertex 14.0281 24.1527 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.2197 24.8651 -0.1 + vertex 13.5553 24.3991 -0.1 + vertex 13.7923 24.2655 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.5086 25.2416 -0.1 + vertex 13.5553 24.3991 -0.1 + vertex 14.2197 24.8651 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.085 24.7212 -0.1 + vertex 13.5086 25.2416 -0.1 + vertex 13.2184 25.4225 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.5086 25.2416 -0.1 + vertex 13.085 24.7212 -0.1 + vertex 13.5553 24.3991 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.6316 25.1032 -0.1 + vertex 13.2184 25.4225 -0.1 + vertex 12.9664 25.6018 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.6316 25.1032 -0.1 + vertex 12.9664 25.6018 -0.1 + vertex 12.7484 25.782 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.2184 25.4225 -0.1 + vertex 12.6316 25.1032 -0.1 + vertex 13.085 24.7212 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2092 25.5292 -0.1 + vertex 12.7484 25.782 -0.1 + vertex 12.5603 25.9653 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2092 25.5292 -0.1 + vertex 12.5603 25.9653 -0.1 + vertex 12.3979 26.1543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8324 25.9834 -0.1 + vertex 12.3979 26.1543 -0.1 + vertex 12.2572 26.3514 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.7484 25.782 -0.1 + vertex 12.2092 25.5292 -0.1 + vertex 12.6316 25.1032 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8324 25.9834 -0.1 + vertex 12.2572 26.3514 -0.1 + vertex 12.1339 26.5589 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5154 26.4501 -0.1 + vertex 12.1339 26.5589 -0.1 + vertex 12.0241 26.7794 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.3839 26.6832 -0.1 + vertex 12.0241 26.7794 -0.1 + vertex 11.903 27.1234 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3979 26.1543 -0.1 + vertex 11.8324 25.9834 -0.1 + vertex 12.2092 25.5292 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.1835 27.139 -0.1 + vertex 11.903 27.1234 -0.1 + vertex 11.8169 27.5343 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.0734 27.5937 -0.1 + vertex 11.8169 27.5343 -0.1 + vertex 11.7656 27.9858 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.0419 28.1143 -0.1 + vertex 11.7656 27.9858 -0.1 + vertex 11.7492 28.4518 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.2437 29.4873 -0.1 + vertex 11.9082 29.6745 -0.1 + vertex 11.4096 29.9696 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.9082 29.6745 -0.1 + vertex 11.2437 29.4873 -0.1 + vertex 11.8205 29.3224 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.7675 28.9061 -0.1 + vertex 11.1213 28.9486 -0.1 + vertex 11.7492 28.4518 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8205 29.3224 -0.1 + vertex 11.2437 29.4873 -0.1 + vertex 11.7675 28.9061 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.1213 28.9486 -0.1 + vertex 11.7675 28.9061 -0.1 + vertex 11.2437 29.4873 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.0528 28.3898 -0.1 + vertex 11.7492 28.4518 -0.1 + vertex 11.1213 28.9486 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.1339 26.5589 -0.1 + vertex 11.5154 26.4501 -0.1 + vertex 11.8324 25.9834 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.0419 28.1143 -0.1 + vertex 11.7492 28.4518 -0.1 + vertex 11.0528 28.3898 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0241 26.7794 -0.1 + vertex 11.3839 26.6832 -0.1 + vertex 11.5154 26.4501 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.7656 27.9858 -0.1 + vertex 11.0419 28.1143 -0.1 + vertex 11.0484 27.8474 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.903 27.1234 -0.1 + vertex 11.2726 26.9135 -0.1 + vertex 11.3839 26.6832 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.7656 27.9858 -0.1 + vertex 11.0484 27.8474 -0.1 + vertex 11.0734 27.5937 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.903 27.1234 -0.1 + vertex 11.1835 27.139 -0.1 + vertex 11.2726 26.9135 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8169 27.5343 -0.1 + vertex 11.1184 27.3577 -0.1 + vertex 11.1835 27.139 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8169 27.5343 -0.1 + vertex 11.0734 27.5937 -0.1 + vertex 11.1184 27.3577 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.5155 0.168137 -0.1 + vertex 21.1355 -0.658014 -0.1 + vertex 21.1316 -0.233279 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8646 0.230347 -0.1 + vertex 21.1316 -0.233279 -0.1 + vertex 21.099 0.0745682 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9772 0.235111 -0.1 + vertex 21.099 0.0745682 -0.1 + vertex 21.0726 0.170561 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9772 0.235111 -0.1 + vertex 21.0726 0.170561 -0.1 + vertex 21.0399 0.220413 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1316 -0.233279 -0.1 + vertex 20.8646 0.230347 -0.1 + vertex 20.5155 0.168137 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1355 -0.658014 -0.1 + vertex 20.5155 0.168137 -0.1 + vertex 20.0432 0.0451876 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.099 0.0745682 -0.1 + vertex 20.9772 0.235111 -0.1 + vertex 20.8646 0.230347 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1355 -0.658014 -0.1 + vertex 20.0432 0.0451876 -0.1 + vertex 21.1085 -1.15452 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.4982 -0.127099 -0.1 + vertex 21.1085 -1.15452 -0.1 + vertex 20.0432 0.0451876 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1085 -1.15452 -0.1 + vertex 19.4982 -0.127099 -0.1 + vertex 21.0399 -1.71534 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0399 -1.71534 -0.1 + vertex 19.4982 -0.127099 -0.1 + vertex 20.9878 -1.96317 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.7502 -0.369046 -0.1 + vertex 20.9878 -1.96317 -0.1 + vertex 19.4982 -0.127099 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9878 -1.96317 -0.1 + vertex 18.7502 -0.369046 -0.1 + vertex 20.9199 -2.19366 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9199 -2.19366 -0.1 + vertex 18.7502 -0.369046 -0.1 + vertex 20.8331 -2.41014 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8331 -2.41014 -0.1 + vertex 18.7502 -0.369046 -0.1 + vertex 20.7245 -2.61588 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.7245 -2.61588 -0.1 + vertex 18.7502 -0.369046 -0.1 + vertex 20.591 -2.8142 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.591 -2.8142 -0.1 + vertex 18.7502 -0.369046 -0.1 + vertex 20.4297 -3.0084 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.4297 -3.0084 -0.1 + vertex 18.7502 -0.369046 -0.1 + vertex 20.2374 -3.20177 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2374 -3.20177 -0.1 + vertex 18.7502 -0.369046 -0.1 + vertex 20.0112 -3.39762 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.4876 -0.435405 -0.1 + vertex 20.0112 -3.39762 -0.1 + vertex 18.7502 -0.369046 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0112 -3.39762 -0.1 + vertex 18.4876 -0.435405 -0.1 + vertex 19.4451 -3.80993 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.2791 -0.466914 -0.1 + vertex 19.4451 -3.80993 -0.1 + vertex 18.4876 -0.435405 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.1098 -0.464739 -0.1 + vertex 19.4451 -3.80993 -0.1 + vertex 18.2791 -0.466914 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4451 -3.80993 -0.1 + vertex 18.1098 -0.464739 -0.1 + vertex 18.7073 -4.27174 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.9646 -0.430052 -0.1 + vertex 18.7073 -4.27174 -0.1 + vertex 18.1098 -0.464739 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.7736 -4.80944 -0.1 + vertex 17.9646 -0.430052 -0.1 + vertex 17.8284 -0.36402 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.9646 -0.430052 -0.1 + vertex 17.7736 -4.80944 -0.1 + vertex 18.7073 -4.27174 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.3217 -2.5049 -0.1 + vertex 17.8284 -0.36402 -0.1 + vertex 17.6862 -0.267812 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.2572 -2.23644 -0.1 + vertex 17.6862 -0.267812 -0.1 + vertex 17.4918 -0.0873203 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.1524 -1.94488 -0.1 + vertex 17.4918 -0.0873203 -0.1 + vertex 17.2889 0.169637 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.008 -1.63155 -0.1 + vertex 17.2889 0.169637 -0.1 + vertex 17.0802 0.495742 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.8249 -1.29782 -0.1 + vertex 17.0802 0.495742 -0.1 + vertex 16.8681 0.883681 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.604 -0.945011 -0.1 + vertex 16.8681 0.883681 -0.1 + vertex 16.6551 1.32614 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.3463 -0.574481 -0.1 + vertex 16.6551 1.32614 -0.1 + vertex 16.4437 1.81579 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6862 -0.267812 -0.1 + vertex 14.2572 -2.23644 -0.1 + vertex 14.3217 -2.5049 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.7237 0.214368 -0.1 + vertex 16.4437 1.81579 -0.1 + vertex 16.2363 2.34533 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3607 0.629996 -0.1 + vertex 16.2363 2.34533 -0.1 + vertex 16.0356 2.90743 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5355 1.49693 -0.1 + vertex 16.0356 2.90743 -0.1 + vertex 15.6639 4.10009 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.8284 -0.36402 -0.1 + vertex 14.3217 -2.5049 -0.1 + vertex 14.3448 -2.7489 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5355 1.49693 -0.1 + vertex 15.6639 4.10009 -0.1 + vertex 15.498 4.716 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.5842 2.40247 -0.1 + vertex 15.498 4.716 -0.1 + vertex 15.3486 5.33522 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.5842 2.40247 -0.1 + vertex 15.3486 5.33522 -0.1 + vertex 15.2183 5.95043 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.61741 3.25086 -0.1 + vertex 15.2183 5.95043 -0.1 + vertex 15.1095 6.5543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.29624 3.50894 -0.1 + vertex 15.1095 6.5543 -0.1 + vertex 15.0249 7.13954 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.3256 -2.96711 -0.1 + vertex 17.7736 -4.80944 -0.1 + vertex 14.3448 -2.7489 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.14614 3.60373 -0.1 + vertex 15.0249 7.13954 -0.1 + vertex 14.9668 7.69881 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.19732 4.25764 -0.1 + vertex 14.9668 7.69881 -0.1 + vertex 14.9212 8.45633 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0942 9.33737 -0.1 + vertex 8.99158 15.8746 -0.1 + vertex 15.0092 9.15168 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.7736 -4.80944 -0.1 + vertex 14.3256 -2.96711 -0.1 + vertex 16.3254 -5.59514 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.1768 -3.32005 -0.1 + vertex 16.3254 -5.59514 -0.1 + vertex 14.2634 -3.15818 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.2634 -3.15818 -0.1 + vertex 16.3254 -5.59514 -0.1 + vertex 14.3256 -2.96711 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.8284 -0.36402 -0.1 + vertex 14.3448 -2.7489 -0.1 + vertex 17.7736 -4.80944 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.4918 -0.0873203 -0.1 + vertex 14.1524 -1.94488 -0.1 + vertex 14.2572 -2.23644 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.2889 0.169637 -0.1 + vertex 14.008 -1.63155 -0.1 + vertex 14.1524 -1.94488 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.4375 16.5104 -0.1 + vertex 14.6028 17.0277 -0.1 + vertex 14.0017 17.4864 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.0802 0.495742 -0.1 + vertex 13.8249 -1.29782 -0.1 + vertex 14.008 -1.63155 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.8681 0.883681 -0.1 + vertex 13.604 -0.945011 -0.1 + vertex 13.8249 -1.29782 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.4375 16.5104 -0.1 + vertex 14.0017 17.4864 -0.1 + vertex 13.3813 18.0182 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.6551 1.32614 -0.1 + vertex 13.3463 -0.574481 -0.1 + vertex 13.604 -0.945011 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.4437 1.81579 -0.1 + vertex 13.0525 -0.187573 -0.1 + vertex 13.3463 -0.574481 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.4437 1.81579 -0.1 + vertex 12.7237 0.214368 -0.1 + vertex 13.0525 -0.187573 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.4375 16.5104 -0.1 + vertex 13.3813 18.0182 -0.1 + vertex 12.71 18.6425 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2363 2.34533 -0.1 + vertex 12.3607 0.629996 -0.1 + vertex 12.7237 0.214368 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.4375 16.5104 -0.1 + vertex 12.71 18.6425 -0.1 + vertex 12.1494 19.1886 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.77546 17.1908 -0.1 + vertex 12.1494 19.1886 -0.1 + vertex 11.6914 19.6646 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 8.87708 15.8492 -0.1 + vertex 15.0092 9.15168 -0.1 + vertex 8.99158 15.8746 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.09841 17.8163 -0.1 + vertex 11.6914 19.6646 -0.1 + vertex 11.3113 20.1069 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.09841 17.8163 -0.1 + vertex 11.3113 20.1069 -0.1 + vertex 10.9846 20.5521 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.31493 18.4459 -0.1 + vertex 10.9846 20.5521 -0.1 + vertex 10.6869 21.0368 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.0356 2.90743 -0.1 + vertex 11.5355 1.49693 -0.1 + vertex 12.3607 0.629996 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.498 4.716 -0.1 + vertex 10.5842 2.40247 -0.1 + vertex 11.5355 1.49693 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.9444 18.7161 -0.1 + vertex 10.6869 21.0368 -0.1 + vertex 10.3935 21.5973 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.36805 19.075 -0.1 + vertex 10.3935 21.5973 -0.1 + vertex 10.0801 22.2703 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.1494 19.1886 -0.1 + vertex 9.77546 17.1908 -0.1 + vertex 10.4375 16.5104 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.21113 19.1268 -0.1 + vertex 10.0801 22.2703 -0.1 + vertex 9.72206 23.0922 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.6914 19.6646 -0.1 + vertex 9.46246 17.4938 -0.1 + vertex 9.77546 17.1908 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.21113 19.1268 -0.1 + vertex 9.72206 23.0922 -0.1 + vertex 9.38213 23.8626 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.6914 19.6646 -0.1 + vertex 9.09841 17.8163 -0.1 + vertex 9.46246 17.4938 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.76329 26.0408 -0.1 + vertex 9.38213 23.8626 -0.1 + vertex 9.08206 24.476 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.12606 25.9588 -0.1 + vertex 9.08206 24.476 -0.1 + vertex 8.80411 24.9522 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.55919 25.8755 -0.1 + vertex 8.80411 24.9522 -0.1 + vertex 8.6679 25.145 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.55919 25.8755 -0.1 + vertex 8.6679 25.145 -0.1 + vertex 8.53058 25.3107 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.55919 25.8755 -0.1 + vertex 8.53058 25.3107 -0.1 + vertex 8.38993 25.4519 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9846 20.5521 -0.1 + vertex 8.31493 18.4459 -0.1 + vertex 9.09841 17.8163 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.92584 25.7528 -0.1 + vertex 8.38993 25.4519 -0.1 + vertex 8.24373 25.571 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.92584 25.7528 -0.1 + vertex 8.24373 25.571 -0.1 + vertex 8.08977 25.6705 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.6869 21.0368 -0.1 + vertex 7.9444 18.7161 -0.1 + vertex 8.31493 18.4459 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.38993 25.4519 -0.1 + vertex 7.92584 25.7528 -0.1 + vertex 7.55919 25.8755 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.3935 21.5973 -0.1 + vertex 7.62063 18.9319 -0.1 + vertex 7.9444 18.7161 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.80411 24.9522 -0.1 + vertex 7.55919 25.8755 -0.1 + vertex 7.12606 25.9588 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.3935 21.5973 -0.1 + vertex 7.36805 19.075 -0.1 + vertex 7.62063 18.9319 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.0801 22.2703 -0.1 + vertex 7.21113 19.1268 -0.1 + vertex 7.36805 19.075 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.76329 26.0408 -0.1 + vertex 9.08206 24.476 -0.1 + vertex 7.12606 25.9588 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.38213 23.8626 -0.1 + vertex 6.76329 26.0408 -0.1 + vertex 7.21113 19.1268 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.21113 19.1268 -0.1 + vertex 6.76329 26.0408 -0.1 + vertex 7.15267 19.0966 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.41393 26.1795 -0.1 + vertex 7.15267 19.0966 -0.1 + vertex 6.76329 26.0408 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.07308 26.3793 -0.1 + vertex 7.15267 19.0966 -0.1 + vertex 6.41393 26.1795 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.816408 27.0884 -0.1 + vertex 7.15267 19.0966 -0.1 + vertex 6.07308 26.3793 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 1.92323 12.5289 -0.1 + vertex 7.1242 19.0144 -0.1 + vertex 1.90284 12.6291 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.734953 27.0776 -0.1 + vertex 7.15267 19.0966 -0.1 + vertex 0.816408 27.0884 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.870515 27.1101 -0.1 + vertex 6.07308 26.3793 -0.1 + vertex 5.73586 26.6445 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.870515 27.1101 -0.1 + vertex 5.73586 26.6445 -0.1 + vertex 5.39739 26.9794 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 6.22936 5.32709 -0.1 + vertex 7.1242 19.0144 -0.1 + vertex 1.92323 12.5289 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.870515 27.1101 -0.1 + vertex 5.39739 26.9794 -0.1 + vertex 5.05276 27.3884 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.908598 27.1645 -0.1 + vertex 5.05276 27.3884 -0.1 + vertex 4.69711 27.8759 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.944126 27.2693 -0.1 + vertex 4.69711 27.8759 -0.1 + vertex 4.32553 28.4461 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 6.22936 5.32709 -0.1 + vertex 7.07462 4.9138 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.04514 28.0688 -0.1 + vertex 4.32553 28.4461 -0.1 + vertex 4.09087 28.8303 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.04514 28.0688 -0.1 + vertex 4.09087 28.8303 -0.1 + vertex 3.91157 29.1502 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.0601 28.6106 -0.1 + vertex 3.91157 29.1502 -0.1 + vertex 3.78021 29.4348 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.07949 29.2543 -0.1 + vertex 3.78021 29.4348 -0.1 + vertex 3.68937 29.7129 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.13903 29.8907 -0.1 + vertex 3.68937 29.7129 -0.1 + vertex 3.63162 30.0135 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.24074 30.5277 -0.1 + vertex 3.63162 30.0135 -0.1 + vertex 3.59957 30.3654 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.91748 12.4352 -0.1 + vertex 6.22936 5.32709 -0.1 + vertex 1.92323 12.5289 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.38662 31.173 -0.1 + vertex 3.59957 30.3654 -0.1 + vertex 3.58282 31.3388 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.0741 -3.47638 -0.1 + vertex 16.3254 -5.59514 -0.1 + vertex 14.1768 -3.32005 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.3254 -5.59514 -0.1 + vertex 14.0741 -3.47638 -0.1 + vertex 15.6549 -5.93433 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.8248 -3.7697 -0.1 + vertex 15.6549 -5.93433 -0.1 + vertex 14.0741 -3.47638 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6549 -5.93433 -0.1 + vertex 13.8248 -3.7697 -0.1 + vertex 15.0129 -6.23993 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.5249 -4.03275 -0.1 + vertex 15.0129 -6.23993 -0.1 + vertex 13.8248 -3.7697 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0129 -6.23993 -0.1 + vertex 13.5249 -4.03275 -0.1 + vertex 14.3941 -6.51356 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.1837 -4.26011 -0.1 + vertex 14.3941 -6.51356 -0.1 + vertex 13.5249 -4.03275 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.3941 -6.51356 -0.1 + vertex 13.1837 -4.26011 -0.1 + vertex 13.793 -6.75686 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.8106 -4.44636 -0.1 + vertex 13.793 -6.75686 -0.1 + vertex 13.1837 -4.26011 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.793 -6.75686 -0.1 + vertex 12.8106 -4.44636 -0.1 + vertex 13.2041 -6.97145 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.4149 -4.5861 -0.1 + vertex 13.2041 -6.97145 -0.1 + vertex 12.8106 -4.44636 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.2041 -6.97145 -0.1 + vertex 12.4149 -4.5861 -0.1 + vertex 12.6221 -7.15898 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.006 -4.67391 -0.1 + vertex 12.6221 -7.15898 -0.1 + vertex 12.4149 -4.5861 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.6221 -7.15898 -0.1 + vertex 12.006 -4.67391 -0.1 + vertex 12.0414 -7.32107 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.5931 -4.70438 -0.1 + vertex 12.0414 -7.32107 -0.1 + vertex 12.006 -4.67391 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5931 -4.70438 -0.1 + vertex 11.4568 -7.45935 -0.1 + vertex 12.0414 -7.32107 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.26 -4.69402 -0.1 + vertex 11.4568 -7.45935 -0.1 + vertex 11.5931 -4.70438 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9319 -4.66264 -0.1 + vertex 11.4568 -7.45935 -0.1 + vertex 11.26 -4.69402 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9319 -4.66264 -0.1 + vertex 10.8627 -7.57545 -0.1 + vertex 11.4568 -7.45935 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.608 -4.6098 -0.1 + vertex 10.8627 -7.57545 -0.1 + vertex 10.9319 -4.66264 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.2538 -7.67101 -0.1 + vertex 10.608 -4.6098 -0.1 + vertex 10.2875 -4.53506 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.608 -4.6098 -0.1 + vertex 10.2538 -7.67101 -0.1 + vertex 10.8627 -7.57545 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.62459 -7.74765 -0.1 + vertex 10.2875 -4.53506 -0.1 + vertex 9.96977 -4.43796 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.809 -5.75259 -0.1 + vertex 9.96977 -4.43796 -0.1 + vertex 9.65389 -4.31807 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.2875 -4.53506 -0.1 + vertex 9.62459 -7.74765 -0.1 + vertex 10.2538 -7.67101 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.809 -5.75259 -0.1 + vertex 9.65389 -4.31807 -0.1 + vertex 9.33912 -4.17495 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.809 -5.75259 -0.1 + vertex 9.33912 -4.17495 -0.1 + vertex 9.02468 -4.00814 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.96977 -4.43796 -0.1 + vertex 7.809 -5.75259 -0.1 + vertex 9.62459 -7.74765 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.809 -5.75259 -0.1 + vertex 9.02468 -4.00814 -0.1 + vertex 8.70978 -3.81721 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.04277 -4.97268 -0.1 + vertex 8.70978 -3.81721 -0.1 + vertex 8.39365 -3.60171 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.04277 -4.97268 -0.1 + vertex 8.39365 -3.60171 -0.1 + vertex 8.0755 -3.36119 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.62459 -7.74765 -0.1 + vertex 7.809 -5.75259 -0.1 + vertex 8.96966 -7.80701 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.809 -5.75259 -0.1 + vertex 7.56097 -7.88041 -0.1 + vertex 8.96966 -7.80701 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.2241 -5.88439 -0.1 + vertex 7.56097 -7.88041 -0.1 + vertex 7.809 -5.75259 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.87672 -5.95074 -0.1 + vertex 7.56097 -7.88041 -0.1 + vertex 7.2241 -5.88439 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.53505 -5.98957 -0.1 + vertex 7.56097 -7.88041 -0.1 + vertex 6.87672 -5.95074 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.04455 -7.91255 -0.1 + vertex 6.53505 -5.98957 -0.1 + vertex 6.18777 -5.99984 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.53505 -5.98957 -0.1 + vertex 6.04455 -7.91255 -0.1 + vertex 7.56097 -7.88041 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.82356 -5.98052 -0.1 + vertex 6.04455 -7.91255 -0.1 + vertex 6.18777 -5.99984 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.82356 -5.98052 -0.1 + vertex 5.49083 -7.9071 -0.1 + vertex 6.04455 -7.91255 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.4311 -5.93055 -0.1 + vertex 5.49083 -7.9071 -0.1 + vertex 5.82356 -5.98052 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.4311 -5.93055 -0.1 + vertex 5.0434 -7.88498 -0.1 + vertex 5.49083 -7.9071 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.99906 -5.84891 -0.1 + vertex 5.0434 -7.88498 -0.1 + vertex 5.4311 -5.93055 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.99906 -5.84891 -0.1 + vertex 4.67971 -7.84446 -0.1 + vertex 5.0434 -7.88498 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.11342 -7.70123 -0.1 + vertex 4.99906 -5.84891 -0.1 + vertex 4.51611 -5.73457 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.99906 -5.84891 -0.1 + vertex 4.37723 -7.78379 -0.1 + vertex 4.67971 -7.84446 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.99906 -5.84891 -0.1 + vertex 4.11342 -7.70123 -0.1 + vertex 4.37723 -7.78379 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.40104 -7.34622 -0.1 + vertex 4.51611 -5.73457 -0.1 + vertex 3.97093 -5.58648 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.51611 -5.73457 -0.1 + vertex 3.86574 -7.59505 -0.1 + vertex 4.11342 -7.70123 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.51611 -5.73457 -0.1 + vertex 3.40104 -7.34622 -0.1 + vertex 3.86574 -7.59505 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.71562 -6.94693 -0.1 + vertex 3.97093 -5.58648 -0.1 + vertex 3.25174 -5.37115 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 -0.1 + vertex 2.71562 -6.94693 -0.1 + vertex 3.40104 -7.34622 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.534 -5.13555 -0.1 + vertex 2.71562 -6.94693 -0.1 + vertex 3.25174 -5.37115 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.05193 -5.91722 -0.1 + vertex 2.534 -5.13555 -0.1 + vertex 1.81816 -4.87986 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.05193 -5.91722 -0.1 + vertex 1.81816 -4.87986 -0.1 + vertex 1.10471 -4.60426 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.534 -5.13555 -0.1 + vertex 1.05193 -5.91722 -0.1 + vertex 2.71562 -6.94693 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.394112 -4.30895 -0.1 + vertex 1.05193 -5.91722 -0.1 + vertex 1.10471 -4.60426 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.694871 -4.82613 -0.1 + vertex 0.394112 -4.30895 -0.1 + vertex -0.313177 -3.99411 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.394112 -4.30895 -0.1 + vertex -0.694871 -4.82613 -0.1 + vertex 1.05193 -5.91722 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.01669 -3.65993 -0.1 + vertex -0.694871 -4.82613 -0.1 + vertex -0.313177 -3.99411 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.47177 -3.7788 -0.1 + vertex -1.01669 -3.65993 -0.1 + vertex -1.71595 -3.30659 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.47177 -3.7788 -0.1 + vertex -1.71595 -3.30659 -0.1 + vertex -2.32857 -3.00041 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.01669 -3.65993 -0.1 + vertex -2.47177 -3.7788 -0.1 + vertex -0.694871 -4.82613 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.32857 -3.00041 -0.1 + vertex -2.8551 -3.51984 -0.1 + vertex -2.47177 -3.7788 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.87688 -2.74967 -0.1 + vertex -2.8551 -3.51984 -0.1 + vertex -2.32857 -3.00041 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.87688 -2.74967 -0.1 + vertex -3.18232 -3.26618 -0.1 + vertex -2.8551 -3.51984 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.44099 -3.03042 -0.1 + vertex -2.87688 -2.74967 -0.1 + vertex -3.301 -2.58026 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.87688 -2.74967 -0.1 + vertex -3.44099 -3.03042 -0.1 + vertex -3.18232 -3.26618 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.61865 -2.82513 -0.1 + vertex -3.301 -2.58026 -0.1 + vertex -3.54104 -2.51804 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.301 -2.58026 -0.1 + vertex -3.61865 -2.82513 -0.1 + vertex -3.44099 -3.03042 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 -0.1 + vertex -3.54104 -2.51804 -0.1 + vertex -3.62666 -2.52788 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70601 -2.60189 -0.1 + vertex -3.62666 -2.52788 -0.1 + vertex -3.68113 -2.55635 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.54104 -2.51804 -0.1 + vertex -3.70285 -2.66292 -0.1 + vertex -3.61865 -2.82513 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.62666 -2.52788 -0.1 + vertex -3.70601 -2.60189 -0.1 + vertex -3.70285 -2.66292 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.5419 27.5737 -0.1 + vertex -21.2799 26.5937 -0.1 + vertex -21.2563 26.5576 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.7979 27.6578 -0.1 + vertex -21.3473 26.6332 -0.1 + vertex -21.2799 26.5937 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5951 26.7172 -0.1 + vertex -21.1001 27.7294 -0.1 + vertex -21.4599 27.7917 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.1001 27.7294 -0.1 + vertex -21.5951 26.7172 -0.1 + vertex -21.3473 26.6332 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.4599 27.7917 -0.1 + vertex -21.9618 26.7994 -0.1 + vertex -21.5951 26.7172 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.3975 27.9007 -0.1 + vertex -21.9618 26.7994 -0.1 + vertex -21.4599 27.7917 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.3975 27.9007 -0.1 + vertex -22.4095 26.8695 -0.1 + vertex -21.9618 26.7994 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.3975 27.9007 -0.1 + vertex -22.8078 26.9423 -0.1 + vertex -22.4095 26.8695 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.1232 27.9594 -0.1 + vertex -22.8078 26.9423 -0.1 + vertex -22.3975 27.9007 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.1232 27.9594 -0.1 + vertex -23.1972 27.0531 -0.1 + vertex -22.8078 26.9423 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.1232 27.9594 -0.1 + vertex -23.56 27.1917 -0.1 + vertex -23.1972 27.0531 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.7335 27.9892 -0.1 + vertex -23.56 27.1917 -0.1 + vertex -23.1232 27.9594 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.7335 27.9892 -0.1 + vertex -23.8785 27.3484 -0.1 + vertex -23.56 27.1917 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.7335 27.9892 -0.1 + vertex -24.1346 27.513 -0.1 + vertex -23.8785 27.3484 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.1643 27.9885 -0.1 + vertex -24.1346 27.513 -0.1 + vertex -23.7335 27.9892 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3632 27.7532 -0.1 + vertex -24.1643 27.9885 -0.1 + vertex -24.2923 27.9761 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.1643 27.9885 -0.1 + vertex -24.3107 27.6757 -0.1 + vertex -24.1346 27.513 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3858 27.8943 -0.1 + vertex -24.2923 27.9761 -0.1 + vertex -24.3515 27.9554 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.1643 27.9885 -0.1 + vertex -24.3632 27.7532 -0.1 + vertex -24.3107 27.6757 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.2923 27.9761 -0.1 + vertex -24.3858 27.8943 -0.1 + vertex -24.3889 27.8265 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.2923 27.9761 -0.1 + vertex -24.3889 27.8265 -0.1 + vertex -24.3632 27.7532 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.89877 27.2865 -0.1 + vertex -10.5394 24.4322 -0.1 + vertex -10.5349 24.4109 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.2816 27.5955 -0.1 + vertex -10.6591 24.5009 -0.1 + vertex -10.5394 24.4322 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.2816 27.5955 -0.1 + vertex -10.9077 24.5958 -0.1 + vertex -10.6591 24.5009 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.2816 27.5955 -0.1 + vertex -11.2625 24.7069 -0.1 + vertex -10.9077 24.5958 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.5342 27.7352 -0.1 + vertex -11.2625 24.7069 -0.1 + vertex -10.2816 27.5955 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.5342 27.7352 -0.1 + vertex -11.7825 24.8213 -0.1 + vertex -11.2625 24.7069 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.5342 27.7352 -0.1 + vertex -12.4277 24.907 -0.1 + vertex -11.7825 24.8213 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.6053 27.816 -0.1 + vertex -12.4277 24.907 -0.1 + vertex -11.5342 27.7352 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.6053 27.816 -0.1 + vertex -13.1566 24.9634 -0.1 + vertex -12.4277 24.907 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.5445 27.8374 -0.1 + vertex -13.1566 24.9634 -0.1 + vertex -12.6053 27.816 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.5445 27.8374 -0.1 + vertex -13.9275 24.99 -0.1 + vertex -13.1566 24.9634 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.4014 27.7989 -0.1 + vertex -13.9275 24.99 -0.1 + vertex -13.5445 27.8374 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.4014 27.7989 -0.1 + vertex -14.6988 24.986 -0.1 + vertex -13.9275 24.99 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.2259 27.7001 -0.1 + vertex -14.6988 24.986 -0.1 + vertex -14.4014 27.7989 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.2259 27.7001 -0.1 + vertex -15.4289 24.9511 -0.1 + vertex -14.6988 24.986 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.0674 27.5405 -0.1 + vertex -15.4289 24.9511 -0.1 + vertex -15.2259 27.7001 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.0674 27.5405 -0.1 + vertex -16.0762 24.8844 -0.1 + vertex -15.4289 24.9511 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.9758 27.3196 -0.1 + vertex -16.0762 24.8844 -0.1 + vertex -16.0674 27.5405 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.0762 24.8844 -0.1 + vertex -16.9758 27.3196 -0.1 + vertex -16.599 24.7853 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9758 27.3196 -0.1 + vertex -17.1707 24.6702 -0.1 + vertex -16.599 24.7853 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9758 27.3196 -0.1 + vertex -18.0818 24.5233 -0.1 + vertex -17.1707 24.6702 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -19.3233 26.703 -0.1 + vertex -18.0818 24.5233 -0.1 + vertex -16.9758 27.3196 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.0818 24.5233 -0.1 + vertex -19.3233 26.703 -0.1 + vertex -19.207 24.3637 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2669 26.4994 -0.1 + vertex -19.3233 26.703 -0.1 + vertex -19.9368 27.2141 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2563 26.5576 -0.1 + vertex -19.9368 27.2141 -0.1 + vertex -20.1227 27.3549 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2563 26.5576 -0.1 + vertex -20.1227 27.3549 -0.1 + vertex -20.3206 27.4738 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2997 26.4466 -0.1 + vertex -19.3233 26.703 -0.1 + vertex -21.2669 26.4994 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2563 26.5576 -0.1 + vertex -20.3206 27.4738 -0.1 + vertex -20.5419 27.5737 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2799 26.5937 -0.1 + vertex -20.5419 27.5737 -0.1 + vertex -20.7979 27.6578 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.3473 26.6332 -0.1 + vertex -20.7979 27.6578 -0.1 + vertex -21.1001 27.7294 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.9368 27.2141 -0.1 + vertex -21.2563 26.5576 -0.1 + vertex -21.2669 26.4994 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.3233 26.703 -0.1 + vertex -20.4207 24.2101 -0.1 + vertex -19.207 24.3637 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.3233 26.703 -0.1 + vertex -21.2997 26.4466 -0.1 + vertex -20.4207 24.2101 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.3558 26.3992 -0.1 + vertex -20.4207 24.2101 -0.1 + vertex -21.2997 26.4466 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.4368 26.3569 -0.1 + vertex -20.4207 24.2101 -0.1 + vertex -21.3558 26.3992 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.6785 26.2874 -0.1 + vertex -20.4207 24.2101 -0.1 + vertex -21.4368 26.3569 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.0356 26.2369 -0.1 + vertex -20.4207 24.2101 -0.1 + vertex -21.6785 26.2874 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.3692 23.8604 -0.1 + vertex -22.0356 26.2369 -0.1 + vertex -22.5186 26.2045 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.3692 23.8604 -0.1 + vertex -22.5186 26.2045 -0.1 + vertex -23.1385 26.1891 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.0356 26.2369 -0.1 + vertex -23.3692 23.8604 -0.1 + vertex -20.4207 24.2101 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.6523 24.0122 -0.1 + vertex -23.3692 23.8604 -0.1 + vertex -23.1385 26.1891 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.3692 23.8604 -0.1 + vertex -24.6523 24.0122 -0.1 + vertex -24.1455 19.0472 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8316 26.205 -0.1 + vertex -24.6523 24.0122 -0.1 + vertex -23.1385 26.1891 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8316 26.205 -0.1 + vertex -26.0107 24.2804 -0.1 + vertex -24.6523 24.0122 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.3751 26.2567 -0.1 + vertex -26.0107 24.2804 -0.1 + vertex -24.8316 26.205 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.3751 26.2567 -0.1 + vertex -26.5818 24.4056 -0.1 + vertex -26.0107 24.2804 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.1227 24.5501 -0.1 + vertex -26.3751 26.2567 -0.1 + vertex -26.9353 26.3003 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.3751 26.2567 -0.1 + vertex -27.1227 24.5501 -0.1 + vertex -26.5818 24.4056 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.636 24.7152 -0.1 + vertex -26.9353 26.3003 -0.1 + vertex -27.4097 26.3653 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.9353 26.3003 -0.1 + vertex -27.636 24.7152 -0.1 + vertex -27.1227 24.5501 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.1248 24.9019 -0.1 + vertex -27.4097 26.3653 -0.1 + vertex -27.8395 26.4592 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.4097 26.3653 -0.1 + vertex -28.1248 24.9019 -0.1 + vertex -27.636 24.7152 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.5919 25.1115 -0.1 + vertex -27.8395 26.4592 -0.1 + vertex -28.2663 26.5892 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.8395 26.4592 -0.1 + vertex -28.5919 25.1115 -0.1 + vertex -28.1248 24.9019 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.0402 25.3453 -0.1 + vertex -28.2663 26.5892 -0.1 + vertex -28.7314 26.7626 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2663 26.5892 -0.1 + vertex -29.0402 25.3453 -0.1 + vertex -28.5919 25.1115 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.4725 25.6043 -0.1 + vertex -28.7314 26.7626 -0.1 + vertex -29.2762 26.9865 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.7314 26.7626 -0.1 + vertex -29.4725 25.6043 -0.1 + vertex -29.0402 25.3453 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.2762 26.9865 -0.1 + vertex -29.8918 25.8898 -0.1 + vertex -29.4725 25.6043 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.0875 27.3102 -0.1 + vertex -29.8918 25.8898 -0.1 + vertex -29.2762 26.9865 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.0875 27.3102 -0.1 + vertex -30.6514 26.471 -0.1 + vertex -29.8918 25.8898 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.9143 26.7038 -0.1 + vertex -30.0875 27.3102 -0.1 + vertex -30.6543 27.4912 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.1043 26.9038 -0.1 + vertex -30.6543 27.4912 -0.1 + vertex -30.8579 27.5312 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.0875 27.3102 -0.1 + vertex -30.9143 26.7038 -0.1 + vertex -30.6514 26.471 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2248 27.0754 -0.1 + vertex -30.8579 27.5312 -0.1 + vertex -31.0145 27.539 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.6543 27.4912 -0.1 + vertex -31.1043 26.9038 -0.1 + vertex -30.9143 26.7038 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.272 27.3506 -0.1 + vertex -31.0145 27.539 -0.1 + vertex -31.1289 27.5158 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.272 27.3506 -0.1 + vertex -31.1289 27.5158 -0.1 + vertex -31.2059 27.4629 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.8579 27.5312 -0.1 + vertex -31.2248 27.0754 -0.1 + vertex -31.1043 26.9038 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.0145 27.539 -0.1 + vertex -31.272 27.3506 -0.1 + vertex -31.2795 27.2229 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.0145 27.539 -0.1 + vertex -31.2795 27.2229 -0.1 + vertex -31.2248 27.0754 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.22936 5.32709 -0.1 + vertex 1.91748 12.4352 -0.1 + vertex 5.27855 5.76024 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.32553 28.4461 -0.1 + vertex 1.00441 27.6053 -0.1 + vertex 0.944126 27.2693 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.60924 32.0876 -0.1 + vertex 1.57871 31.8344 -0.1 + vertex 3.58282 31.3388 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.69711 27.8759 -0.1 + vertex 0.944126 27.2693 -0.1 + vertex 0.908598 27.1645 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.38662 31.173 -0.1 + vertex 3.58282 31.3388 -0.1 + vertex 1.57871 31.8344 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 1.85843 12.7398 -0.1 + vertex 1.90284 12.6291 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.59957 30.3654 -0.1 + vertex 1.38662 31.173 -0.1 + vertex 1.24074 30.5277 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.32553 28.4461 -0.1 + vertex 1.04514 28.0688 -0.1 + vertex 1.00441 27.6053 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.63162 30.0135 -0.1 + vertex 1.24074 30.5277 -0.1 + vertex 1.13903 29.8907 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.68937 29.7129 -0.1 + vertex 1.13903 29.8907 -0.1 + vertex 1.07949 29.2543 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.78021 29.4348 -0.1 + vertex 1.07949 29.2543 -0.1 + vertex 1.0601 28.6106 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.91157 29.1502 -0.1 + vertex 1.0601 28.6106 -0.1 + vertex 1.04514 28.0688 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.05276 27.3884 -0.1 + vertex 0.908598 27.1645 -0.1 + vertex 0.870515 27.1101 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 1.7147 12.9716 -0.1 + vertex 1.85843 12.7398 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.07308 26.3793 -0.1 + vertex 0.870515 27.1101 -0.1 + vertex 0.816408 27.0884 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 1.51175 13.1874 -0.1 + vertex 1.7147 12.9716 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 1.25015 13.3869 -0.1 + vertex 1.51175 13.1874 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 0.930489 13.5702 -0.1 + vertex 1.25015 13.3869 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.15267 19.0966 -0.1 + vertex 0.734953 27.0776 -0.1 + vertex 7.1242 19.0144 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.371032 14.021 -0.1 + vertex 7.1242 19.0144 -0.1 + vertex 0.734953 27.0776 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 0.55335 13.737 -0.1 + vertex 0.930489 13.5702 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.917111 14.138 -0.1 + vertex 0.734953 27.0776 -0.1 + vertex 0.505992 27.0868 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.51834 14.2381 -0.1 + vertex 0.505992 27.0868 -0.1 + vertex 0.215611 27.1342 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 0.119316 13.8873 -0.1 + vertex 0.55335 13.737 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.17413 14.3212 -0.1 + vertex 0.215611 27.1342 -0.1 + vertex -0.104203 27.2162 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex -0.371032 14.021 -0.1 + vertex 0.119316 13.8873 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.8839 14.3873 -0.1 + vertex -0.104203 27.2162 -0.1 + vertex -0.438314 27.347 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.54439 27.3597 -0.1 + vertex -0.438314 27.347 -0.1 + vertex -0.7749 27.5359 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.734953 27.0776 -0.1 + vertex -0.917111 14.138 -0.1 + vertex -0.371032 14.021 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.54439 27.3597 -0.1 + vertex -0.7749 27.5359 -0.1 + vertex -1.11256 27.7809 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.44763 27.4571 -0.1 + vertex -1.11256 27.7809 -0.1 + vertex -1.44988 28.0795 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.505992 27.0868 -0.1 + vertex -1.51834 14.2381 -0.1 + vertex -0.917111 14.138 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.44763 27.4571 -0.1 + vertex -1.44988 28.0795 -0.1 + vertex -1.78547 28.4297 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.37156 27.6173 -0.1 + vertex -1.78547 28.4297 -0.1 + vertex -2.11792 28.8291 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.215611 27.1342 -0.1 + vertex -2.17413 14.3212 -0.1 + vertex -1.51834 14.2381 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.31368 27.8729 -0.1 + vertex -2.11792 28.8291 -0.1 + vertex -2.44583 29.2754 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.27149 28.2565 -0.1 + vertex -2.44583 29.2754 -0.1 + vertex -2.7678 29.7664 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.11256 27.7809 -0.1 + vertex -6.44763 27.4571 -0.1 + vertex -6.54439 27.3597 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.24249 28.8007 -0.1 + vertex -2.7678 29.7664 -0.1 + vertex -3.08241 30.2998 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.22417 29.538 -0.1 + vertex -3.08241 30.2998 -0.1 + vertex -3.38828 30.8734 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.438314 27.347 -0.1 + vertex -6.54439 27.3597 -0.1 + vertex -3.64708 14.4362 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.22417 29.538 -0.1 + vertex -3.38828 30.8734 -0.1 + vertex -3.68399 31.485 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.20957 31.7226 -0.1 + vertex -3.68399 31.485 -0.1 + vertex -3.96814 32.1322 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.20957 31.7226 -0.1 + vertex -3.96814 32.1322 -0.1 + vertex -4.23933 32.8128 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.78547 28.4297 -0.1 + vertex -6.37156 27.6173 -0.1 + vertex -6.44763 27.4571 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.19415 33.3563 -0.1 + vertex -4.23933 32.8128 -0.1 + vertex -4.49616 33.5245 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.19415 33.3563 -0.1 + vertex -4.49616 33.5245 -0.1 + vertex -4.73722 34.2652 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.15766 34.7516 -0.1 + vertex -4.73722 34.2652 -0.1 + vertex -4.96111 35.0324 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.15766 34.7516 -0.1 + vertex -4.96111 35.0324 -0.1 + vertex -5.11886 35.5644 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.10555 35.7605 -0.1 + vertex -5.11886 35.5644 -0.1 + vertex -5.26884 35.9859 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.7678 29.7664 -0.1 + vertex -6.24249 28.8007 -0.1 + vertex -6.27149 28.2565 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.07534 36.0738 -0.1 + vertex -5.26884 35.9859 -0.1 + vertex -5.41174 36.2975 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.92579 36.4611 -0.1 + vertex -5.41174 36.2975 -0.1 + vertex -5.54821 36.5001 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.86569 36.5344 -0.1 + vertex -5.54821 36.5001 -0.1 + vertex -5.61425 36.5608 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.80457 36.5812 -0.1 + vertex -5.61425 36.5608 -0.1 + vertex -5.67893 36.5944 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.80457 36.5812 -0.1 + vertex -5.67893 36.5944 -0.1 + vertex -5.74234 36.6012 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.61425 36.5608 -0.1 + vertex -5.80457 36.5812 -0.1 + vertex -5.86569 36.5344 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.54821 36.5001 -0.1 + vertex -5.86569 36.5344 -0.1 + vertex -5.92579 36.4611 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.41174 36.2975 -0.1 + vertex -5.92579 36.4611 -0.1 + vertex -6.04327 36.2349 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.41174 36.2975 -0.1 + vertex -6.04327 36.2349 -0.1 + vertex -6.07534 36.0738 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.26884 35.9859 -0.1 + vertex -6.07534 36.0738 -0.1 + vertex -6.10555 35.7605 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.11886 35.5644 -0.1 + vertex -6.10555 35.7605 -0.1 + vertex -6.15766 34.7516 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.73722 34.2652 -0.1 + vertex -6.15766 34.7516 -0.1 + vertex -6.19415 33.3563 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.23933 32.8128 -0.1 + vertex -6.19415 33.3563 -0.1 + vertex -6.20957 31.7226 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.68399 31.485 -0.1 + vertex -6.20957 31.7226 -0.1 + vertex -6.22417 29.538 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.08241 30.2998 -0.1 + vertex -6.22417 29.538 -0.1 + vertex -6.24249 28.8007 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.44583 29.2754 -0.1 + vertex -6.27149 28.2565 -0.1 + vertex -6.31368 27.8729 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.11792 28.8291 -0.1 + vertex -6.31368 27.8729 -0.1 + vertex -6.37156 27.6173 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.104203 27.2162 -0.1 + vertex -2.8839 14.3873 -0.1 + vertex -2.17413 14.3212 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.438314 27.347 -0.1 + vertex -3.64708 14.4362 -0.1 + vertex -2.8839 14.3873 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.65192 27.3056 -0.1 + vertex -3.64708 14.4362 -0.1 + vertex -6.54439 27.3597 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.64708 14.4362 -0.1 + vertex -6.65192 27.3056 -0.1 + vertex -4.46307 14.4678 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -10.904 19.9248 -0.1 + vertex -4.46307 14.4678 -0.1 + vertex -6.65192 27.3056 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.46307 14.4678 -0.1 + vertex -10.904 19.9248 -0.1 + vertex -5.33129 14.482 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.904 19.9248 -0.1 + vertex -6.65192 27.3056 -0.1 + vertex -6.80178 27.2682 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5349 24.4109 -0.1 + vertex -6.80178 27.2682 -0.1 + vertex -6.99768 27.2475 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.33129 14.482 -0.1 + vertex -10.904 19.9248 -0.1 + vertex -6.25117 14.4787 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5349 24.4109 -0.1 + vertex -6.99768 27.2475 -0.1 + vertex -7.24334 27.2437 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5349 24.4109 -0.1 + vertex -7.24334 27.2437 -0.1 + vertex -7.89877 27.2865 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5394 24.4322 -0.1 + vertex -7.89877 27.2865 -0.1 + vertex -8.79778 27.3973 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.80178 27.2682 -0.1 + vertex -10.5349 24.4109 -0.1 + vertex -10.904 19.9248 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.25117 14.4787 -0.1 + vertex -10.9261 19.832 -0.1 + vertex -7.22211 14.4578 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5394 24.4322 -0.1 + vertex -8.79778 27.3973 -0.1 + vertex -10.2816 27.5955 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -10.9261 19.832 -0.1 + vertex -6.25117 14.4787 -0.1 + vertex -10.904 19.9248 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.0035 20.0644 -0.1 + vertex -10.5349 24.4109 -0.1 + vertex -10.5711 24.4 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -10.9948 19.7221 -0.1 + vertex -7.22211 14.4578 -0.1 + vertex -10.9261 19.832 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.22211 14.4578 -0.1 + vertex -10.9948 19.7221 -0.1 + vertex -9.25643 14.3812 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5349 24.4109 -0.1 + vertex -10.9294 20.0018 -0.1 + vertex -10.904 19.9248 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5349 24.4109 -0.1 + vertex -11.0035 20.0644 -0.1 + vertex -10.9294 20.0018 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5711 24.4 -0.1 + vertex -11.1271 20.114 -0.1 + vertex -11.0035 20.0644 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5711 24.4 -0.1 + vertex -11.3013 20.1521 -0.1 + vertex -11.1271 20.114 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5711 24.4 -0.1 + vertex -11.5271 20.1801 -0.1 + vertex -11.3013 20.1521 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5711 24.4 -0.1 + vertex -12.1376 20.2112 -0.1 + vertex -11.5271 20.1801 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.1612 23.8467 -0.1 + vertex -12.1376 20.2112 -0.1 + vertex -10.5711 24.4 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.1376 20.2112 -0.1 + vertex -14.1612 23.8467 -0.1 + vertex -12.9665 20.2187 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.9665 20.2187 -0.1 + vertex -14.1612 23.8467 -0.1 + vertex -13.9037 20.2008 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1612 23.8467 -0.1 + vertex -14.8461 20.153 -0.1 + vertex -13.9037 20.2008 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.0412 23.3999 -0.1 + vertex -14.8461 20.153 -0.1 + vertex -14.1612 23.8467 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.8461 20.153 -0.1 + vertex -17.0412 23.3999 -0.1 + vertex -15.684 20.0825 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.684 20.0825 -0.1 + vertex -17.0412 23.3999 -0.1 + vertex -16.3079 19.9967 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.0412 23.3999 -0.1 + vertex -17.2235 19.8332 -0.1 + vertex -16.3079 19.9967 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -19.3158 23.0662 -0.1 + vertex -17.2235 19.8332 -0.1 + vertex -17.0412 23.3999 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.2235 19.8332 -0.1 + vertex -19.3158 23.0662 -0.1 + vertex -18.1791 19.6811 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.3158 23.0662 -0.1 + vertex -20.1671 19.4139 -0.1 + vertex -18.1791 19.6811 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.7318 22.8633 -0.1 + vertex -20.1671 19.4139 -0.1 + vertex -19.3158 23.0662 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.5474 22.7309 -0.1 + vertex -20.1671 19.4139 -0.1 + vertex -20.7318 22.8633 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.1849 19.2007 -0.1 + vertex -21.5474 22.7309 -0.1 + vertex -21.6404 22.7266 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.1849 19.2007 -0.1 + vertex -21.6404 22.7266 -0.1 + vertex -21.755 22.7463 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.1849 19.2007 -0.1 + vertex -21.755 22.7463 -0.1 + vertex -22.0315 22.8497 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5474 22.7309 -0.1 + vertex -22.1849 19.2007 -0.1 + vertex -20.1671 19.4139 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.3422 23.0246 -0.1 + vertex -22.1849 19.2007 -0.1 + vertex -22.0315 22.8497 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.1455 19.0472 -0.1 + vertex -22.3422 23.0246 -0.1 + vertex -22.6524 23.2546 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.1455 19.0472 -0.1 + vertex -22.6524 23.2546 -0.1 + vertex -23.3692 23.8604 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.3422 23.0246 -0.1 + vertex -24.1455 19.0472 -0.1 + vertex -22.1849 19.2007 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.10332 38.557 -0.1 + vertex 5.26494 38.4452 -0.1 + vertex 5.23504 38.5484 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.26494 38.4452 -0.1 + vertex 5.01738 38.4749 -0.1 + vertex 5.25596 38.2865 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.10332 38.557 -0.1 + vertex 5.23504 38.5484 -0.1 + vertex 5.20457 38.5758 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.10332 38.557 -0.1 + vertex 5.20457 38.5758 -0.1 + vertex 5.16325 38.5852 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.26494 38.4452 -0.1 + vertex 5.10332 38.557 -0.1 + vertex 5.01738 38.4749 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.25596 38.2865 -0.1 + vertex 5.01738 38.4749 -0.1 + vertex 5.21112 38.083 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.77727 38.1658 -0.1 + vertex 5.21112 38.083 -0.1 + vertex 5.01738 38.4749 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.21112 38.083 -0.1 + vertex 4.77727 38.1658 -0.1 + vertex 5.13345 37.8458 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.13345 37.8458 -0.1 + vertex 4.77727 38.1658 -0.1 + vertex 5.02596 37.5856 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.46246 37.6912 -0.1 + vertex 5.02596 37.5856 -0.1 + vertex 4.77727 38.1658 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.02596 37.5856 -0.1 + vertex 4.46246 37.6912 -0.1 + vertex 4.89167 37.3134 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.89167 37.3134 -0.1 + vertex 4.46246 37.6912 -0.1 + vertex 4.73361 37.0399 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.09252 37.0842 -0.1 + vertex 4.73361 37.0399 -0.1 + vertex 4.46246 37.6912 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.73361 37.0399 -0.1 + vertex 4.09252 37.0842 -0.1 + vertex 4.62814 36.8484 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.62814 36.8484 -0.1 + vertex 4.09252 37.0842 -0.1 + vertex 4.52293 36.6141 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.68699 36.3778 -0.1 + vertex 4.52293 36.6141 -0.1 + vertex 4.09252 37.0842 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.52293 36.6141 -0.1 + vertex 3.68699 36.3778 -0.1 + vertex 4.31688 36.0346 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.26543 35.6052 -0.1 + vertex 4.31688 36.0346 -0.1 + vertex 3.68699 36.3778 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.31688 36.0346 -0.1 + vertex 3.26543 35.6052 -0.1 + vertex 4.1227 35.3375 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.1227 35.3375 -0.1 + vertex 3.26543 35.6052 -0.1 + vertex 3.94762 34.5584 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.84738 34.7996 -0.1 + vertex 3.94762 34.5584 -0.1 + vertex 3.26543 35.6052 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.94762 34.5584 -0.1 + vertex 2.84738 34.7996 -0.1 + vertex 3.79886 33.7332 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.4524 33.9939 -0.1 + vertex 3.79886 33.7332 -0.1 + vertex 2.84738 34.7996 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.79886 33.7332 -0.1 + vertex 2.4524 33.9939 -0.1 + vertex 3.68366 32.8976 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.10958 33.2371 -0.1 + vertex 3.68366 32.8976 -0.1 + vertex 2.4524 33.9939 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.68366 32.8976 -0.1 + vertex 2.10958 33.2371 -0.1 + vertex 3.60924 32.0876 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.81903 32.5199 -0.1 + vertex 3.60924 32.0876 -0.1 + vertex 2.10958 33.2371 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.27855 5.76024 -0.1 + vertex 1.91748 12.4352 -0.1 + vertex 4.285 6.1855 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.57871 31.8344 -0.1 + vertex 3.60924 32.0876 -0.1 + vertex 1.81903 32.5199 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.88346 12.344 -0.1 + vertex 4.285 6.1855 -0.1 + vertex 1.91748 12.4352 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.285 6.1855 -0.1 + vertex 1.88346 12.344 -0.1 + vertex 3.31149 6.57517 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.81906 12.2515 -0.1 + vertex 3.31149 6.57517 -0.1 + vertex 1.88346 12.344 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.72214 12.1537 -0.1 + vertex 3.31149 6.57517 -0.1 + vertex 1.81906 12.2515 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.31149 6.57517 -0.1 + vertex 1.72214 12.1537 -0.1 + vertex 2.42084 6.9015 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.42228 11.926 -0.1 + vertex 2.42084 6.9015 -0.1 + vertex 1.72214 12.1537 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.42084 6.9015 -0.1 + vertex 1.42228 11.926 -0.1 + vertex 1.67583 7.13679 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.986004 11.656 -0.1 + vertex 1.67583 7.13679 -0.1 + vertex 1.42228 11.926 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.67583 7.13679 -0.1 + vertex 0.986004 11.656 -0.1 + vertex 1.30727 7.25861 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.986004 11.656 -0.1 + vertex 0.855811 7.43981 -0.1 + vertex 1.30727 7.25861 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.546849 11.4454 -0.1 + vertex 0.855811 7.43981 -0.1 + vertex 0.986004 11.656 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.23691 7.94665 -0.1 + vertex 0.546849 11.4454 -0.1 + vertex 0.0942225 11.293 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.546849 11.4454 -0.1 + vertex -0.23691 7.94665 -0.1 + vertex 0.855811 7.43981 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -0.382462 11.1972 -0.1 + vertex -0.23691 7.94665 -0.1 + vertex 0.0942225 11.293 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.48458 8.58988 -0.1 + vertex -0.382462 11.1972 -0.1 + vertex -0.893798 11.1566 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.48458 8.58988 -0.1 + vertex -0.893798 11.1566 -0.1 + vertex -1.45038 11.1697 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.382462 11.1972 -0.1 + vertex -1.48458 8.58988 -0.1 + vertex -0.23691 7.94665 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.76946 9.30203 -0.1 + vertex -1.45038 11.1697 -0.1 + vertex -2.06279 11.235 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.76946 9.30203 -0.1 + vertex -2.06279 11.235 -0.1 + vertex -2.74162 11.3511 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.45038 11.1697 -0.1 + vertex -2.76946 9.30203 -0.1 + vertex -1.48458 8.58988 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97378 10.0157 -0.1 + vertex -2.74162 11.3511 -0.1 + vertex -3.43924 11.4799 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.74162 11.3511 -0.1 + vertex -3.97378 10.0157 -0.1 + vertex -2.76946 9.30203 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.06319 11.5774 -0.1 + vertex -3.97378 10.0157 -0.1 + vertex -3.43924 11.4799 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.9798 10.6633 -0.1 + vertex -4.06319 11.5774 -0.1 + vertex -4.60751 11.6434 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.06319 11.5774 -0.1 + vertex -4.9798 10.6633 -0.1 + vertex -3.97378 10.0157 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.06624 11.6776 -0.1 + vertex -4.9798 10.6633 -0.1 + vertex -4.60751 11.6434 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.06624 11.6776 -0.1 + vertex -5.37165 10.9414 -0.1 + vertex -4.9798 10.6633 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.4334 11.6797 -0.1 + vertex -5.37165 10.9414 -0.1 + vertex -5.06624 11.6776 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.4334 11.6797 -0.1 + vertex -5.66976 11.1776 -0.1 + vertex -5.37165 10.9414 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.70304 11.6495 -0.1 + vertex -5.66976 11.1776 -0.1 + vertex -5.4334 11.6797 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.85942 11.3636 -0.1 + vertex -5.70304 11.6495 -0.1 + vertex -5.79943 11.6221 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.70304 11.6495 -0.1 + vertex -5.85942 11.3636 -0.1 + vertex -5.66976 11.1776 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.8692 11.5867 -0.1 + vertex -5.85942 11.3636 -0.1 + vertex -5.79943 11.6221 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.8692 11.5867 -0.1 + vertex -5.90899 11.4352 -0.1 + vertex -5.85942 11.3636 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.91161 11.5429 -0.1 + vertex -5.90899 11.4352 -0.1 + vertex -5.8692 11.5867 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.90899 11.4352 -0.1 + vertex -5.91161 11.5429 -0.1 + vertex -5.92592 11.491 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.51759 -4.36865 -0.1 + vertex 8.0755 -3.36119 -0.1 + vertex 7.75455 -3.09522 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.2523 -4.01644 -0.1 + vertex 7.75455 -3.09522 -0.1 + vertex 7.10115 -2.48513 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.70978 -3.81721 -0.1 + vertex 7.04277 -4.97268 -0.1 + vertex 7.809 -5.75259 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.0755 -3.36119 -0.1 + vertex 6.78219 -4.68956 -0.1 + vertex 7.04277 -4.97268 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.0755 -3.36119 -0.1 + vertex 6.51759 -4.36865 -0.1 + vertex 6.78219 -4.68956 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.48552 -2.8367 -0.1 + vertex 7.10115 -2.48513 -0.1 + vertex 6.42718 -1.76788 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.75455 -3.09522 -0.1 + vertex 6.2523 -4.01644 -0.1 + vertex 6.51759 -4.36865 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.10115 -2.48513 -0.1 + vertex 5.98964 -3.63939 -0.1 + vertex 6.2523 -4.01644 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.03179 -2.01239 -0.1 + vertex 6.42718 -1.76788 -0.1 + vertex 5.79491 -1.04264 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.10115 -2.48513 -0.1 + vertex 5.48552 -2.8367 -0.1 + vertex 5.98964 -3.63939 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.65505 -1.21825 -0.1 + vertex 5.79491 -1.04264 -0.1 + vertex 5.24358 -0.384283 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.42718 -1.76788 -0.1 + vertex 5.03179 -2.01239 -0.1 + vertex 5.48552 -2.8367 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.38188 -0.506111 -0.1 + vertex 5.24358 -0.384283 -0.1 + vertex 4.83246 0.134689 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.79491 -1.04264 -0.1 + vertex 4.65505 -1.21825 -0.1 + vertex 5.03179 -2.01239 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.23886 0.0722368 -0.1 + vertex 4.83246 0.134689 -0.1 + vertex 4.62083 0.441773 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.24358 -0.384283 -0.1 + vertex 4.50386 -0.848697 -0.1 + vertex 4.65505 -1.21825 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.25257 0.464986 -0.1 + vertex 4.62083 0.441773 -0.1 + vertex 4.49221 0.674515 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.33872 0.684191 -0.1 + vertex 4.49221 0.674515 -0.1 + vertex 4.44662 0.733548 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.3737 0.738144 -0.1 + vertex 4.44662 0.733548 -0.1 + vertex 4.40839 0.754677 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.24358 -0.384283 -0.1 + vertex 4.38188 -0.506111 -0.1 + vertex 4.50386 -0.848697 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.44662 0.733548 -0.1 + vertex 4.3737 0.738144 -0.1 + vertex 4.33872 0.684191 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.49221 0.674515 -0.1 + vertex 4.33872 0.684191 -0.1 + vertex 4.25257 0.464986 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.83246 0.134689 -0.1 + vertex 4.29244 -0.196974 -0.1 + vertex 4.38188 -0.506111 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.62083 0.441773 -0.1 + vertex 4.25257 0.464986 -0.1 + vertex 4.22446 0.295049 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.83246 0.134689 -0.1 + vertex 4.23886 0.0722368 -0.1 + vertex 4.29244 -0.196974 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.62083 0.441773 -0.1 + vertex 4.22446 0.295049 -0.1 + vertex 4.23886 0.0722368 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0092 9.15168 -0.1 + vertex 8.87708 15.8492 -0.1 + vertex 14.9543 8.95485 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2183 5.95043 -0.1 + vertex 9.61741 3.25086 -0.1 + vertex 10.5842 2.40247 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1095 6.5543 -0.1 + vertex 9.29624 3.50894 -0.1 + vertex 9.61741 3.25086 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 14.9543 8.95485 -0.1 + vertex 8.87708 15.8492 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0249 7.13954 -0.1 + vertex 9.14614 3.60373 -0.1 + vertex 9.29624 3.50894 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9668 7.69881 -0.1 + vertex 8.19732 4.25764 -0.1 + vertex 8.81858 3.79581 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9543 8.95485 -0.1 + vertex 7.07462 4.9138 -0.1 + vertex 14.9262 8.72903 -0.1 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 7.75154 4.54807 -0.1 + vertex 14.9262 8.72903 -0.1 + vertex 7.07462 4.9138 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 8.87708 15.8492 -0.1 + vertex 8.83337 15.875 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.14614 3.60373 -0.1 + vertex 8.81858 3.79581 -0.1 + vertex 9.03464 3.65533 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 8.83337 15.875 -0.1 + vertex 8.76553 15.9481 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 8.76553 15.9481 -0.1 + vertex 8.57086 16.213 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9668 7.69881 -0.1 + vertex 8.81858 3.79581 -0.1 + vertex 9.14614 3.60373 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 8.57086 16.213 -0.1 + vertex 8.03973 17.0592 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9212 8.45633 -0.1 + vertex 8.00725 4.39171 -0.1 + vertex 8.19732 4.25764 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9212 8.45633 -0.1 + vertex 7.75154 4.54807 -0.1 + vertex 8.00725 4.39171 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 8.03973 17.0592 -0.1 + vertex 7.49889 18.0241 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 7.49889 18.0241 -0.1 + vertex 7.29207 18.4374 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 7.29207 18.4374 -0.1 + vertex 7.16351 18.7442 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 7.16351 18.7442 -0.1 + vertex 7.1273 18.8927 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9262 8.72903 -0.1 + vertex 7.75154 4.54807 -0.1 + vertex 14.9212 8.45633 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 7.1273 18.8927 -0.1 + vertex 7.1242 19.0144 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.1091 19.5935 -0.1 + vertex -9.25643 14.3812 -0.1 + vertex -10.9948 19.7221 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.4702 19.2748 -0.1 + vertex -9.25643 14.3812 -0.1 + vertex -11.1091 19.5935 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.25643 14.3812 -0.1 + vertex -11.4702 19.2748 -0.1 + vertex -9.98725 14.3241 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -12.0016 18.8648 -0.1 + vertex -9.98725 14.3241 -0.1 + vertex -11.4702 19.2748 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.98725 14.3241 -0.1 + vertex -12.0016 18.8648 -0.1 + vertex -10.6249 14.238 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.6249 14.238 -0.1 + vertex -12.0016 18.8648 -0.1 + vertex -11.2428 14.1101 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.8225 17.5152 -0.1 + vertex -11.2428 14.1101 -0.1 + vertex -12.0016 18.8648 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.2428 14.1101 -0.1 + vertex -13.8225 17.5152 -0.1 + vertex -11.9142 13.9281 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.9142 13.9281 -0.1 + vertex -13.8225 17.5152 -0.1 + vertex -12.7125 13.6795 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.4648 17.0612 -0.1 + vertex -12.7125 13.6795 -0.1 + vertex -13.8225 17.5152 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.9972 16.7116 -0.1 + vertex -12.7125 13.6795 -0.1 + vertex -14.4648 17.0612 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.7125 13.6795 -0.1 + vertex -14.9972 16.7116 -0.1 + vertex -13.7109 13.3517 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.4716 16.4339 -0.1 + vertex -13.7109 13.3517 -0.1 + vertex -14.9972 16.7116 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.7109 13.3517 -0.1 + vertex -15.4716 16.4339 -0.1 + vertex -14.949 12.9624 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.9397 16.1961 -0.1 + vertex -14.949 12.9624 -0.1 + vertex -15.4716 16.4339 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.4531 15.9659 -0.1 + vertex -14.949 12.9624 -0.1 + vertex -15.9397 16.1961 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.949 12.9624 -0.1 + vertex -16.4531 15.9659 -0.1 + vertex -16.0795 12.6436 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.0637 15.711 -0.1 + vertex -16.0795 12.6436 -0.1 + vertex -16.4531 15.9659 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.0795 12.6436 -0.1 + vertex -17.0637 15.711 -0.1 + vertex -16.9775 12.4282 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.4061 15.1884 -0.1 + vertex -16.9775 12.4282 -0.1 + vertex -17.0637 15.711 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9775 12.4282 -0.1 + vertex -18.4061 15.1884 -0.1 + vertex -17.3003 12.3696 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.3003 12.3696 -0.1 + vertex -18.4061 15.1884 -0.1 + vertex -17.5181 12.3491 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5181 12.3491 -0.1 + vertex -18.4061 15.1884 -0.1 + vertex -17.9556 12.3221 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.4061 15.1884 -0.1 + vertex -18.5728 12.2484 -0.1 + vertex -17.9556 12.3221 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -19.7213 14.7364 -0.1 + vertex -18.5728 12.2484 -0.1 + vertex -18.4061 15.1884 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5728 12.2484 -0.1 + vertex -19.7213 14.7364 -0.1 + vertex -19.2876 12.1394 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.7213 14.7364 -0.1 + vertex -20.0181 12.0063 -0.1 + vertex -19.2876 12.1394 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.0167 14.3533 -0.1 + vertex -20.0181 12.0063 -0.1 + vertex -19.7213 14.7364 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.0181 12.0063 -0.1 + vertex -21.0167 14.3533 -0.1 + vertex -20.4772 11.9313 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.0167 14.3533 -0.1 + vertex -21.0446 11.8651 -0.1 + vertex -20.4772 11.9313 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.3001 14.0374 -0.1 + vertex -21.0446 11.8651 -0.1 + vertex -21.0167 14.3533 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.3001 14.0374 -0.1 + vertex -22.4311 11.7593 -0.1 + vertex -21.0446 11.8651 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -23.579 13.787 -0.1 + vertex -22.4311 11.7593 -0.1 + vertex -22.3001 14.0374 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.579 13.787 -0.1 + vertex -24.031 11.6901 -0.1 + vertex -22.4311 11.7593 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.8613 13.6003 -0.1 + vertex -24.031 11.6901 -0.1 + vertex -23.579 13.787 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8613 13.6003 -0.1 + vertex -25.698 11.6586 -0.1 + vertex -24.031 11.6901 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.1544 13.4758 -0.1 + vertex -25.698 11.6586 -0.1 + vertex -24.8613 13.6003 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.1544 13.4758 -0.1 + vertex -27.2855 11.6658 -0.1 + vertex -25.698 11.6586 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.4661 13.4117 -0.1 + vertex -27.2855 11.6658 -0.1 + vertex -26.1544 13.4758 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.4661 13.4117 -0.1 + vertex -28.647 11.7129 -0.1 + vertex -27.2855 11.6658 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -29.0548 13.353 -0.1 + vertex -28.647 11.7129 -0.1 + vertex -27.4661 13.4117 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.0548 13.353 -0.1 + vertex -29.1973 11.7518 -0.1 + vertex -28.647 11.7129 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -29.5683 13.309 -0.1 + vertex -29.1973 11.7518 -0.1 + vertex -29.0548 13.353 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.5683 13.309 -0.1 + vertex -29.6362 11.801 -0.1 + vertex -29.1973 11.7518 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3556 12.4664 -0.1 + vertex -29.5683 13.309 -0.1 + vertex -29.9294 13.2465 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.5683 13.309 -0.1 + vertex -30.2975 12.2549 -0.1 + vertex -29.6362 11.801 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.6362 11.801 -0.1 + vertex -30.2975 12.2549 -0.1 + vertex -29.9453 11.8607 -0.1 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -30.2115 12.0683 -0.1 + vertex -29.9453 11.8607 -0.1 + vertex -30.2975 12.2549 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.377 12.6783 -0.1 + vertex -29.9294 13.2465 -0.1 + vertex -30.1646 13.1588 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.9453 11.8607 -0.1 + vertex -30.2115 12.0683 -0.1 + vertex -30.0456 11.8946 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3621 12.8813 -0.1 + vertex -30.1646 13.1588 -0.1 + vertex -30.2432 13.1034 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.0456 11.8946 -0.1 + vertex -30.2115 12.0683 -0.1 + vertex -30.1065 11.9311 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3387 12.9655 -0.1 + vertex -30.2432 13.1034 -0.1 + vertex -30.3001 13.0393 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2432 13.1034 -0.1 + vertex -30.3387 12.9655 -0.1 + vertex -30.3621 12.8813 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.5683 13.309 -0.1 + vertex -30.3556 12.4664 -0.1 + vertex -30.2975 12.2549 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1646 13.1588 -0.1 + vertex -30.3621 12.8813 -0.1 + vertex -30.377 12.6783 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.9294 13.2465 -0.1 + vertex -30.377 12.6783 -0.1 + vertex -30.3556 12.4664 -0.1 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.053 23.8437 -0.1 + vertex -24.1455 19.0472 -0.1 + vertex -24.6523 24.0122 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.1455 19.0472 -0.1 + vertex -26.053 23.8437 -0.1 + vertex -25.9619 18.9589 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.3394 21.9725 -0.1 + vertex -26.053 23.8437 -0.1 + vertex -26.7338 23.7794 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.053 23.8437 -0.1 + vertex -28.3394 21.9725 -0.1 + vertex -25.9619 18.9589 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.3394 21.9725 -0.1 + vertex -26.7338 23.7794 -0.1 + vertex -27.3569 23.7586 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.9619 18.9589 -0.1 + vertex -28.3394 21.9725 -0.1 + vertex -26.7887 18.9409 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.3394 21.9725 -0.1 + vertex -27.3569 23.7586 -0.1 + vertex -27.9279 23.7822 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.7887 18.9409 -0.1 + vertex -28.3394 21.9725 -0.1 + vertex -27.5469 18.9414 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.5469 18.9414 -0.1 + vertex -28.3394 21.9725 -0.1 + vertex -28.2256 18.9609 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.0186 22.3563 -0.1 + vertex -27.9279 23.7822 -0.1 + vertex -28.4524 23.8513 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.4321 22.5993 -0.1 + vertex -28.4524 23.8513 -0.1 + vertex -28.9359 23.9669 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.9279 23.7822 -0.1 + vertex -29.0186 22.3563 -0.1 + vertex -28.3394 21.9725 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.7937 22.8325 -0.1 + vertex -28.9359 23.9669 -0.1 + vertex -29.384 24.13 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.4524 23.8513 -0.1 + vertex -29.4321 22.5993 -0.1 + vertex -29.0186 22.3563 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.9359 23.9669 -0.1 + vertex -29.7937 22.8325 -0.1 + vertex -29.4321 22.5993 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3761 23.2826 -0.1 + vertex -29.384 24.13 -0.1 + vertex -29.8023 24.3416 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.384 24.13 -0.1 + vertex -30.1071 23.0591 -0.1 + vertex -29.7937 22.8325 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.7957 23.7338 -0.1 + vertex -29.8023 24.3416 -0.1 + vertex -30.1964 24.6027 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.384 24.13 -0.1 + vertex -30.3761 23.2826 -0.1 + vertex -30.1071 23.0591 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.0826 24.213 -0.1 + vertex -30.1964 24.6027 -0.1 + vertex -30.5308 24.8328 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.8023 24.3416 -0.1 + vertex -30.6044 23.5064 -0.1 + vertex -30.3761 23.2826 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.8023 24.3416 -0.1 + vertex -30.7957 23.7338 -0.1 + vertex -30.6044 23.5064 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2103 24.5339 -0.1 + vertex -30.5308 24.8328 -0.1 + vertex -30.8055 24.9813 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1964 24.6027 -0.1 + vertex -30.9539 23.9682 -0.1 + vertex -30.7957 23.7338 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2656 24.779 -0.1 + vertex -30.8055 24.9813 -0.1 + vertex -31.0185 25.0493 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1964 24.6027 -0.1 + vertex -31.0826 24.213 -0.1 + vertex -30.9539 23.9682 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2668 24.8727 -0.1 + vertex -31.0185 25.0493 -0.1 + vertex -31.1012 25.0533 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2507 24.9472 -0.1 + vertex -31.1012 25.0533 -0.1 + vertex -31.1676 25.0376 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.5308 24.8328 -0.1 + vertex -31.2103 24.5339 -0.1 + vertex -31.0826 24.213 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2507 24.9472 -0.1 + vertex -31.1676 25.0376 -0.1 + vertex -31.2175 25.0021 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.1012 25.0533 -0.1 + vertex -31.2507 24.9472 -0.1 + vertex -31.2668 24.8727 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.8055 24.9813 -0.1 + vertex -31.2656 24.779 -0.1 + vertex -31.2103 24.5339 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.0185 25.0493 -0.1 + vertex -31.2668 24.8727 -0.1 + vertex -31.2656 24.779 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.3394 21.9725 -0.1 + vertex -28.8137 19.0002 -0.1 + vertex -28.2256 18.9609 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.3394 21.9725 -0.1 + vertex -29.3006 19.0599 -0.1 + vertex -28.8137 19.0002 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.3394 21.9725 -0.1 + vertex -29.6752 19.1409 -0.1 + vertex -29.3006 19.0599 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.0859 22.0525 -0.1 + vertex -29.6752 19.1409 -0.1 + vertex -28.3394 21.9725 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.5811 19.4165 -0.1 + vertex -30.0859 22.0525 -0.1 + vertex -30.5728 22.0884 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.0859 22.0525 -0.1 + vertex -30.5811 19.4165 -0.1 + vertex -29.6752 19.1409 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.4466 19.7034 -0.1 + vertex -30.5728 22.0884 -0.1 + vertex -31.074 22.1513 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.5728 22.0884 -0.1 + vertex -31.4466 19.7034 -0.1 + vertex -30.5811 19.4165 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.271 20.0012 -0.1 + vertex -31.074 22.1513 -0.1 + vertex -31.5861 22.2399 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.271 20.0012 -0.1 + vertex -31.5861 22.2399 -0.1 + vertex -32.1061 22.3529 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.074 22.1513 -0.1 + vertex -32.271 20.0012 -0.1 + vertex -31.4466 19.7034 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.0533 20.3093 -0.1 + vertex -32.1061 22.3529 -0.1 + vertex -32.6306 22.489 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.1061 22.3529 -0.1 + vertex -33.0533 20.3093 -0.1 + vertex -32.271 20.0012 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.7926 20.6272 -0.1 + vertex -32.6306 22.489 -0.1 + vertex -33.1564 22.6469 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.4881 20.9542 -0.1 + vertex -33.1564 22.6469 -0.1 + vertex -33.6803 22.8253 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.6306 22.489 -0.1 + vertex -33.7926 20.6272 -0.1 + vertex -33.0533 20.3093 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.4881 20.9542 -0.1 + vertex -33.6803 22.8253 -0.1 + vertex -34.199 23.023 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.1564 22.6469 -0.1 + vertex -34.4881 20.9542 -0.1 + vertex -33.7926 20.6272 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.1386 21.2899 -0.1 + vertex -34.199 23.023 -0.1 + vertex -34.7094 23.2385 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.199 23.023 -0.1 + vertex -35.1386 21.2899 -0.1 + vertex -34.4881 20.9542 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.7435 21.6336 -0.1 + vertex -34.7094 23.2385 -0.1 + vertex -35.2082 23.4707 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.3017 21.985 -0.1 + vertex -35.2082 23.4707 -0.1 + vertex -35.6921 23.7183 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.7094 23.2385 -0.1 + vertex -35.7435 21.6336 -0.1 + vertex -35.1386 21.2899 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.8124 22.3433 -0.1 + vertex -35.6921 23.7183 -0.1 + vertex -36.1579 23.9798 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.2082 23.4707 -0.1 + vertex -36.3017 21.985 -0.1 + vertex -35.7435 21.6336 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.2746 22.7082 -0.1 + vertex -36.1579 23.9798 -0.1 + vertex -36.6025 24.2541 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.6921 23.7183 -0.1 + vertex -36.8124 22.3433 -0.1 + vertex -36.3017 21.985 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.6874 23.0789 -0.1 + vertex -36.6025 24.2541 -0.1 + vertex -37.0225 24.5398 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.1579 23.9798 -0.1 + vertex -37.2746 22.7082 -0.1 + vertex -36.8124 22.3433 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.3611 23.836 -0.1 + vertex -37.0225 24.5398 -0.1 + vertex -37.4147 24.8357 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.6025 24.2541 -0.1 + vertex -37.6874 23.0789 -0.1 + vertex -37.2746 22.7082 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.6203 24.2212 -0.1 + vertex -37.4147 24.8357 -0.1 + vertex -37.776 25.1404 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.0225 24.5398 -0.1 + vertex -38.0499 23.455 -0.1 + vertex -37.6874 23.0789 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.8265 24.6102 -0.1 + vertex -37.776 25.1404 -0.1 + vertex -38.2113 25.5018 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.0225 24.5398 -0.1 + vertex -38.3611 23.836 -0.1 + vertex -38.0499 23.455 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.0227 25.0923 -0.1 + vertex -38.2113 25.5018 -0.1 + vertex -38.5664 25.7376 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.4147 24.8357 -0.1 + vertex -38.6203 24.2212 -0.1 + vertex -38.3611 23.836 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.1186 25.4589 -0.1 + vertex -38.5664 25.7376 -0.1 + vertex -38.7129 25.8089 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.776 25.1404 -0.1 + vertex -38.8265 24.6102 -0.1 + vertex -38.6203 24.2212 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.13 25.5984 -0.1 + vertex -38.7129 25.8089 -0.1 + vertex -38.8381 25.8495 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.1175 25.7085 -0.1 + vertex -38.8381 25.8495 -0.1 + vertex -38.9416 25.8595 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.2113 25.5018 -0.1 + vertex -39.0227 25.0923 -0.1 + vertex -38.8265 24.6102 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.0817 25.7888 -0.1 + vertex -38.9416 25.8595 -0.1 + vertex -39.0229 25.8392 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.9416 25.8595 -0.1 + vertex -39.0817 25.7888 -0.1 + vertex -39.1175 25.7085 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.8381 25.8495 -0.1 + vertex -39.1175 25.7085 -0.1 + vertex -39.13 25.5984 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.5664 25.7376 -0.1 + vertex -39.1186 25.4589 -0.1 + vertex -39.0227 25.0923 -0.1 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.7129 25.8089 -0.1 + vertex -39.13 25.5984 -0.1 + vertex -39.1186 25.4589 -0.1 + endloop + endfacet + facet normal -0.668491 -0.74372 0 + outer loop + vertex 5.20457 38.5758 -0.1 + vertex 5.23504 38.5484 0 + vertex 5.20457 38.5758 0 + endloop + endfacet + facet normal -0.668491 -0.74372 -0 + outer loop + vertex 5.23504 38.5484 0 + vertex 5.20457 38.5758 -0.1 + vertex 5.23504 38.5484 -0.1 + endloop + endfacet + facet normal -0.96052 -0.278211 0 + outer loop + vertex 5.26494 38.4452 -0.1 + vertex 5.23504 38.5484 0 + vertex 5.23504 38.5484 -0.1 + endloop + endfacet + facet normal -0.96052 -0.278211 0 + outer loop + vertex 5.23504 38.5484 0 + vertex 5.26494 38.4452 -0.1 + vertex 5.26494 38.4452 0 + endloop + endfacet + facet normal -0.998404 0.0564745 0 + outer loop + vertex 5.25596 38.2865 -0.1 + vertex 5.26494 38.4452 0 + vertex 5.26494 38.4452 -0.1 + endloop + endfacet + facet normal -0.998404 0.0564745 0 + outer loop + vertex 5.26494 38.4452 0 + vertex 5.25596 38.2865 -0.1 + vertex 5.25596 38.2865 0 + endloop + endfacet + facet normal -0.976561 0.215243 0 + outer loop + vertex 5.21112 38.083 -0.1 + vertex 5.25596 38.2865 0 + vertex 5.25596 38.2865 -0.1 + endloop + endfacet + facet normal -0.976561 0.215243 0 + outer loop + vertex 5.25596 38.2865 0 + vertex 5.21112 38.083 -0.1 + vertex 5.21112 38.083 0 + endloop + endfacet + facet normal -0.950355 0.311168 0 + outer loop + vertex 5.13345 37.8458 -0.1 + vertex 5.21112 38.083 0 + vertex 5.21112 38.083 -0.1 + endloop + endfacet + facet normal -0.950355 0.311168 0 + outer loop + vertex 5.21112 38.083 0 + vertex 5.13345 37.8458 -0.1 + vertex 5.13345 37.8458 0 + endloop + endfacet + facet normal -0.924228 0.381841 0 + outer loop + vertex 5.02596 37.5856 -0.1 + vertex 5.13345 37.8458 0 + vertex 5.13345 37.8458 -0.1 + endloop + endfacet + facet normal -0.924228 0.381841 0 + outer loop + vertex 5.13345 37.8458 0 + vertex 5.02596 37.5856 -0.1 + vertex 5.02596 37.5856 0 + endloop + endfacet + facet normal -0.896839 0.442358 0 + outer loop + vertex 4.89167 37.3134 -0.1 + vertex 5.02596 37.5856 0 + vertex 5.02596 37.5856 -0.1 + endloop + endfacet + facet normal -0.896839 0.442358 0 + outer loop + vertex 5.02596 37.5856 0 + vertex 4.89167 37.3134 -0.1 + vertex 4.89167 37.3134 0 + endloop + endfacet + facet normal -0.865785 0.500416 0 + outer loop + vertex 4.73361 37.0399 -0.1 + vertex 4.89167 37.3134 0 + vertex 4.89167 37.3134 -0.1 + endloop + endfacet + facet normal -0.865785 0.500416 0 + outer loop + vertex 4.89167 37.3134 0 + vertex 4.73361 37.0399 -0.1 + vertex 4.73361 37.0399 0 + endloop + endfacet + facet normal -0.875928 0.482442 0 + outer loop + vertex 4.62814 36.8484 -0.1 + vertex 4.73361 37.0399 0 + vertex 4.73361 37.0399 -0.1 + endloop + endfacet + facet normal -0.875928 0.482442 0 + outer loop + vertex 4.73361 37.0399 0 + vertex 4.62814 36.8484 -0.1 + vertex 4.62814 36.8484 0 + endloop + endfacet + facet normal -0.912281 0.409566 0 + outer loop + vertex 4.52293 36.6141 -0.1 + vertex 4.62814 36.8484 0 + vertex 4.62814 36.8484 -0.1 + endloop + endfacet + facet normal -0.912281 0.409566 0 + outer loop + vertex 4.62814 36.8484 0 + vertex 4.52293 36.6141 -0.1 + vertex 4.52293 36.6141 0 + endloop + endfacet + facet normal -0.942197 0.335061 0 + outer loop + vertex 4.31688 36.0346 -0.1 + vertex 4.52293 36.6141 0 + vertex 4.52293 36.6141 -0.1 + endloop + endfacet + facet normal -0.942197 0.335061 0 + outer loop + vertex 4.52293 36.6141 0 + vertex 4.31688 36.0346 -0.1 + vertex 4.31688 36.0346 0 + endloop + endfacet + facet normal -0.963331 0.268317 0 + outer loop + vertex 4.1227 35.3375 -0.1 + vertex 4.31688 36.0346 0 + vertex 4.31688 36.0346 -0.1 + endloop + endfacet + facet normal -0.963331 0.268317 0 + outer loop + vertex 4.31688 36.0346 0 + vertex 4.1227 35.3375 -0.1 + vertex 4.1227 35.3375 0 + endloop + endfacet + facet normal -0.975667 0.219257 0 + outer loop + vertex 3.94762 34.5584 -0.1 + vertex 4.1227 35.3375 0 + vertex 4.1227 35.3375 -0.1 + endloop + endfacet + facet normal -0.975667 0.219257 0 + outer loop + vertex 4.1227 35.3375 0 + vertex 3.94762 34.5584 -0.1 + vertex 3.94762 34.5584 0 + endloop + endfacet + facet normal -0.984138 0.177404 0 + outer loop + vertex 3.79886 33.7332 -0.1 + vertex 3.94762 34.5584 0 + vertex 3.94762 34.5584 -0.1 + endloop + endfacet + facet normal -0.984138 0.177404 0 + outer loop + vertex 3.94762 34.5584 0 + vertex 3.79886 33.7332 -0.1 + vertex 3.79886 33.7332 0 + endloop + endfacet + facet normal -0.990628 0.136587 0 + outer loop + vertex 3.68366 32.8976 -0.1 + vertex 3.79886 33.7332 0 + vertex 3.79886 33.7332 -0.1 + endloop + endfacet + facet normal -0.990628 0.136587 0 + outer loop + vertex 3.79886 33.7332 0 + vertex 3.68366 32.8976 -0.1 + vertex 3.68366 32.8976 0 + endloop + endfacet + facet normal -0.995806 0.0914898 0 + outer loop + vertex 3.60924 32.0876 -0.1 + vertex 3.68366 32.8976 0 + vertex 3.68366 32.8976 -0.1 + endloop + endfacet + facet normal -0.995806 0.0914898 0 + outer loop + vertex 3.68366 32.8976 0 + vertex 3.60924 32.0876 -0.1 + vertex 3.60924 32.0876 0 + endloop + endfacet + facet normal -0.999378 0.0352546 0 + outer loop + vertex 3.58282 31.3388 -0.1 + vertex 3.60924 32.0876 0 + vertex 3.60924 32.0876 -0.1 + endloop + endfacet + facet normal -0.999378 0.0352546 0 + outer loop + vertex 3.60924 32.0876 0 + vertex 3.58282 31.3388 -0.1 + vertex 3.58282 31.3388 0 + endloop + endfacet + facet normal -0.999852 -0.0171991 0 + outer loop + vertex 3.59957 30.3654 -0.1 + vertex 3.58282 31.3388 0 + vertex 3.58282 31.3388 -0.1 + endloop + endfacet + facet normal -0.999852 -0.0171991 0 + outer loop + vertex 3.58282 31.3388 0 + vertex 3.59957 30.3654 -0.1 + vertex 3.59957 30.3654 0 + endloop + endfacet + facet normal -0.995876 -0.0907198 0 + outer loop + vertex 3.63162 30.0135 -0.1 + vertex 3.59957 30.3654 0 + vertex 3.59957 30.3654 -0.1 + endloop + endfacet + facet normal -0.995876 -0.0907198 0 + outer loop + vertex 3.59957 30.3654 0 + vertex 3.63162 30.0135 -0.1 + vertex 3.63162 30.0135 0 + endloop + endfacet + facet normal -0.982044 -0.188652 0 + outer loop + vertex 3.68937 29.7129 -0.1 + vertex 3.63162 30.0135 0 + vertex 3.63162 30.0135 -0.1 + endloop + endfacet + facet normal -0.982044 -0.188652 0 + outer loop + vertex 3.63162 30.0135 0 + vertex 3.68937 29.7129 -0.1 + vertex 3.68937 29.7129 0 + endloop + endfacet + facet normal -0.950581 -0.310477 0 + outer loop + vertex 3.78021 29.4348 -0.1 + vertex 3.68937 29.7129 0 + vertex 3.68937 29.7129 -0.1 + endloop + endfacet + facet normal -0.950581 -0.310477 0 + outer loop + vertex 3.68937 29.7129 0 + vertex 3.78021 29.4348 -0.1 + vertex 3.78021 29.4348 0 + endloop + endfacet + facet normal -0.907937 -0.419107 0 + outer loop + vertex 3.91157 29.1502 -0.1 + vertex 3.78021 29.4348 0 + vertex 3.78021 29.4348 -0.1 + endloop + endfacet + facet normal -0.907937 -0.419107 0 + outer loop + vertex 3.78021 29.4348 0 + vertex 3.91157 29.1502 -0.1 + vertex 3.91157 29.1502 0 + endloop + endfacet + facet normal -0.872337 -0.488905 0 + outer loop + vertex 4.09087 28.8303 -0.1 + vertex 3.91157 29.1502 0 + vertex 3.91157 29.1502 -0.1 + endloop + endfacet + facet normal -0.872337 -0.488905 0 + outer loop + vertex 3.91157 29.1502 0 + vertex 4.09087 28.8303 -0.1 + vertex 4.09087 28.8303 0 + endloop + endfacet + facet normal -0.853386 -0.52128 0 + outer loop + vertex 4.32553 28.4461 -0.1 + vertex 4.09087 28.8303 0 + vertex 4.09087 28.8303 -0.1 + endloop + endfacet + facet normal -0.853386 -0.52128 0 + outer loop + vertex 4.09087 28.8303 0 + vertex 4.32553 28.4461 -0.1 + vertex 4.32553 28.4461 0 + endloop + endfacet + facet normal -0.837817 -0.545951 0 + outer loop + vertex 4.69711 27.8759 -0.1 + vertex 4.32553 28.4461 0 + vertex 4.32553 28.4461 -0.1 + endloop + endfacet + facet normal -0.837817 -0.545951 0 + outer loop + vertex 4.32553 28.4461 0 + vertex 4.69711 27.8759 -0.1 + vertex 4.69711 27.8759 0 + endloop + endfacet + facet normal -0.807831 -0.589415 0 + outer loop + vertex 5.05276 27.3884 -0.1 + vertex 4.69711 27.8759 0 + vertex 4.69711 27.8759 -0.1 + endloop + endfacet + facet normal -0.807831 -0.589415 0 + outer loop + vertex 4.69711 27.8759 0 + vertex 5.05276 27.3884 -0.1 + vertex 5.05276 27.3884 0 + endloop + endfacet + facet normal -0.764742 -0.644337 0 + outer loop + vertex 5.39739 26.9794 -0.1 + vertex 5.05276 27.3884 0 + vertex 5.05276 27.3884 -0.1 + endloop + endfacet + facet normal -0.764742 -0.644337 0 + outer loop + vertex 5.05276 27.3884 0 + vertex 5.39739 26.9794 -0.1 + vertex 5.39739 26.9794 0 + endloop + endfacet + facet normal -0.703379 -0.710815 0 + outer loop + vertex 5.39739 26.9794 -0.1 + vertex 5.73586 26.6445 0 + vertex 5.39739 26.9794 0 + endloop + endfacet + facet normal -0.703379 -0.710815 -0 + outer loop + vertex 5.73586 26.6445 0 + vertex 5.39739 26.9794 -0.1 + vertex 5.73586 26.6445 -0.1 + endloop + endfacet + facet normal -0.618154 -0.786057 0 + outer loop + vertex 5.73586 26.6445 -0.1 + vertex 6.07308 26.3793 0 + vertex 5.73586 26.6445 0 + endloop + endfacet + facet normal -0.618154 -0.786057 -0 + outer loop + vertex 6.07308 26.3793 0 + vertex 5.73586 26.6445 -0.1 + vertex 6.07308 26.3793 -0.1 + endloop + endfacet + facet normal -0.505671 -0.862726 0 + outer loop + vertex 6.07308 26.3793 -0.1 + vertex 6.41393 26.1795 0 + vertex 6.07308 26.3793 0 + endloop + endfacet + facet normal -0.505671 -0.862726 -0 + outer loop + vertex 6.41393 26.1795 0 + vertex 6.07308 26.3793 -0.1 + vertex 6.41393 26.1795 -0.1 + endloop + endfacet + facet normal -0.369033 -0.929416 0 + outer loop + vertex 6.41393 26.1795 -0.1 + vertex 6.76329 26.0408 0 + vertex 6.41393 26.1795 0 + endloop + endfacet + facet normal -0.369033 -0.929416 -0 + outer loop + vertex 6.76329 26.0408 0 + vertex 6.41393 26.1795 -0.1 + vertex 6.76329 26.0408 -0.1 + endloop + endfacet + facet normal -0.220456 -0.975397 0 + outer loop + vertex 6.76329 26.0408 -0.1 + vertex 7.12606 25.9588 0 + vertex 6.76329 26.0408 0 + endloop + endfacet + facet normal -0.220456 -0.975397 -0 + outer loop + vertex 7.12606 25.9588 0 + vertex 6.76329 26.0408 -0.1 + vertex 7.12606 25.9588 -0.1 + endloop + endfacet + facet normal -0.188841 -0.982008 0 + outer loop + vertex 7.12606 25.9588 -0.1 + vertex 7.55919 25.8755 0 + vertex 7.12606 25.9588 0 + endloop + endfacet + facet normal -0.188841 -0.982008 -0 + outer loop + vertex 7.55919 25.8755 0 + vertex 7.12606 25.9588 -0.1 + vertex 7.55919 25.8755 -0.1 + endloop + endfacet + facet normal -0.317419 -0.948285 0 + outer loop + vertex 7.55919 25.8755 -0.1 + vertex 7.92584 25.7528 0 + vertex 7.55919 25.8755 0 + endloop + endfacet + facet normal -0.317419 -0.948285 -0 + outer loop + vertex 7.92584 25.7528 0 + vertex 7.55919 25.8755 -0.1 + vertex 7.92584 25.7528 -0.1 + endloop + endfacet + facet normal -0.448547 -0.893759 0 + outer loop + vertex 7.92584 25.7528 -0.1 + vertex 8.08977 25.6705 0 + vertex 7.92584 25.7528 0 + endloop + endfacet + facet normal -0.448547 -0.893759 -0 + outer loop + vertex 8.08977 25.6705 0 + vertex 7.92584 25.7528 -0.1 + vertex 8.08977 25.6705 -0.1 + endloop + endfacet + facet normal -0.542679 -0.83994 0 + outer loop + vertex 8.08977 25.6705 -0.1 + vertex 8.24373 25.571 0 + vertex 8.08977 25.6705 0 + endloop + endfacet + facet normal -0.542679 -0.83994 -0 + outer loop + vertex 8.24373 25.571 0 + vertex 8.08977 25.6705 -0.1 + vertex 8.24373 25.571 -0.1 + endloop + endfacet + facet normal -0.63165 -0.775254 0 + outer loop + vertex 8.24373 25.571 -0.1 + vertex 8.38993 25.4519 0 + vertex 8.24373 25.571 0 + endloop + endfacet + facet normal -0.63165 -0.775254 -0 + outer loop + vertex 8.38993 25.4519 0 + vertex 8.24373 25.571 -0.1 + vertex 8.38993 25.4519 -0.1 + endloop + endfacet + facet normal -0.708493 -0.705718 0 + outer loop + vertex 8.53058 25.3107 -0.1 + vertex 8.38993 25.4519 0 + vertex 8.38993 25.4519 -0.1 + endloop + endfacet + facet normal -0.708493 -0.705718 0 + outer loop + vertex 8.38993 25.4519 0 + vertex 8.53058 25.3107 -0.1 + vertex 8.53058 25.3107 0 + endloop + endfacet + facet normal -0.770043 -0.637991 0 + outer loop + vertex 8.6679 25.145 -0.1 + vertex 8.53058 25.3107 0 + vertex 8.53058 25.3107 -0.1 + endloop + endfacet + facet normal -0.770043 -0.637991 0 + outer loop + vertex 8.53058 25.3107 0 + vertex 8.6679 25.145 -0.1 + vertex 8.6679 25.145 0 + endloop + endfacet + facet normal -0.816637 -0.577152 0 + outer loop + vertex 8.80411 24.9522 -0.1 + vertex 8.6679 25.145 0 + vertex 8.6679 25.145 -0.1 + endloop + endfacet + facet normal -0.816637 -0.577152 0 + outer loop + vertex 8.6679 25.145 0 + vertex 8.80411 24.9522 -0.1 + vertex 8.80411 24.9522 0 + endloop + endfacet + facet normal -0.863652 -0.504088 0 + outer loop + vertex 9.08206 24.476 -0.1 + vertex 8.80411 24.9522 0 + vertex 8.80411 24.9522 -0.1 + endloop + endfacet + facet normal -0.863652 -0.504088 0 + outer loop + vertex 8.80411 24.9522 0 + vertex 9.08206 24.476 -0.1 + vertex 9.08206 24.476 0 + endloop + endfacet + facet normal -0.8983 -0.439382 0 + outer loop + vertex 9.38213 23.8626 -0.1 + vertex 9.08206 24.476 0 + vertex 9.08206 24.476 -0.1 + endloop + endfacet + facet normal -0.8983 -0.439382 0 + outer loop + vertex 9.08206 24.476 0 + vertex 9.38213 23.8626 -0.1 + vertex 9.38213 23.8626 0 + endloop + endfacet + facet normal -0.914889 -0.403706 0 + outer loop + vertex 9.72206 23.0922 -0.1 + vertex 9.38213 23.8626 0 + vertex 9.38213 23.8626 -0.1 + endloop + endfacet + facet normal -0.914889 -0.403706 0 + outer loop + vertex 9.38213 23.8626 0 + vertex 9.72206 23.0922 -0.1 + vertex 9.72206 23.0922 0 + endloop + endfacet + facet normal -0.916786 -0.399379 0 + outer loop + vertex 10.0801 22.2703 -0.1 + vertex 9.72206 23.0922 0 + vertex 9.72206 23.0922 -0.1 + endloop + endfacet + facet normal -0.916786 -0.399379 0 + outer loop + vertex 9.72206 23.0922 0 + vertex 10.0801 22.2703 -0.1 + vertex 10.0801 22.2703 0 + endloop + endfacet + facet normal -0.906506 -0.422192 0 + outer loop + vertex 10.3935 21.5973 -0.1 + vertex 10.0801 22.2703 0 + vertex 10.0801 22.2703 -0.1 + endloop + endfacet + facet normal -0.906506 -0.422192 0 + outer loop + vertex 10.0801 22.2703 0 + vertex 10.3935 21.5973 -0.1 + vertex 10.3935 21.5973 0 + endloop + endfacet + facet normal -0.886025 -0.463638 0 + outer loop + vertex 10.6869 21.0368 -0.1 + vertex 10.3935 21.5973 0 + vertex 10.3935 21.5973 -0.1 + endloop + endfacet + facet normal -0.886025 -0.463638 0 + outer loop + vertex 10.3935 21.5973 0 + vertex 10.6869 21.0368 -0.1 + vertex 10.6869 21.0368 0 + endloop + endfacet + facet normal -0.852053 -0.523456 0 + outer loop + vertex 10.9846 20.5521 -0.1 + vertex 10.6869 21.0368 0 + vertex 10.6869 21.0368 -0.1 + endloop + endfacet + facet normal -0.852053 -0.523456 0 + outer loop + vertex 10.6869 21.0368 0 + vertex 10.9846 20.5521 -0.1 + vertex 10.9846 20.5521 0 + endloop + endfacet + facet normal -0.806267 -0.591552 0 + outer loop + vertex 11.3113 20.1069 -0.1 + vertex 10.9846 20.5521 0 + vertex 10.9846 20.5521 -0.1 + endloop + endfacet + facet normal -0.806267 -0.591552 0 + outer loop + vertex 10.9846 20.5521 0 + vertex 11.3113 20.1069 -0.1 + vertex 11.3113 20.1069 0 + endloop + endfacet + facet normal -0.758443 -0.65174 0 + outer loop + vertex 11.6914 19.6646 -0.1 + vertex 11.3113 20.1069 0 + vertex 11.3113 20.1069 -0.1 + endloop + endfacet + facet normal -0.758443 -0.65174 0 + outer loop + vertex 11.3113 20.1069 0 + vertex 11.6914 19.6646 -0.1 + vertex 11.6914 19.6646 0 + endloop + endfacet + facet normal -0.720518 -0.693437 0 + outer loop + vertex 12.1494 19.1886 -0.1 + vertex 11.6914 19.6646 0 + vertex 11.6914 19.6646 -0.1 + endloop + endfacet + facet normal -0.720518 -0.693437 0 + outer loop + vertex 11.6914 19.6646 0 + vertex 12.1494 19.1886 -0.1 + vertex 12.1494 19.1886 0 + endloop + endfacet + facet normal -0.697808 -0.716285 0 + outer loop + vertex 12.1494 19.1886 -0.1 + vertex 12.71 18.6425 0 + vertex 12.1494 19.1886 0 + endloop + endfacet + facet normal -0.697808 -0.716285 -0 + outer loop + vertex 12.71 18.6425 0 + vertex 12.1494 19.1886 -0.1 + vertex 12.71 18.6425 -0.1 + endloop + endfacet + facet normal -0.680991 -0.732292 0 + outer loop + vertex 12.71 18.6425 -0.1 + vertex 13.3813 18.0182 0 + vertex 12.71 18.6425 0 + endloop + endfacet + facet normal -0.680991 -0.732292 -0 + outer loop + vertex 13.3813 18.0182 0 + vertex 12.71 18.6425 -0.1 + vertex 13.3813 18.0182 -0.1 + endloop + endfacet + facet normal -0.650845 -0.759211 0 + outer loop + vertex 13.3813 18.0182 -0.1 + vertex 14.0017 17.4864 0 + vertex 13.3813 18.0182 0 + endloop + endfacet + facet normal -0.650845 -0.759211 -0 + outer loop + vertex 14.0017 17.4864 0 + vertex 13.3813 18.0182 -0.1 + vertex 14.0017 17.4864 -0.1 + endloop + endfacet + facet normal -0.606609 -0.795001 0 + outer loop + vertex 14.0017 17.4864 -0.1 + vertex 14.6028 17.0277 0 + vertex 14.0017 17.4864 0 + endloop + endfacet + facet normal -0.606609 -0.795001 -0 + outer loop + vertex 14.6028 17.0277 0 + vertex 14.0017 17.4864 -0.1 + vertex 14.6028 17.0277 -0.1 + endloop + endfacet + facet normal -0.550734 -0.834681 0 + outer loop + vertex 14.6028 17.0277 -0.1 + vertex 15.2162 16.623 0 + vertex 14.6028 17.0277 0 + endloop + endfacet + facet normal -0.550734 -0.834681 -0 + outer loop + vertex 15.2162 16.623 0 + vertex 14.6028 17.0277 -0.1 + vertex 15.2162 16.623 -0.1 + endloop + endfacet + facet normal -0.490625 -0.871371 0 + outer loop + vertex 15.2162 16.623 -0.1 + vertex 15.8738 16.2527 0 + vertex 15.2162 16.623 0 + endloop + endfacet + facet normal -0.490625 -0.871371 -0 + outer loop + vertex 15.8738 16.2527 0 + vertex 15.2162 16.623 -0.1 + vertex 15.8738 16.2527 -0.1 + endloop + endfacet + facet normal -0.435747 -0.900069 0 + outer loop + vertex 15.8738 16.2527 -0.1 + vertex 16.6072 15.8977 0 + vertex 15.8738 16.2527 0 + endloop + endfacet + facet normal -0.435747 -0.900069 -0 + outer loop + vertex 16.6072 15.8977 0 + vertex 15.8738 16.2527 -0.1 + vertex 16.6072 15.8977 -0.1 + endloop + endfacet + facet normal -0.392812 -0.919619 0 + outer loop + vertex 16.6072 15.8977 -0.1 + vertex 17.448 15.5385 0 + vertex 16.6072 15.8977 0 + endloop + endfacet + facet normal -0.392812 -0.919619 -0 + outer loop + vertex 17.448 15.5385 0 + vertex 16.6072 15.8977 -0.1 + vertex 17.448 15.5385 -0.1 + endloop + endfacet + facet normal -0.36368 -0.931524 0 + outer loop + vertex 17.448 15.5385 -0.1 + vertex 18.4281 15.1559 0 + vertex 17.448 15.5385 0 + endloop + endfacet + facet normal -0.36368 -0.931524 -0 + outer loop + vertex 18.4281 15.1559 0 + vertex 17.448 15.5385 -0.1 + vertex 18.4281 15.1559 -0.1 + endloop + endfacet + facet normal -0.343445 -0.939173 0 + outer loop + vertex 18.4281 15.1559 -0.1 + vertex 19.4469 14.7833 0 + vertex 18.4281 15.1559 0 + endloop + endfacet + facet normal -0.343445 -0.939173 -0 + outer loop + vertex 19.4469 14.7833 0 + vertex 18.4281 15.1559 -0.1 + vertex 19.4469 14.7833 -0.1 + endloop + endfacet + facet normal -0.28492 -0.958551 0 + outer loop + vertex 19.4469 14.7833 -0.1 + vertex 19.7955 14.6797 0 + vertex 19.4469 14.7833 0 + endloop + endfacet + facet normal -0.28492 -0.958551 -0 + outer loop + vertex 19.7955 14.6797 0 + vertex 19.4469 14.7833 -0.1 + vertex 19.7955 14.6797 -0.1 + endloop + endfacet + facet normal -0.184649 -0.982804 0 + outer loop + vertex 19.7955 14.6797 -0.1 + vertex 20.0785 14.6265 0 + vertex 19.7955 14.6797 0 + endloop + endfacet + facet normal -0.184649 -0.982804 -0 + outer loop + vertex 20.0785 14.6265 0 + vertex 19.7955 14.6797 -0.1 + vertex 20.0785 14.6265 -0.1 + endloop + endfacet + facet normal -0.024894 -0.99969 0 + outer loop + vertex 20.0785 14.6265 -0.1 + vertex 20.327 14.6203 0 + vertex 20.0785 14.6265 0 + endloop + endfacet + facet normal -0.024894 -0.99969 -0 + outer loop + vertex 20.327 14.6203 0 + vertex 20.0785 14.6265 -0.1 + vertex 20.327 14.6203 -0.1 + endloop + endfacet + facet normal 0.150471 -0.988614 0 + outer loop + vertex 20.327 14.6203 -0.1 + vertex 20.5722 14.6577 0 + vertex 20.327 14.6203 0 + endloop + endfacet + facet normal 0.150471 -0.988614 0 + outer loop + vertex 20.5722 14.6577 0 + vertex 20.327 14.6203 -0.1 + vertex 20.5722 14.6577 -0.1 + endloop + endfacet + facet normal 0.272592 -0.96213 0 + outer loop + vertex 20.5722 14.6577 -0.1 + vertex 20.8452 14.735 0 + vertex 20.5722 14.6577 0 + endloop + endfacet + facet normal 0.272592 -0.96213 0 + outer loop + vertex 20.8452 14.735 0 + vertex 20.5722 14.6577 -0.1 + vertex 20.8452 14.735 -0.1 + endloop + endfacet + facet normal 0.32454 -0.945872 0 + outer loop + vertex 20.8452 14.735 -0.1 + vertex 21.1771 14.8489 0 + vertex 20.8452 14.735 0 + endloop + endfacet + facet normal 0.32454 -0.945872 0 + outer loop + vertex 21.1771 14.8489 0 + vertex 20.8452 14.735 -0.1 + vertex 21.1771 14.8489 -0.1 + endloop + endfacet + facet normal 0.357547 -0.933895 0 + outer loop + vertex 21.1771 14.8489 -0.1 + vertex 21.6737 15.039 0 + vertex 21.1771 14.8489 0 + endloop + endfacet + facet normal 0.357547 -0.933895 0 + outer loop + vertex 21.6737 15.039 0 + vertex 21.1771 14.8489 -0.1 + vertex 21.6737 15.039 -0.1 + endloop + endfacet + facet normal 0.392507 -0.919749 0 + outer loop + vertex 21.6737 15.039 -0.1 + vertex 22.2336 15.278 0 + vertex 21.6737 15.039 0 + endloop + endfacet + facet normal 0.392507 -0.919749 0 + outer loop + vertex 22.2336 15.278 0 + vertex 21.6737 15.039 -0.1 + vertex 22.2336 15.278 -0.1 + endloop + endfacet + facet normal 0.427814 -0.903867 0 + outer loop + vertex 22.2336 15.278 -0.1 + vertex 23.3919 15.8262 0 + vertex 22.2336 15.278 0 + endloop + endfacet + facet normal 0.427814 -0.903867 0 + outer loop + vertex 23.3919 15.8262 0 + vertex 22.2336 15.278 -0.1 + vertex 23.3919 15.8262 -0.1 + endloop + endfacet + facet normal 0.460603 -0.887606 0 + outer loop + vertex 23.3919 15.8262 -0.1 + vertex 23.9148 16.0975 0 + vertex 23.3919 15.8262 0 + endloop + endfacet + facet normal 0.460603 -0.887606 0 + outer loop + vertex 23.9148 16.0975 0 + vertex 23.3919 15.8262 -0.1 + vertex 23.9148 16.0975 -0.1 + endloop + endfacet + facet normal 0.489467 -0.872022 0 + outer loop + vertex 23.9148 16.0975 -0.1 + vertex 24.3498 16.3417 0 + vertex 23.9148 16.0975 0 + endloop + endfacet + facet normal 0.489467 -0.872022 0 + outer loop + vertex 24.3498 16.3417 0 + vertex 23.9148 16.0975 -0.1 + vertex 24.3498 16.3417 -0.1 + endloop + endfacet + facet normal 0.539107 -0.842237 0 + outer loop + vertex 24.3498 16.3417 -0.1 + vertex 24.659 16.5397 0 + vertex 24.3498 16.3417 0 + endloop + endfacet + facet normal 0.539107 -0.842237 0 + outer loop + vertex 24.659 16.5397 0 + vertex 24.3498 16.3417 -0.1 + vertex 24.659 16.5397 -0.1 + endloop + endfacet + facet normal 0.620549 -0.784168 0 + outer loop + vertex 24.659 16.5397 -0.1 + vertex 24.7548 16.6154 0 + vertex 24.659 16.5397 0 + endloop + endfacet + facet normal 0.620549 -0.784168 0 + outer loop + vertex 24.7548 16.6154 0 + vertex 24.659 16.5397 -0.1 + vertex 24.7548 16.6154 -0.1 + endloop + endfacet + facet normal 0.751376 -0.659874 0 + outer loop + vertex 24.7548 16.6154 0 + vertex 24.8049 16.6725 -0.1 + vertex 24.8049 16.6725 0 + endloop + endfacet + facet normal 0.751376 -0.659874 0 + outer loop + vertex 24.8049 16.6725 -0.1 + vertex 24.7548 16.6154 0 + vertex 24.7548 16.6154 -0.1 + endloop + endfacet + facet normal 0.968195 -0.250195 0 + outer loop + vertex 24.8049 16.6725 0 + vertex 24.8294 16.7672 -0.1 + vertex 24.8294 16.7672 0 + endloop + endfacet + facet normal 0.968195 -0.250195 0 + outer loop + vertex 24.8294 16.7672 -0.1 + vertex 24.8049 16.6725 0 + vertex 24.8049 16.6725 -0.1 + endloop + endfacet + facet normal 0.998807 0.0488365 0 + outer loop + vertex 24.8294 16.7672 0 + vertex 24.8232 16.8925 -0.1 + vertex 24.8232 16.8925 0 + endloop + endfacet + facet normal 0.998807 0.0488365 0 + outer loop + vertex 24.8232 16.8925 -0.1 + vertex 24.8294 16.7672 0 + vertex 24.8294 16.7672 -0.1 + endloop + endfacet + facet normal 0.971162 0.23842 0 + outer loop + vertex 24.8232 16.8925 0 + vertex 24.789 17.0321 -0.1 + vertex 24.789 17.0321 0 + endloop + endfacet + facet normal 0.971162 0.23842 0 + outer loop + vertex 24.789 17.0321 -0.1 + vertex 24.8232 16.8925 0 + vertex 24.8232 16.8925 -0.1 + endloop + endfacet + facet normal 0.916748 0.399467 0 + outer loop + vertex 24.789 17.0321 0 + vertex 24.7291 17.1695 -0.1 + vertex 24.7291 17.1695 0 + endloop + endfacet + facet normal 0.916748 0.399467 0 + outer loop + vertex 24.7291 17.1695 -0.1 + vertex 24.789 17.0321 0 + vertex 24.789 17.0321 -0.1 + endloop + endfacet + facet normal 0.771083 0.636734 0 + outer loop + vertex 24.7291 17.1695 0 + vertex 24.6602 17.253 -0.1 + vertex 24.6602 17.253 0 + endloop + endfacet + facet normal 0.771083 0.636734 0 + outer loop + vertex 24.6602 17.253 -0.1 + vertex 24.7291 17.1695 0 + vertex 24.7291 17.1695 -0.1 + endloop + endfacet + facet normal 0.526106 0.850419 -0 + outer loop + vertex 24.6602 17.253 -0.1 + vertex 24.5483 17.3222 0 + vertex 24.6602 17.253 0 + endloop + endfacet + facet normal 0.526106 0.850419 0 + outer loop + vertex 24.5483 17.3222 0 + vertex 24.6602 17.253 -0.1 + vertex 24.5483 17.3222 -0.1 + endloop + endfacet + facet normal 0.326655 0.945144 -0 + outer loop + vertex 24.5483 17.3222 -0.1 + vertex 24.386 17.3783 0 + vertex 24.5483 17.3222 0 + endloop + endfacet + facet normal 0.326655 0.945144 0 + outer loop + vertex 24.386 17.3783 0 + vertex 24.5483 17.3222 -0.1 + vertex 24.386 17.3783 -0.1 + endloop + endfacet + facet normal 0.19643 0.980518 -0 + outer loop + vertex 24.386 17.3783 -0.1 + vertex 24.166 17.4223 0 + vertex 24.386 17.3783 0 + endloop + endfacet + facet normal 0.19643 0.980518 0 + outer loop + vertex 24.166 17.4223 0 + vertex 24.386 17.3783 -0.1 + vertex 24.166 17.4223 -0.1 + endloop + endfacet + facet normal 0.0878721 0.996132 -0 + outer loop + vertex 24.166 17.4223 -0.1 + vertex 23.5226 17.4791 0 + vertex 24.166 17.4223 0 + endloop + endfacet + facet normal 0.0878721 0.996132 0 + outer loop + vertex 23.5226 17.4791 0 + vertex 24.166 17.4223 -0.1 + vertex 23.5226 17.4791 -0.1 + endloop + endfacet + facet normal 0.0232768 0.999729 -0 + outer loop + vertex 23.5226 17.4791 -0.1 + vertex 22.5588 17.5015 0 + vertex 23.5226 17.4791 0 + endloop + endfacet + facet normal 0.0232768 0.999729 0 + outer loop + vertex 22.5588 17.5015 0 + vertex 23.5226 17.4791 -0.1 + vertex 22.5588 17.5015 -0.1 + endloop + endfacet + facet normal 0.0146144 0.999893 -0 + outer loop + vertex 22.5588 17.5015 -0.1 + vertex 21.0506 17.5236 0 + vertex 22.5588 17.5015 0 + endloop + endfacet + facet normal 0.0146144 0.999893 0 + outer loop + vertex 21.0506 17.5236 0 + vertex 22.5588 17.5015 -0.1 + vertex 21.0506 17.5236 -0.1 + endloop + endfacet + facet normal 0.0395978 0.999216 -0 + outer loop + vertex 21.0506 17.5236 -0.1 + vertex 20.2276 17.5562 0 + vertex 21.0506 17.5236 0 + endloop + endfacet + facet normal 0.0395978 0.999216 0 + outer loop + vertex 20.2276 17.5562 0 + vertex 21.0506 17.5236 -0.1 + vertex 20.2276 17.5562 -0.1 + endloop + endfacet + facet normal 0.211618 0.977352 -0 + outer loop + vertex 20.2276 17.5562 -0.1 + vertex 20.1284 17.5777 0 + vertex 20.2276 17.5562 0 + endloop + endfacet + facet normal 0.211618 0.977352 0 + outer loop + vertex 20.1284 17.5777 0 + vertex 20.2276 17.5562 -0.1 + vertex 20.1284 17.5777 -0.1 + endloop + endfacet + facet normal 0.390006 0.920812 -0 + outer loop + vertex 20.1284 17.5777 -0.1 + vertex 20.0333 17.6179 0 + vertex 20.1284 17.5777 0 + endloop + endfacet + facet normal 0.390006 0.920812 0 + outer loop + vertex 20.0333 17.6179 0 + vertex 20.1284 17.5777 -0.1 + vertex 20.0333 17.6179 -0.1 + endloop + endfacet + facet normal 0.545234 0.838284 -0 + outer loop + vertex 20.0333 17.6179 -0.1 + vertex 19.9424 17.6771 0 + vertex 20.0333 17.6179 0 + endloop + endfacet + facet normal 0.545234 0.838284 0 + outer loop + vertex 19.9424 17.6771 0 + vertex 20.0333 17.6179 -0.1 + vertex 19.9424 17.6771 -0.1 + endloop + endfacet + facet normal 0.668778 0.743462 -0 + outer loop + vertex 19.9424 17.6771 -0.1 + vertex 19.8554 17.7553 0 + vertex 19.9424 17.6771 0 + endloop + endfacet + facet normal 0.668778 0.743462 0 + outer loop + vertex 19.8554 17.7553 0 + vertex 19.9424 17.6771 -0.1 + vertex 19.8554 17.7553 -0.1 + endloop + endfacet + facet normal 0.797362 0.603501 0 + outer loop + vertex 19.8554 17.7553 0 + vertex 19.6934 17.9694 -0.1 + vertex 19.6934 17.9694 0 + endloop + endfacet + facet normal 0.797362 0.603501 0 + outer loop + vertex 19.6934 17.9694 -0.1 + vertex 19.8554 17.7553 0 + vertex 19.8554 17.7553 -0.1 + endloop + endfacet + facet normal 0.893603 0.448858 0 + outer loop + vertex 19.6934 17.9694 0 + vertex 19.5469 18.2611 -0.1 + vertex 19.5469 18.2611 0 + endloop + endfacet + facet normal 0.893603 0.448858 0 + outer loop + vertex 19.5469 18.2611 -0.1 + vertex 19.6934 17.9694 0 + vertex 19.6934 17.9694 -0.1 + endloop + endfacet + facet normal 0.942385 0.33453 0 + outer loop + vertex 19.5469 18.2611 0 + vertex 19.4153 18.6317 -0.1 + vertex 19.4153 18.6317 0 + endloop + endfacet + facet normal 0.942385 0.33453 0 + outer loop + vertex 19.4153 18.6317 -0.1 + vertex 19.5469 18.2611 0 + vertex 19.5469 18.2611 -0.1 + endloop + endfacet + facet normal 0.967894 0.251357 0 + outer loop + vertex 19.4153 18.6317 0 + vertex 19.2984 19.082 -0.1 + vertex 19.2984 19.082 0 + endloop + endfacet + facet normal 0.967894 0.251357 0 + outer loop + vertex 19.2984 19.082 -0.1 + vertex 19.4153 18.6317 0 + vertex 19.4153 18.6317 -0.1 + endloop + endfacet + facet normal 0.981784 0.190002 0 + outer loop + vertex 19.2984 19.082 0 + vertex 19.1956 19.6132 -0.1 + vertex 19.1956 19.6132 0 + endloop + endfacet + facet normal 0.981784 0.190002 0 + outer loop + vertex 19.1956 19.6132 -0.1 + vertex 19.2984 19.082 0 + vertex 19.2984 19.082 -0.1 + endloop + endfacet + facet normal 0.989607 0.143797 0 + outer loop + vertex 19.1956 19.6132 0 + vertex 19.1065 20.2262 -0.1 + vertex 19.1065 20.2262 0 + endloop + endfacet + facet normal 0.989607 0.143797 0 + outer loop + vertex 19.1065 20.2262 -0.1 + vertex 19.1956 19.6132 0 + vertex 19.1956 19.6132 -0.1 + endloop + endfacet + facet normal 0.988819 0.149121 0 + outer loop + vertex 19.1065 20.2262 0 + vertex 19.0081 20.8787 -0.1 + vertex 19.0081 20.8787 0 + endloop + endfacet + facet normal 0.988819 0.149121 0 + outer loop + vertex 19.0081 20.8787 -0.1 + vertex 19.1065 20.2262 0 + vertex 19.1065 20.2262 -0.1 + endloop + endfacet + facet normal 0.979919 0.199398 0 + outer loop + vertex 19.0081 20.8787 0 + vertex 18.892 21.4494 -0.1 + vertex 18.892 21.4494 0 + endloop + endfacet + facet normal 0.979919 0.199398 0 + outer loop + vertex 18.892 21.4494 -0.1 + vertex 19.0081 20.8787 0 + vertex 19.0081 20.8787 -0.1 + endloop + endfacet + facet normal 0.963148 0.268972 0 + outer loop + vertex 18.892 21.4494 0 + vertex 18.7726 21.8767 -0.1 + vertex 18.7726 21.8767 0 + endloop + endfacet + facet normal 0.963148 0.268972 0 + outer loop + vertex 18.7726 21.8767 -0.1 + vertex 18.892 21.4494 0 + vertex 18.892 21.4494 -0.1 + endloop + endfacet + facet normal 0.928333 0.371749 0 + outer loop + vertex 18.7726 21.8767 0 + vertex 18.7163 22.0174 -0.1 + vertex 18.7163 22.0174 0 + endloop + endfacet + facet normal 0.928333 0.371749 0 + outer loop + vertex 18.7163 22.0174 -0.1 + vertex 18.7726 21.8767 0 + vertex 18.7726 21.8767 -0.1 + endloop + endfacet + facet normal 0.845312 0.534273 0 + outer loop + vertex 18.7163 22.0174 0 + vertex 18.6646 22.0992 -0.1 + vertex 18.6646 22.0992 0 + endloop + endfacet + facet normal 0.845312 0.534273 0 + outer loop + vertex 18.6646 22.0992 -0.1 + vertex 18.7163 22.0174 0 + vertex 18.7163 22.0174 -0.1 + endloop + endfacet + facet normal 0.569342 0.822101 -0 + outer loop + vertex 18.6646 22.0992 -0.1 + vertex 18.4732 22.2317 0 + vertex 18.6646 22.0992 0 + endloop + endfacet + facet normal 0.569342 0.822101 0 + outer loop + vertex 18.4732 22.2317 0 + vertex 18.6646 22.0992 -0.1 + vertex 18.4732 22.2317 -0.1 + endloop + endfacet + facet normal 0.466042 0.884763 -0 + outer loop + vertex 18.4732 22.2317 -0.1 + vertex 18.127 22.4141 0 + vertex 18.4732 22.2317 0 + endloop + endfacet + facet normal 0.466042 0.884763 0 + outer loop + vertex 18.127 22.4141 0 + vertex 18.4732 22.2317 -0.1 + vertex 18.127 22.4141 -0.1 + endloop + endfacet + facet normal 0.418359 0.908282 -0 + outer loop + vertex 18.127 22.4141 -0.1 + vertex 17.6752 22.6222 0 + vertex 18.127 22.4141 0 + endloop + endfacet + facet normal 0.418359 0.908282 0 + outer loop + vertex 17.6752 22.6222 0 + vertex 18.127 22.4141 -0.1 + vertex 17.6752 22.6222 -0.1 + endloop + endfacet + facet normal 0.381566 0.924342 -0 + outer loop + vertex 17.6752 22.6222 -0.1 + vertex 17.1667 22.8321 0 + vertex 17.6752 22.6222 0 + endloop + endfacet + facet normal 0.381566 0.924342 0 + outer loop + vertex 17.1667 22.8321 0 + vertex 17.6752 22.6222 -0.1 + vertex 17.1667 22.8321 -0.1 + endloop + endfacet + facet normal 0.375086 0.92699 -0 + outer loop + vertex 17.1667 22.8321 -0.1 + vertex 15.5173 23.4995 0 + vertex 17.1667 22.8321 0 + endloop + endfacet + facet normal 0.375086 0.92699 0 + outer loop + vertex 15.5173 23.4995 0 + vertex 17.1667 22.8321 -0.1 + vertex 15.5173 23.4995 -0.1 + endloop + endfacet + facet normal 0.401684 0.915778 -0 + outer loop + vertex 15.5173 23.4995 -0.1 + vertex 14.0281 24.1527 0 + vertex 15.5173 23.4995 0 + endloop + endfacet + facet normal 0.401684 0.915778 0 + outer loop + vertex 14.0281 24.1527 0 + vertex 15.5173 23.4995 -0.1 + vertex 14.0281 24.1527 -0.1 + endloop + endfacet + facet normal 0.431504 0.902111 -0 + outer loop + vertex 14.0281 24.1527 -0.1 + vertex 13.7923 24.2655 0 + vertex 14.0281 24.1527 0 + endloop + endfacet + facet normal 0.431504 0.902111 0 + outer loop + vertex 13.7923 24.2655 0 + vertex 14.0281 24.1527 -0.1 + vertex 13.7923 24.2655 -0.1 + endloop + endfacet + facet normal 0.491302 0.870989 -0 + outer loop + vertex 13.7923 24.2655 -0.1 + vertex 13.5553 24.3991 0 + vertex 13.7923 24.2655 0 + endloop + endfacet + facet normal 0.491302 0.870989 0 + outer loop + vertex 13.5553 24.3991 0 + vertex 13.7923 24.2655 -0.1 + vertex 13.5553 24.3991 -0.1 + endloop + endfacet + facet normal 0.565064 0.825047 -0 + outer loop + vertex 13.5553 24.3991 -0.1 + vertex 13.085 24.7212 0 + vertex 13.5553 24.3991 0 + endloop + endfacet + facet normal 0.565064 0.825047 0 + outer loop + vertex 13.085 24.7212 0 + vertex 13.5553 24.3991 -0.1 + vertex 13.085 24.7212 -0.1 + endloop + endfacet + facet normal 0.644201 0.764857 -0 + outer loop + vertex 13.085 24.7212 -0.1 + vertex 12.6316 25.1032 0 + vertex 13.085 24.7212 0 + endloop + endfacet + facet normal 0.644201 0.764857 0 + outer loop + vertex 12.6316 25.1032 0 + vertex 13.085 24.7212 -0.1 + vertex 12.6316 25.1032 -0.1 + endloop + endfacet + facet normal 0.710157 0.704043 0 + outer loop + vertex 12.6316 25.1032 0 + vertex 12.2092 25.5292 -0.1 + vertex 12.2092 25.5292 0 + endloop + endfacet + facet normal 0.710157 0.704043 0 + outer loop + vertex 12.2092 25.5292 -0.1 + vertex 12.6316 25.1032 0 + vertex 12.6316 25.1032 -0.1 + endloop + endfacet + facet normal 0.769647 0.63847 0 + outer loop + vertex 12.2092 25.5292 0 + vertex 11.8324 25.9834 -0.1 + vertex 11.8324 25.9834 0 + endloop + endfacet + facet normal 0.769647 0.63847 0 + outer loop + vertex 11.8324 25.9834 -0.1 + vertex 12.2092 25.5292 0 + vertex 12.2092 25.5292 -0.1 + endloop + endfacet + facet normal 0.827234 0.561857 0 + outer loop + vertex 11.8324 25.9834 0 + vertex 11.5154 26.4501 -0.1 + vertex 11.5154 26.4501 0 + endloop + endfacet + facet normal 0.827234 0.561857 0 + outer loop + vertex 11.5154 26.4501 -0.1 + vertex 11.8324 25.9834 0 + vertex 11.8324 25.9834 -0.1 + endloop + endfacet + facet normal 0.870844 0.491559 0 + outer loop + vertex 11.5154 26.4501 0 + vertex 11.3839 26.6832 -0.1 + vertex 11.3839 26.6832 0 + endloop + endfacet + facet normal 0.870844 0.491559 0 + outer loop + vertex 11.3839 26.6832 -0.1 + vertex 11.5154 26.4501 0 + vertex 11.5154 26.4501 -0.1 + endloop + endfacet + facet normal 0.900452 0.434955 0 + outer loop + vertex 11.3839 26.6832 0 + vertex 11.2726 26.9135 -0.1 + vertex 11.2726 26.9135 0 + endloop + endfacet + facet normal 0.900452 0.434955 0 + outer loop + vertex 11.2726 26.9135 -0.1 + vertex 11.3839 26.6832 0 + vertex 11.3839 26.6832 -0.1 + endloop + endfacet + facet normal 0.930028 0.367488 0 + outer loop + vertex 11.2726 26.9135 0 + vertex 11.1835 27.139 -0.1 + vertex 11.1835 27.139 0 + endloop + endfacet + facet normal 0.930028 0.367488 0 + outer loop + vertex 11.1835 27.139 -0.1 + vertex 11.2726 26.9135 0 + vertex 11.2726 26.9135 -0.1 + endloop + endfacet + facet normal 0.958361 0.28556 0 + outer loop + vertex 11.1835 27.139 0 + vertex 11.1184 27.3577 -0.1 + vertex 11.1184 27.3577 0 + endloop + endfacet + facet normal 0.958361 0.28556 0 + outer loop + vertex 11.1184 27.3577 -0.1 + vertex 11.1835 27.139 0 + vertex 11.1835 27.139 -0.1 + endloop + endfacet + facet normal 0.982358 0.187011 0 + outer loop + vertex 11.1184 27.3577 0 + vertex 11.0734 27.5937 -0.1 + vertex 11.0734 27.5937 0 + endloop + endfacet + facet normal 0.982358 0.187011 0 + outer loop + vertex 11.0734 27.5937 -0.1 + vertex 11.1184 27.3577 0 + vertex 11.1184 27.3577 -0.1 + endloop + endfacet + facet normal 0.995162 0.0982451 0 + outer loop + vertex 11.0734 27.5937 0 + vertex 11.0484 27.8474 -0.1 + vertex 11.0484 27.8474 0 + endloop + endfacet + facet normal 0.995162 0.0982451 0 + outer loop + vertex 11.0484 27.8474 -0.1 + vertex 11.0734 27.5937 0 + vertex 11.0734 27.5937 -0.1 + endloop + endfacet + facet normal 0.999708 0.0241697 0 + outer loop + vertex 11.0484 27.8474 0 + vertex 11.0419 28.1143 -0.1 + vertex 11.0419 28.1143 0 + endloop + endfacet + facet normal 0.999708 0.0241697 0 + outer loop + vertex 11.0419 28.1143 -0.1 + vertex 11.0484 27.8474 0 + vertex 11.0484 27.8474 -0.1 + endloop + endfacet + facet normal 0.999225 -0.0393733 0 + outer loop + vertex 11.0419 28.1143 0 + vertex 11.0528 28.3898 -0.1 + vertex 11.0528 28.3898 0 + endloop + endfacet + facet normal 0.999225 -0.0393733 0 + outer loop + vertex 11.0528 28.3898 -0.1 + vertex 11.0419 28.1143 0 + vertex 11.0419 28.1143 -0.1 + endloop + endfacet + facet normal 0.992566 -0.121707 0 + outer loop + vertex 11.0528 28.3898 0 + vertex 11.1213 28.9486 -0.1 + vertex 11.1213 28.9486 0 + endloop + endfacet + facet normal 0.992566 -0.121707 0 + outer loop + vertex 11.1213 28.9486 -0.1 + vertex 11.0528 28.3898 0 + vertex 11.0528 28.3898 -0.1 + endloop + endfacet + facet normal 0.975165 -0.221479 0 + outer loop + vertex 11.1213 28.9486 0 + vertex 11.2437 29.4873 -0.1 + vertex 11.2437 29.4873 0 + endloop + endfacet + facet normal 0.975165 -0.221479 0 + outer loop + vertex 11.2437 29.4873 -0.1 + vertex 11.1213 28.9486 0 + vertex 11.1213 28.9486 -0.1 + endloop + endfacet + facet normal 0.94561 -0.325304 0 + outer loop + vertex 11.2437 29.4873 0 + vertex 11.4096 29.9696 -0.1 + vertex 11.4096 29.9696 0 + endloop + endfacet + facet normal 0.94561 -0.325304 0 + outer loop + vertex 11.4096 29.9696 -0.1 + vertex 11.2437 29.4873 0 + vertex 11.2437 29.4873 -0.1 + endloop + endfacet + facet normal 0.908293 -0.418334 0 + outer loop + vertex 11.4096 29.9696 0 + vertex 11.5057 30.1782 -0.1 + vertex 11.5057 30.1782 0 + endloop + endfacet + facet normal 0.908293 -0.418334 0 + outer loop + vertex 11.5057 30.1782 -0.1 + vertex 11.4096 29.9696 0 + vertex 11.4096 29.9696 -0.1 + endloop + endfacet + facet normal 0.868734 -0.495279 0 + outer loop + vertex 11.5057 30.1782 0 + vertex 11.6088 30.3591 -0.1 + vertex 11.6088 30.3591 0 + endloop + endfacet + facet normal 0.868734 -0.495279 0 + outer loop + vertex 11.6088 30.3591 -0.1 + vertex 11.5057 30.1782 0 + vertex 11.5057 30.1782 -0.1 + endloop + endfacet + facet normal 0.806643 -0.59104 0 + outer loop + vertex 11.6088 30.3591 0 + vertex 11.7177 30.5077 -0.1 + vertex 11.7177 30.5077 0 + endloop + endfacet + facet normal 0.806643 -0.59104 0 + outer loop + vertex 11.7177 30.5077 -0.1 + vertex 11.6088 30.3591 0 + vertex 11.6088 30.3591 -0.1 + endloop + endfacet + facet normal 0.702105 -0.712073 0 + outer loop + vertex 11.7177 30.5077 -0.1 + vertex 11.8311 30.6195 0 + vertex 11.7177 30.5077 0 + endloop + endfacet + facet normal 0.702105 -0.712073 0 + outer loop + vertex 11.8311 30.6195 0 + vertex 11.7177 30.5077 -0.1 + vertex 11.8311 30.6195 -0.1 + endloop + endfacet + facet normal 0.51702 -0.855973 0 + outer loop + vertex 11.8311 30.6195 -0.1 + vertex 11.9476 30.6899 0 + vertex 11.8311 30.6195 0 + endloop + endfacet + facet normal 0.51702 -0.855973 0 + outer loop + vertex 11.9476 30.6899 0 + vertex 11.8311 30.6195 -0.1 + vertex 11.9476 30.6899 -0.1 + endloop + endfacet + facet normal 0.202357 -0.979312 0 + outer loop + vertex 11.9476 30.6899 -0.1 + vertex 12.0661 30.7144 0 + vertex 11.9476 30.6899 0 + endloop + endfacet + facet normal 0.202357 -0.979312 0 + outer loop + vertex 12.0661 30.7144 0 + vertex 11.9476 30.6899 -0.1 + vertex 12.0661 30.7144 -0.1 + endloop + endfacet + facet normal -0.111663 -0.993746 0 + outer loop + vertex 12.0661 30.7144 -0.1 + vertex 12.1728 30.7024 0 + vertex 12.0661 30.7144 0 + endloop + endfacet + facet normal -0.111663 -0.993746 -0 + outer loop + vertex 12.1728 30.7024 0 + vertex 12.0661 30.7144 -0.1 + vertex 12.1728 30.7024 -0.1 + endloop + endfacet + facet normal -0.43355 -0.90113 0 + outer loop + vertex 12.1728 30.7024 -0.1 + vertex 12.2478 30.6663 0 + vertex 12.1728 30.7024 0 + endloop + endfacet + facet normal -0.43355 -0.90113 -0 + outer loop + vertex 12.2478 30.6663 0 + vertex 12.1728 30.7024 -0.1 + vertex 12.2478 30.6663 -0.1 + endloop + endfacet + facet normal -0.812799 -0.582545 0 + outer loop + vertex 12.291 30.606 -0.1 + vertex 12.2478 30.6663 0 + vertex 12.2478 30.6663 -0.1 + endloop + endfacet + facet normal -0.812799 -0.582545 0 + outer loop + vertex 12.2478 30.6663 0 + vertex 12.291 30.606 -0.1 + vertex 12.291 30.606 0 + endloop + endfacet + facet normal -0.990983 -0.133984 0 + outer loop + vertex 12.3025 30.5214 -0.1 + vertex 12.291 30.606 0 + vertex 12.291 30.606 -0.1 + endloop + endfacet + facet normal -0.990983 -0.133984 0 + outer loop + vertex 12.291 30.606 0 + vertex 12.3025 30.5214 -0.1 + vertex 12.3025 30.5214 0 + endloop + endfacet + facet normal -0.983093 0.183105 0 + outer loop + vertex 12.2821 30.4122 -0.1 + vertex 12.3025 30.5214 0 + vertex 12.3025 30.5214 -0.1 + endloop + endfacet + facet normal -0.983093 0.183105 0 + outer loop + vertex 12.3025 30.5214 0 + vertex 12.2821 30.4122 -0.1 + vertex 12.2821 30.4122 0 + endloop + endfacet + facet normal -0.931822 0.362917 0 + outer loop + vertex 12.23 30.2784 -0.1 + vertex 12.2821 30.4122 0 + vertex 12.2821 30.4122 -0.1 + endloop + endfacet + facet normal -0.931822 0.362917 0 + outer loop + vertex 12.2821 30.4122 0 + vertex 12.23 30.2784 -0.1 + vertex 12.23 30.2784 0 + endloop + endfacet + facet normal -0.863735 0.503946 0 + outer loop + vertex 12.0304 29.9363 -0.1 + vertex 12.23 30.2784 0 + vertex 12.23 30.2784 -0.1 + endloop + endfacet + facet normal -0.863735 0.503946 0 + outer loop + vertex 12.23 30.2784 0 + vertex 12.0304 29.9363 -0.1 + vertex 12.0304 29.9363 0 + endloop + endfacet + facet normal -0.874405 0.485196 0 + outer loop + vertex 11.965 29.8184 -0.1 + vertex 12.0304 29.9363 0 + vertex 12.0304 29.9363 -0.1 + endloop + endfacet + facet normal -0.874405 0.485196 0 + outer loop + vertex 12.0304 29.9363 0 + vertex 11.965 29.8184 -0.1 + vertex 11.965 29.8184 0 + endloop + endfacet + facet normal -0.930071 0.367381 0 + outer loop + vertex 11.9082 29.6745 -0.1 + vertex 11.965 29.8184 0 + vertex 11.965 29.8184 -0.1 + endloop + endfacet + facet normal -0.930071 0.367381 0 + outer loop + vertex 11.965 29.8184 0 + vertex 11.9082 29.6745 -0.1 + vertex 11.9082 29.6745 0 + endloop + endfacet + facet normal -0.970384 0.241567 0 + outer loop + vertex 11.8205 29.3224 -0.1 + vertex 11.9082 29.6745 0 + vertex 11.9082 29.6745 -0.1 + endloop + endfacet + facet normal -0.970384 0.241567 0 + outer loop + vertex 11.9082 29.6745 0 + vertex 11.8205 29.3224 -0.1 + vertex 11.8205 29.3224 0 + endloop + endfacet + facet normal -0.99199 0.126319 0 + outer loop + vertex 11.7675 28.9061 -0.1 + vertex 11.8205 29.3224 0 + vertex 11.8205 29.3224 -0.1 + endloop + endfacet + facet normal -0.99199 0.126319 0 + outer loop + vertex 11.8205 29.3224 0 + vertex 11.7675 28.9061 -0.1 + vertex 11.7675 28.9061 0 + endloop + endfacet + facet normal -0.999189 0.0402694 0 + outer loop + vertex 11.7492 28.4518 -0.1 + vertex 11.7675 28.9061 0 + vertex 11.7675 28.9061 -0.1 + endloop + endfacet + facet normal -0.999189 0.0402694 0 + outer loop + vertex 11.7675 28.9061 0 + vertex 11.7492 28.4518 -0.1 + vertex 11.7492 28.4518 0 + endloop + endfacet + facet normal -0.999377 -0.0352801 0 + outer loop + vertex 11.7656 27.9858 -0.1 + vertex 11.7492 28.4518 0 + vertex 11.7492 28.4518 -0.1 + endloop + endfacet + facet normal -0.999377 -0.0352801 0 + outer loop + vertex 11.7492 28.4518 0 + vertex 11.7656 27.9858 -0.1 + vertex 11.7656 27.9858 0 + endloop + endfacet + facet normal -0.993617 -0.112806 0 + outer loop + vertex 11.8169 27.5343 -0.1 + vertex 11.7656 27.9858 0 + vertex 11.7656 27.9858 -0.1 + endloop + endfacet + facet normal -0.993617 -0.112806 0 + outer loop + vertex 11.7656 27.9858 0 + vertex 11.8169 27.5343 -0.1 + vertex 11.8169 27.5343 0 + endloop + endfacet + facet normal -0.978727 -0.205168 0 + outer loop + vertex 11.903 27.1234 -0.1 + vertex 11.8169 27.5343 0 + vertex 11.8169 27.5343 -0.1 + endloop + endfacet + facet normal -0.978727 -0.205168 0 + outer loop + vertex 11.8169 27.5343 0 + vertex 11.903 27.1234 -0.1 + vertex 11.903 27.1234 0 + endloop + endfacet + facet normal -0.943297 -0.331951 0 + outer loop + vertex 12.0241 26.7794 -0.1 + vertex 11.903 27.1234 0 + vertex 11.903 27.1234 -0.1 + endloop + endfacet + facet normal -0.943297 -0.331951 0 + outer loop + vertex 11.903 27.1234 0 + vertex 12.0241 26.7794 -0.1 + vertex 12.0241 26.7794 0 + endloop + endfacet + facet normal -0.895057 -0.445953 0 + outer loop + vertex 12.1339 26.5589 -0.1 + vertex 12.0241 26.7794 0 + vertex 12.0241 26.7794 -0.1 + endloop + endfacet + facet normal -0.895057 -0.445953 0 + outer loop + vertex 12.0241 26.7794 0 + vertex 12.1339 26.5589 -0.1 + vertex 12.1339 26.5589 0 + endloop + endfacet + facet normal -0.859859 -0.510531 0 + outer loop + vertex 12.2572 26.3514 -0.1 + vertex 12.1339 26.5589 0 + vertex 12.1339 26.5589 -0.1 + endloop + endfacet + facet normal -0.859859 -0.510531 0 + outer loop + vertex 12.1339 26.5589 0 + vertex 12.2572 26.3514 -0.1 + vertex 12.2572 26.3514 0 + endloop + endfacet + facet normal -0.813765 -0.581194 0 + outer loop + vertex 12.3979 26.1543 -0.1 + vertex 12.2572 26.3514 0 + vertex 12.2572 26.3514 -0.1 + endloop + endfacet + facet normal -0.813765 -0.581194 0 + outer loop + vertex 12.2572 26.3514 0 + vertex 12.3979 26.1543 -0.1 + vertex 12.3979 26.1543 0 + endloop + endfacet + facet normal -0.758497 -0.651676 0 + outer loop + vertex 12.5603 25.9653 -0.1 + vertex 12.3979 26.1543 0 + vertex 12.3979 26.1543 -0.1 + endloop + endfacet + facet normal -0.758497 -0.651676 0 + outer loop + vertex 12.3979 26.1543 0 + vertex 12.5603 25.9653 -0.1 + vertex 12.5603 25.9653 0 + endloop + endfacet + facet normal -0.697934 -0.716162 0 + outer loop + vertex 12.5603 25.9653 -0.1 + vertex 12.7484 25.782 0 + vertex 12.5603 25.9653 0 + endloop + endfacet + facet normal -0.697934 -0.716162 -0 + outer loop + vertex 12.7484 25.782 0 + vertex 12.5603 25.9653 -0.1 + vertex 12.7484 25.782 -0.1 + endloop + endfacet + facet normal -0.636928 -0.770923 0 + outer loop + vertex 12.7484 25.782 -0.1 + vertex 12.9664 25.6018 0 + vertex 12.7484 25.782 0 + endloop + endfacet + facet normal -0.636928 -0.770923 -0 + outer loop + vertex 12.9664 25.6018 0 + vertex 12.7484 25.782 -0.1 + vertex 12.9664 25.6018 -0.1 + endloop + endfacet + facet normal -0.579754 -0.814791 0 + outer loop + vertex 12.9664 25.6018 -0.1 + vertex 13.2184 25.4225 0 + vertex 12.9664 25.6018 0 + endloop + endfacet + facet normal -0.579754 -0.814791 -0 + outer loop + vertex 13.2184 25.4225 0 + vertex 12.9664 25.6018 -0.1 + vertex 13.2184 25.4225 -0.1 + endloop + endfacet + facet normal -0.529164 -0.84852 0 + outer loop + vertex 13.2184 25.4225 -0.1 + vertex 13.5086 25.2416 0 + vertex 13.2184 25.4225 0 + endloop + endfacet + facet normal -0.529164 -0.84852 -0 + outer loop + vertex 13.5086 25.2416 0 + vertex 13.2184 25.4225 -0.1 + vertex 13.5086 25.2416 -0.1 + endloop + endfacet + facet normal -0.467835 -0.883816 0 + outer loop + vertex 13.5086 25.2416 -0.1 + vertex 14.2197 24.8651 0 + vertex 13.5086 25.2416 0 + endloop + endfacet + facet normal -0.467835 -0.883816 -0 + outer loop + vertex 14.2197 24.8651 0 + vertex 13.5086 25.2416 -0.1 + vertex 14.2197 24.8651 -0.1 + endloop + endfacet + facet normal -0.411276 -0.911511 0 + outer loop + vertex 14.2197 24.8651 -0.1 + vertex 15.1328 24.4531 0 + vertex 14.2197 24.8651 0 + endloop + endfacet + facet normal -0.411276 -0.911511 -0 + outer loop + vertex 15.1328 24.4531 0 + vertex 14.2197 24.8651 -0.1 + vertex 15.1328 24.4531 -0.1 + endloop + endfacet + facet normal -0.376758 -0.926312 0 + outer loop + vertex 15.1328 24.4531 -0.1 + vertex 16.2809 23.9862 0 + vertex 15.1328 24.4531 0 + endloop + endfacet + facet normal -0.376758 -0.926312 -0 + outer loop + vertex 16.2809 23.9862 0 + vertex 15.1328 24.4531 -0.1 + vertex 16.2809 23.9862 -0.1 + endloop + endfacet + facet normal -0.357069 -0.934078 0 + outer loop + vertex 16.2809 23.9862 -0.1 + vertex 17.6969 23.4449 0 + vertex 16.2809 23.9862 0 + endloop + endfacet + facet normal -0.357069 -0.934078 -0 + outer loop + vertex 17.6969 23.4449 0 + vertex 16.2809 23.9862 -0.1 + vertex 17.6969 23.4449 -0.1 + endloop + endfacet + facet normal -0.423576 -0.90586 0 + outer loop + vertex 17.6969 23.4449 -0.1 + vertex 17.9883 23.3086 0 + vertex 17.6969 23.4449 0 + endloop + endfacet + facet normal -0.423576 -0.90586 -0 + outer loop + vertex 17.9883 23.3086 0 + vertex 17.6969 23.4449 -0.1 + vertex 17.9883 23.3086 -0.1 + endloop + endfacet + facet normal -0.513377 -0.858163 0 + outer loop + vertex 17.9883 23.3086 -0.1 + vertex 18.318 23.1114 0 + vertex 17.9883 23.3086 0 + endloop + endfacet + facet normal -0.513377 -0.858163 -0 + outer loop + vertex 18.318 23.1114 0 + vertex 17.9883 23.3086 -0.1 + vertex 18.318 23.1114 -0.1 + endloop + endfacet + facet normal -0.57768 -0.816263 0 + outer loop + vertex 18.318 23.1114 -0.1 + vertex 18.6454 22.8797 0 + vertex 18.318 23.1114 0 + endloop + endfacet + facet normal -0.57768 -0.816263 -0 + outer loop + vertex 18.6454 22.8797 0 + vertex 18.318 23.1114 -0.1 + vertex 18.6454 22.8797 -0.1 + endloop + endfacet + facet normal -0.644197 -0.76486 0 + outer loop + vertex 18.6454 22.8797 -0.1 + vertex 18.9302 22.6398 0 + vertex 18.6454 22.8797 0 + endloop + endfacet + facet normal -0.644197 -0.76486 -0 + outer loop + vertex 18.9302 22.6398 0 + vertex 18.6454 22.8797 -0.1 + vertex 18.9302 22.6398 -0.1 + endloop + endfacet + facet normal -0.705164 -0.709044 0 + outer loop + vertex 18.9302 22.6398 -0.1 + vertex 19.108 22.463 0 + vertex 18.9302 22.6398 0 + endloop + endfacet + facet normal -0.705164 -0.709044 -0 + outer loop + vertex 19.108 22.463 0 + vertex 18.9302 22.6398 -0.1 + vertex 19.108 22.463 -0.1 + endloop + endfacet + facet normal -0.763943 -0.645283 0 + outer loop + vertex 19.2511 22.2936 -0.1 + vertex 19.108 22.463 0 + vertex 19.108 22.463 -0.1 + endloop + endfacet + facet normal -0.763943 -0.645283 0 + outer loop + vertex 19.108 22.463 0 + vertex 19.2511 22.2936 -0.1 + vertex 19.2511 22.2936 0 + endloop + endfacet + facet normal -0.840155 -0.542346 0 + outer loop + vertex 19.3646 22.1178 -0.1 + vertex 19.2511 22.2936 0 + vertex 19.2511 22.2936 -0.1 + endloop + endfacet + facet normal -0.840155 -0.542346 0 + outer loop + vertex 19.2511 22.2936 0 + vertex 19.3646 22.1178 -0.1 + vertex 19.3646 22.1178 0 + endloop + endfacet + facet normal -0.910423 -0.413678 0 + outer loop + vertex 19.4538 21.9215 -0.1 + vertex 19.3646 22.1178 0 + vertex 19.3646 22.1178 -0.1 + endloop + endfacet + facet normal -0.910423 -0.413678 0 + outer loop + vertex 19.3646 22.1178 0 + vertex 19.4538 21.9215 -0.1 + vertex 19.4538 21.9215 0 + endloop + endfacet + facet normal -0.956843 -0.290607 0 + outer loop + vertex 19.5238 21.6908 -0.1 + vertex 19.4538 21.9215 0 + vertex 19.4538 21.9215 -0.1 + endloop + endfacet + facet normal -0.956843 -0.290607 0 + outer loop + vertex 19.4538 21.9215 0 + vertex 19.5238 21.6908 -0.1 + vertex 19.5238 21.6908 0 + endloop + endfacet + facet normal -0.980355 -0.19724 0 + outer loop + vertex 19.58 21.4118 -0.1 + vertex 19.5238 21.6908 0 + vertex 19.5238 21.6908 -0.1 + endloop + endfacet + facet normal -0.980355 -0.19724 0 + outer loop + vertex 19.5238 21.6908 0 + vertex 19.58 21.4118 -0.1 + vertex 19.58 21.4118 0 + endloop + endfacet + facet normal -0.992839 -0.119457 0 + outer loop + vertex 19.6713 20.6529 -0.1 + vertex 19.58 21.4118 0 + vertex 19.58 21.4118 -0.1 + endloop + endfacet + facet normal -0.992839 -0.119457 0 + outer loop + vertex 19.58 21.4118 0 + vertex 19.6713 20.6529 -0.1 + vertex 19.6713 20.6529 0 + endloop + endfacet + facet normal -0.994314 -0.106485 0 + outer loop + vertex 19.753 19.8896 -0.1 + vertex 19.6713 20.6529 0 + vertex 19.6713 20.6529 -0.1 + endloop + endfacet + facet normal -0.994314 -0.106485 0 + outer loop + vertex 19.6713 20.6529 0 + vertex 19.753 19.8896 -0.1 + vertex 19.753 19.8896 0 + endloop + endfacet + facet normal -0.985782 -0.168027 0 + outer loop + vertex 19.8522 19.3078 -0.1 + vertex 19.753 19.8896 0 + vertex 19.753 19.8896 -0.1 + endloop + endfacet + facet normal -0.985782 -0.168027 0 + outer loop + vertex 19.753 19.8896 0 + vertex 19.8522 19.3078 -0.1 + vertex 19.8522 19.3078 0 + endloop + endfacet + facet normal -0.962825 -0.270127 0 + outer loop + vertex 19.9169 19.0772 -0.1 + vertex 19.8522 19.3078 0 + vertex 19.8522 19.3078 -0.1 + endloop + endfacet + facet normal -0.962825 -0.270127 0 + outer loop + vertex 19.8522 19.3078 0 + vertex 19.9169 19.0772 -0.1 + vertex 19.9169 19.0772 0 + endloop + endfacet + facet normal -0.925898 -0.377775 0 + outer loop + vertex 19.9962 18.8829 -0.1 + vertex 19.9169 19.0772 0 + vertex 19.9169 19.0772 -0.1 + endloop + endfacet + facet normal -0.925898 -0.377775 0 + outer loop + vertex 19.9169 19.0772 0 + vertex 19.9962 18.8829 -0.1 + vertex 19.9962 18.8829 0 + endloop + endfacet + facet normal -0.85612 -0.516776 0 + outer loop + vertex 20.0935 18.7216 -0.1 + vertex 19.9962 18.8829 0 + vertex 19.9962 18.8829 -0.1 + endloop + endfacet + facet normal -0.85612 -0.516776 0 + outer loop + vertex 19.9962 18.8829 0 + vertex 20.0935 18.7216 -0.1 + vertex 20.0935 18.7216 0 + endloop + endfacet + facet normal -0.741357 -0.67111 0 + outer loop + vertex 20.2124 18.5903 -0.1 + vertex 20.0935 18.7216 0 + vertex 20.0935 18.7216 -0.1 + endloop + endfacet + facet normal -0.741357 -0.67111 0 + outer loop + vertex 20.0935 18.7216 0 + vertex 20.2124 18.5903 -0.1 + vertex 20.2124 18.5903 0 + endloop + endfacet + facet normal -0.587422 -0.809281 0 + outer loop + vertex 20.2124 18.5903 -0.1 + vertex 20.3561 18.486 0 + vertex 20.2124 18.5903 0 + endloop + endfacet + facet normal -0.587422 -0.809281 -0 + outer loop + vertex 20.3561 18.486 0 + vertex 20.2124 18.5903 -0.1 + vertex 20.3561 18.486 -0.1 + endloop + endfacet + facet normal -0.423563 -0.905867 0 + outer loop + vertex 20.3561 18.486 -0.1 + vertex 20.5281 18.4055 0 + vertex 20.3561 18.486 0 + endloop + endfacet + facet normal -0.423563 -0.905867 -0 + outer loop + vertex 20.5281 18.4055 0 + vertex 20.3561 18.486 -0.1 + vertex 20.5281 18.4055 -0.1 + endloop + endfacet + facet normal -0.280888 -0.95974 0 + outer loop + vertex 20.5281 18.4055 -0.1 + vertex 20.7319 18.3459 0 + vertex 20.5281 18.4055 0 + endloop + endfacet + facet normal -0.280888 -0.95974 -0 + outer loop + vertex 20.7319 18.3459 0 + vertex 20.5281 18.4055 -0.1 + vertex 20.7319 18.3459 -0.1 + endloop + endfacet + facet normal -0.172751 -0.984966 0 + outer loop + vertex 20.7319 18.3459 -0.1 + vertex 20.9709 18.304 0 + vertex 20.7319 18.3459 0 + endloop + endfacet + facet normal -0.172751 -0.984966 -0 + outer loop + vertex 20.9709 18.304 0 + vertex 20.7319 18.3459 -0.1 + vertex 20.9709 18.304 -0.1 + endloop + endfacet + facet normal -0.0716809 -0.997428 0 + outer loop + vertex 20.9709 18.304 -0.1 + vertex 21.5679 18.2611 0 + vertex 20.9709 18.304 0 + endloop + endfacet + facet normal -0.0716809 -0.997428 -0 + outer loop + vertex 21.5679 18.2611 0 + vertex 20.9709 18.304 -0.1 + vertex 21.5679 18.2611 -0.1 + endloop + endfacet + facet normal -0.0113554 -0.999936 0 + outer loop + vertex 21.5679 18.2611 -0.1 + vertex 22.3468 18.2522 0 + vertex 21.5679 18.2611 0 + endloop + endfacet + facet normal -0.0113554 -0.999936 -0 + outer loop + vertex 22.3468 18.2522 0 + vertex 21.5679 18.2611 -0.1 + vertex 22.3468 18.2522 -0.1 + endloop + endfacet + facet normal -0.0142554 -0.999898 0 + outer loop + vertex 22.3468 18.2522 -0.1 + vertex 23.0891 18.2417 0 + vertex 22.3468 18.2522 0 + endloop + endfacet + facet normal -0.0142554 -0.999898 -0 + outer loop + vertex 23.0891 18.2417 0 + vertex 22.3468 18.2522 -0.1 + vertex 23.0891 18.2417 -0.1 + endloop + endfacet + facet normal -0.0563557 -0.998411 0 + outer loop + vertex 23.0891 18.2417 -0.1 + vertex 23.7039 18.207 0 + vertex 23.0891 18.2417 0 + endloop + endfacet + facet normal -0.0563557 -0.998411 -0 + outer loop + vertex 23.7039 18.207 0 + vertex 23.0891 18.2417 -0.1 + vertex 23.7039 18.207 -0.1 + endloop + endfacet + facet normal -0.125256 -0.992124 0 + outer loop + vertex 23.7039 18.207 -0.1 + vertex 24.2049 18.1437 0 + vertex 23.7039 18.207 0 + endloop + endfacet + facet normal -0.125256 -0.992124 -0 + outer loop + vertex 24.2049 18.1437 0 + vertex 23.7039 18.207 -0.1 + vertex 24.2049 18.1437 -0.1 + endloop + endfacet + facet normal -0.233347 -0.972393 0 + outer loop + vertex 24.2049 18.1437 -0.1 + vertex 24.6059 18.0475 0 + vertex 24.2049 18.1437 0 + endloop + endfacet + facet normal -0.233347 -0.972393 -0 + outer loop + vertex 24.6059 18.0475 0 + vertex 24.2049 18.1437 -0.1 + vertex 24.6059 18.0475 -0.1 + endloop + endfacet + facet normal -0.390765 -0.920491 0 + outer loop + vertex 24.6059 18.0475 -0.1 + vertex 24.9207 17.9138 0 + vertex 24.6059 18.0475 0 + endloop + endfacet + facet normal -0.390765 -0.920491 -0 + outer loop + vertex 24.9207 17.9138 0 + vertex 24.6059 18.0475 -0.1 + vertex 24.9207 17.9138 -0.1 + endloop + endfacet + facet normal -0.536417 -0.843953 0 + outer loop + vertex 24.9207 17.9138 -0.1 + vertex 25.0501 17.8316 0 + vertex 24.9207 17.9138 0 + endloop + endfacet + facet normal -0.536417 -0.843953 -0 + outer loop + vertex 25.0501 17.8316 0 + vertex 24.9207 17.9138 -0.1 + vertex 25.0501 17.8316 -0.1 + endloop + endfacet + facet normal -0.636483 -0.77129 0 + outer loop + vertex 25.0501 17.8316 -0.1 + vertex 25.163 17.7384 0 + vertex 25.0501 17.8316 0 + endloop + endfacet + facet normal -0.636483 -0.77129 -0 + outer loop + vertex 25.163 17.7384 0 + vertex 25.0501 17.8316 -0.1 + vertex 25.163 17.7384 -0.1 + endloop + endfacet + facet normal -0.729305 -0.684189 0 + outer loop + vertex 25.2614 17.6336 -0.1 + vertex 25.163 17.7384 0 + vertex 25.163 17.7384 -0.1 + endloop + endfacet + facet normal -0.729305 -0.684189 0 + outer loop + vertex 25.163 17.7384 0 + vertex 25.2614 17.6336 -0.1 + vertex 25.2614 17.6336 0 + endloop + endfacet + facet normal -0.807579 -0.589759 0 + outer loop + vertex 25.3467 17.5167 -0.1 + vertex 25.2614 17.6336 0 + vertex 25.2614 17.6336 -0.1 + endloop + endfacet + facet normal -0.807579 -0.589759 0 + outer loop + vertex 25.2614 17.6336 0 + vertex 25.3467 17.5167 -0.1 + vertex 25.3467 17.5167 0 + endloop + endfacet + facet normal -0.890947 -0.454107 0 + outer loop + vertex 25.4856 17.2443 -0.1 + vertex 25.3467 17.5167 0 + vertex 25.3467 17.5167 -0.1 + endloop + endfacet + facet normal -0.890947 -0.454107 0 + outer loop + vertex 25.3467 17.5167 0 + vertex 25.4856 17.2443 -0.1 + vertex 25.4856 17.2443 0 + endloop + endfacet + facet normal -0.905796 -0.423714 0 + outer loop + vertex 25.6037 16.9917 -0.1 + vertex 25.4856 17.2443 0 + vertex 25.4856 17.2443 -0.1 + endloop + endfacet + facet normal -0.905796 -0.423714 0 + outer loop + vertex 25.4856 17.2443 0 + vertex 25.6037 16.9917 -0.1 + vertex 25.6037 16.9917 0 + endloop + endfacet + facet normal -0.826293 -0.563241 0 + outer loop + vertex 25.7157 16.8274 -0.1 + vertex 25.6037 16.9917 0 + vertex 25.6037 16.9917 -0.1 + endloop + endfacet + facet normal -0.826293 -0.563241 0 + outer loop + vertex 25.6037 16.9917 0 + vertex 25.7157 16.8274 -0.1 + vertex 25.7157 16.8274 0 + endloop + endfacet + facet normal -0.603414 -0.797428 0 + outer loop + vertex 25.7157 16.8274 -0.1 + vertex 25.8187 16.7495 0 + vertex 25.7157 16.8274 0 + endloop + endfacet + facet normal -0.603414 -0.797428 -0 + outer loop + vertex 25.8187 16.7495 0 + vertex 25.7157 16.8274 -0.1 + vertex 25.8187 16.7495 -0.1 + endloop + endfacet + facet normal -0.148413 -0.988925 0 + outer loop + vertex 25.8187 16.7495 -0.1 + vertex 25.8659 16.7424 0 + vertex 25.8187 16.7495 0 + endloop + endfacet + facet normal -0.148413 -0.988925 -0 + outer loop + vertex 25.8659 16.7424 0 + vertex 25.8187 16.7495 -0.1 + vertex 25.8659 16.7424 -0.1 + endloop + endfacet + facet normal 0.302537 -0.953138 0 + outer loop + vertex 25.8659 16.7424 -0.1 + vertex 25.9096 16.7563 0 + vertex 25.8659 16.7424 0 + endloop + endfacet + facet normal 0.302537 -0.953138 0 + outer loop + vertex 25.9096 16.7563 0 + vertex 25.8659 16.7424 -0.1 + vertex 25.9096 16.7563 -0.1 + endloop + endfacet + facet normal 0.763836 -0.645411 0 + outer loop + vertex 25.9096 16.7563 0 + vertex 25.9855 16.8461 -0.1 + vertex 25.9855 16.8461 0 + endloop + endfacet + facet normal 0.763836 -0.645411 0 + outer loop + vertex 25.9855 16.8461 -0.1 + vertex 25.9096 16.7563 0 + vertex 25.9096 16.7563 -0.1 + endloop + endfacet + facet normal 0.947245 -0.320511 0 + outer loop + vertex 25.9855 16.8461 0 + vertex 26.0434 17.0172 -0.1 + vertex 26.0434 17.0172 0 + endloop + endfacet + facet normal 0.947245 -0.320511 0 + outer loop + vertex 26.0434 17.0172 -0.1 + vertex 25.9855 16.8461 0 + vertex 25.9855 16.8461 -0.1 + endloop + endfacet + facet normal 0.989326 -0.145716 0 + outer loop + vertex 26.0434 17.0172 0 + vertex 26.0803 17.2678 -0.1 + vertex 26.0803 17.2678 0 + endloop + endfacet + facet normal 0.989326 -0.145716 0 + outer loop + vertex 26.0803 17.2678 -0.1 + vertex 26.0434 17.0172 0 + vertex 26.0434 17.0172 -0.1 + endloop + endfacet + facet normal 0.999222 -0.0394472 0 + outer loop + vertex 26.0803 17.2678 0 + vertex 26.0933 17.5963 -0.1 + vertex 26.0933 17.5963 0 + endloop + endfacet + facet normal 0.999222 -0.0394472 0 + outer loop + vertex 26.0933 17.5963 -0.1 + vertex 26.0803 17.2678 0 + vertex 26.0803 17.2678 -0.1 + endloop + endfacet + facet normal 0.99788 0.0650754 0 + outer loop + vertex 26.0933 17.5963 0 + vertex 26.0696 17.9605 -0.1 + vertex 26.0696 17.9605 0 + endloop + endfacet + facet normal 0.99788 0.0650754 0 + outer loop + vertex 26.0696 17.9605 -0.1 + vertex 26.0933 17.5963 0 + vertex 26.0933 17.5963 -0.1 + endloop + endfacet + facet normal 0.979516 0.201364 0 + outer loop + vertex 26.0696 17.9605 0 + vertex 26.0009 18.2942 -0.1 + vertex 26.0009 18.2942 0 + endloop + endfacet + facet normal 0.979516 0.201364 0 + outer loop + vertex 26.0009 18.2942 -0.1 + vertex 26.0696 17.9605 0 + vertex 26.0696 17.9605 -0.1 + endloop + endfacet + facet normal 0.938515 0.345238 0 + outer loop + vertex 26.0009 18.2942 0 + vertex 25.8914 18.5921 -0.1 + vertex 25.8914 18.5921 0 + endloop + endfacet + facet normal 0.938515 0.345238 0 + outer loop + vertex 25.8914 18.5921 -0.1 + vertex 26.0009 18.2942 0 + vertex 26.0009 18.2942 -0.1 + endloop + endfacet + facet normal 0.86805 0.496476 0 + outer loop + vertex 25.8914 18.5921 0 + vertex 25.7448 18.8483 -0.1 + vertex 25.7448 18.8483 0 + endloop + endfacet + facet normal 0.86805 0.496476 0 + outer loop + vertex 25.7448 18.8483 -0.1 + vertex 25.8914 18.5921 0 + vertex 25.8914 18.5921 -0.1 + endloop + endfacet + facet normal 0.758477 0.651699 0 + outer loop + vertex 25.7448 18.8483 0 + vertex 25.5652 19.0574 -0.1 + vertex 25.5652 19.0574 0 + endloop + endfacet + facet normal 0.758477 0.651699 0 + outer loop + vertex 25.5652 19.0574 -0.1 + vertex 25.7448 18.8483 0 + vertex 25.7448 18.8483 -0.1 + endloop + endfacet + facet normal 0.599251 0.800561 -0 + outer loop + vertex 25.5652 19.0574 -0.1 + vertex 25.3564 19.2137 0 + vertex 25.5652 19.0574 0 + endloop + endfacet + facet normal 0.599251 0.800561 0 + outer loop + vertex 25.3564 19.2137 0 + vertex 25.5652 19.0574 -0.1 + vertex 25.3564 19.2137 -0.1 + endloop + endfacet + facet normal 0.385907 0.922538 -0 + outer loop + vertex 25.3564 19.2137 -0.1 + vertex 25.1224 19.3115 0 + vertex 25.3564 19.2137 0 + endloop + endfacet + facet normal 0.385907 0.922538 0 + outer loop + vertex 25.1224 19.3115 0 + vertex 25.3564 19.2137 -0.1 + vertex 25.1224 19.3115 -0.1 + endloop + endfacet + facet normal 0.197951 0.980212 -0 + outer loop + vertex 25.1224 19.3115 -0.1 + vertex 24.9972 19.3368 0 + vertex 25.1224 19.3115 0 + endloop + endfacet + facet normal 0.197951 0.980212 0 + outer loop + vertex 24.9972 19.3368 0 + vertex 25.1224 19.3115 -0.1 + vertex 24.9972 19.3368 -0.1 + endloop + endfacet + facet normal 0.0658711 0.997828 -0 + outer loop + vertex 24.9972 19.3368 -0.1 + vertex 24.8672 19.3454 0 + vertex 24.9972 19.3368 0 + endloop + endfacet + facet normal 0.0658711 0.997828 0 + outer loop + vertex 24.8672 19.3454 0 + vertex 24.9972 19.3368 -0.1 + vertex 24.8672 19.3454 -0.1 + endloop + endfacet + facet normal 0.104566 0.994518 -0 + outer loop + vertex 24.8672 19.3454 -0.1 + vertex 24.6124 19.3722 0 + vertex 24.8672 19.3454 0 + endloop + endfacet + facet normal 0.104566 0.994518 0 + outer loop + vertex 24.6124 19.3722 0 + vertex 24.8672 19.3454 -0.1 + vertex 24.6124 19.3722 -0.1 + endloop + endfacet + facet normal 0.198003 0.980201 -0 + outer loop + vertex 24.6124 19.3722 -0.1 + vertex 24.2514 19.4451 0 + vertex 24.6124 19.3722 0 + endloop + endfacet + facet normal 0.198003 0.980201 0 + outer loop + vertex 24.2514 19.4451 0 + vertex 24.6124 19.3722 -0.1 + vertex 24.2514 19.4451 -0.1 + endloop + endfacet + facet normal 0.249312 0.968423 -0 + outer loop + vertex 24.2514 19.4451 -0.1 + vertex 23.8321 19.5531 0 + vertex 24.2514 19.4451 0 + endloop + endfacet + facet normal 0.249312 0.968423 0 + outer loop + vertex 23.8321 19.5531 0 + vertex 24.2514 19.4451 -0.1 + vertex 23.8321 19.5531 -0.1 + endloop + endfacet + facet normal 0.293412 0.955986 -0 + outer loop + vertex 23.8321 19.5531 -0.1 + vertex 23.4027 19.6849 0 + vertex 23.8321 19.5531 0 + endloop + endfacet + facet normal 0.293412 0.955986 0 + outer loop + vertex 23.4027 19.6849 0 + vertex 23.8321 19.5531 -0.1 + vertex 23.4027 19.6849 -0.1 + endloop + endfacet + facet normal 0.372015 0.928227 -0 + outer loop + vertex 23.4027 19.6849 -0.1 + vertex 22.9977 19.8472 0 + vertex 23.4027 19.6849 0 + endloop + endfacet + facet normal 0.372015 0.928227 0 + outer loop + vertex 22.9977 19.8472 0 + vertex 23.4027 19.6849 -0.1 + vertex 22.9977 19.8472 -0.1 + endloop + endfacet + facet normal 0.496703 0.86792 -0 + outer loop + vertex 22.9977 19.8472 -0.1 + vertex 22.6486 20.047 0 + vertex 22.9977 19.8472 0 + endloop + endfacet + facet normal 0.496703 0.86792 0 + outer loop + vertex 22.6486 20.047 0 + vertex 22.9977 19.8472 -0.1 + vertex 22.6486 20.047 -0.1 + endloop + endfacet + facet normal 0.63232 0.774707 -0 + outer loop + vertex 22.6486 20.047 -0.1 + vertex 22.3515 20.2895 0 + vertex 22.6486 20.047 0 + endloop + endfacet + facet normal 0.63232 0.774707 0 + outer loop + vertex 22.3515 20.2895 0 + vertex 22.6486 20.047 -0.1 + vertex 22.3515 20.2895 -0.1 + endloop + endfacet + facet normal 0.72955 0.683927 0 + outer loop + vertex 22.3515 20.2895 0 + vertex 22.2213 20.4283 -0.1 + vertex 22.2213 20.4283 0 + endloop + endfacet + facet normal 0.72955 0.683927 0 + outer loop + vertex 22.2213 20.4283 -0.1 + vertex 22.3515 20.2895 0 + vertex 22.3515 20.2895 -0.1 + endloop + endfacet + facet normal 0.787511 0.616301 0 + outer loop + vertex 22.2213 20.4283 0 + vertex 22.1028 20.5797 -0.1 + vertex 22.1028 20.5797 0 + endloop + endfacet + facet normal 0.787511 0.616301 0 + outer loop + vertex 22.1028 20.5797 -0.1 + vertex 22.2213 20.4283 0 + vertex 22.2213 20.4283 -0.1 + endloop + endfacet + facet normal 0.859714 0.510776 0 + outer loop + vertex 22.1028 20.5797 0 + vertex 21.8989 20.9229 -0.1 + vertex 21.8989 20.9229 0 + endloop + endfacet + facet normal 0.859714 0.510776 0 + outer loop + vertex 21.8989 20.9229 -0.1 + vertex 22.1028 20.5797 0 + vertex 22.1028 20.5797 -0.1 + endloop + endfacet + facet normal 0.926661 0.375897 0 + outer loop + vertex 21.8989 20.9229 0 + vertex 21.7362 21.3239 -0.1 + vertex 21.7362 21.3239 0 + endloop + endfacet + facet normal 0.926661 0.375897 0 + outer loop + vertex 21.7362 21.3239 -0.1 + vertex 21.8989 20.9229 0 + vertex 21.8989 20.9229 -0.1 + endloop + endfacet + facet normal 0.965497 0.260414 0 + outer loop + vertex 21.7362 21.3239 0 + vertex 21.6111 21.7881 -0.1 + vertex 21.6111 21.7881 0 + endloop + endfacet + facet normal 0.965497 0.260414 0 + outer loop + vertex 21.6111 21.7881 -0.1 + vertex 21.7362 21.3239 0 + vertex 21.7362 21.3239 -0.1 + endloop + endfacet + facet normal 0.985599 0.169101 0 + outer loop + vertex 21.6111 21.7881 0 + vertex 21.5197 22.3204 -0.1 + vertex 21.5197 22.3204 0 + endloop + endfacet + facet normal 0.985599 0.169101 0 + outer loop + vertex 21.5197 22.3204 -0.1 + vertex 21.6111 21.7881 0 + vertex 21.6111 21.7881 -0.1 + endloop + endfacet + facet normal 0.981389 0.192031 0 + outer loop + vertex 21.5197 22.3204 0 + vertex 21.4205 22.8275 -0.1 + vertex 21.4205 22.8275 0 + endloop + endfacet + facet normal 0.981389 0.192031 0 + outer loop + vertex 21.4205 22.8275 -0.1 + vertex 21.5197 22.3204 0 + vertex 21.5197 22.3204 -0.1 + endloop + endfacet + facet normal 0.957484 0.288485 0 + outer loop + vertex 21.4205 22.8275 0 + vertex 21.3493 23.064 -0.1 + vertex 21.3493 23.064 0 + endloop + endfacet + facet normal 0.957484 0.288485 0 + outer loop + vertex 21.3493 23.064 -0.1 + vertex 21.4205 22.8275 0 + vertex 21.4205 22.8275 -0.1 + endloop + endfacet + facet normal 0.934507 0.355946 0 + outer loop + vertex 21.3493 23.064 0 + vertex 21.2635 23.2891 -0.1 + vertex 21.2635 23.2891 0 + endloop + endfacet + facet normal 0.934507 0.355946 0 + outer loop + vertex 21.2635 23.2891 -0.1 + vertex 21.3493 23.064 0 + vertex 21.3493 23.064 -0.1 + endloop + endfacet + facet normal 0.905346 0.424674 0 + outer loop + vertex 21.2635 23.2891 0 + vertex 21.1632 23.503 -0.1 + vertex 21.1632 23.503 0 + endloop + endfacet + facet normal 0.905346 0.424674 0 + outer loop + vertex 21.1632 23.503 -0.1 + vertex 21.2635 23.2891 0 + vertex 21.2635 23.2891 -0.1 + endloop + endfacet + facet normal 0.869841 0.493332 0 + outer loop + vertex 21.1632 23.503 0 + vertex 21.0482 23.7058 -0.1 + vertex 21.0482 23.7058 0 + endloop + endfacet + facet normal 0.869841 0.493332 0 + outer loop + vertex 21.0482 23.7058 -0.1 + vertex 21.1632 23.503 0 + vertex 21.1632 23.503 -0.1 + endloop + endfacet + facet normal 0.828197 0.560437 0 + outer loop + vertex 21.0482 23.7058 0 + vertex 20.9184 23.8976 -0.1 + vertex 20.9184 23.8976 0 + endloop + endfacet + facet normal 0.828197 0.560437 0 + outer loop + vertex 20.9184 23.8976 -0.1 + vertex 21.0482 23.7058 0 + vertex 21.0482 23.7058 -0.1 + endloop + endfacet + facet normal 0.781014 0.624513 0 + outer loop + vertex 20.9184 23.8976 0 + vertex 20.7738 24.0784 -0.1 + vertex 20.7738 24.0784 0 + endloop + endfacet + facet normal 0.781014 0.624513 0 + outer loop + vertex 20.7738 24.0784 -0.1 + vertex 20.9184 23.8976 0 + vertex 20.9184 23.8976 -0.1 + endloop + endfacet + facet normal 0.729218 0.684281 0 + outer loop + vertex 20.7738 24.0784 0 + vertex 20.6143 24.2484 -0.1 + vertex 20.6143 24.2484 0 + endloop + endfacet + facet normal 0.729218 0.684281 0 + outer loop + vertex 20.6143 24.2484 -0.1 + vertex 20.7738 24.0784 0 + vertex 20.7738 24.0784 -0.1 + endloop + endfacet + facet normal 0.674059 0.738677 -0 + outer loop + vertex 20.6143 24.2484 -0.1 + vertex 20.4398 24.4076 0 + vertex 20.6143 24.2484 0 + endloop + endfacet + facet normal 0.674059 0.738677 0 + outer loop + vertex 20.4398 24.4076 0 + vertex 20.6143 24.2484 -0.1 + vertex 20.4398 24.4076 -0.1 + endloop + endfacet + facet normal 0.616853 0.787078 -0 + outer loop + vertex 20.4398 24.4076 -0.1 + vertex 20.2502 24.5562 0 + vertex 20.4398 24.4076 0 + endloop + endfacet + facet normal 0.616853 0.787078 0 + outer loop + vertex 20.2502 24.5562 0 + vertex 20.4398 24.4076 -0.1 + vertex 20.2502 24.5562 -0.1 + endloop + endfacet + facet normal 0.558944 0.829206 -0 + outer loop + vertex 20.2502 24.5562 -0.1 + vertex 20.0455 24.6942 0 + vertex 20.2502 24.5562 0 + endloop + endfacet + facet normal 0.558944 0.829206 0 + outer loop + vertex 20.0455 24.6942 0 + vertex 20.2502 24.5562 -0.1 + vertex 20.0455 24.6942 -0.1 + endloop + endfacet + facet normal 0.473385 0.880855 -0 + outer loop + vertex 20.0455 24.6942 -0.1 + vertex 19.5904 24.9388 0 + vertex 20.0455 24.6942 0 + endloop + endfacet + facet normal 0.473385 0.880855 0 + outer loop + vertex 19.5904 24.9388 0 + vertex 20.0455 24.6942 -0.1 + vertex 19.5904 24.9388 -0.1 + endloop + endfacet + facet normal 0.366293 0.930499 -0 + outer loop + vertex 19.5904 24.9388 -0.1 + vertex 19.0737 25.1422 0 + vertex 19.5904 24.9388 0 + endloop + endfacet + facet normal 0.366293 0.930499 0 + outer loop + vertex 19.0737 25.1422 0 + vertex 19.5904 24.9388 -0.1 + vertex 19.0737 25.1422 -0.1 + endloop + endfacet + facet normal 0.339314 0.940673 -0 + outer loop + vertex 19.0737 25.1422 -0.1 + vertex 18.5685 25.3244 0 + vertex 19.0737 25.1422 0 + endloop + endfacet + facet normal 0.339314 0.940673 0 + outer loop + vertex 18.5685 25.3244 0 + vertex 19.0737 25.1422 -0.1 + vertex 18.5685 25.3244 -0.1 + endloop + endfacet + facet normal 0.390266 0.920702 -0 + outer loop + vertex 18.5685 25.3244 -0.1 + vertex 18.1033 25.5216 0 + vertex 18.5685 25.3244 0 + endloop + endfacet + facet normal 0.390266 0.920702 0 + outer loop + vertex 18.1033 25.5216 0 + vertex 18.5685 25.3244 -0.1 + vertex 18.1033 25.5216 -0.1 + endloop + endfacet + facet normal 0.448214 0.893926 -0 + outer loop + vertex 18.1033 25.5216 -0.1 + vertex 17.6707 25.7385 0 + vertex 18.1033 25.5216 0 + endloop + endfacet + facet normal 0.448214 0.893926 0 + outer loop + vertex 17.6707 25.7385 0 + vertex 18.1033 25.5216 -0.1 + vertex 17.6707 25.7385 -0.1 + endloop + endfacet + facet normal 0.509711 0.860346 -0 + outer loop + vertex 17.6707 25.7385 -0.1 + vertex 17.2631 25.98 0 + vertex 17.6707 25.7385 0 + endloop + endfacet + facet normal 0.509711 0.860346 0 + outer loop + vertex 17.2631 25.98 0 + vertex 17.6707 25.7385 -0.1 + vertex 17.2631 25.98 -0.1 + endloop + endfacet + facet normal 0.570375 0.821384 -0 + outer loop + vertex 17.2631 25.98 -0.1 + vertex 16.873 26.2508 0 + vertex 17.2631 25.98 0 + endloop + endfacet + facet normal 0.570375 0.821384 0 + outer loop + vertex 16.873 26.2508 0 + vertex 17.2631 25.98 -0.1 + vertex 16.873 26.2508 -0.1 + endloop + endfacet + facet normal 0.626027 0.779801 -0 + outer loop + vertex 16.873 26.2508 -0.1 + vertex 16.4932 26.5558 0 + vertex 16.873 26.2508 0 + endloop + endfacet + facet normal 0.626027 0.779801 0 + outer loop + vertex 16.4932 26.5558 0 + vertex 16.873 26.2508 -0.1 + vertex 16.4932 26.5558 -0.1 + endloop + endfacet + facet normal 0.673725 0.738983 -0 + outer loop + vertex 16.4932 26.5558 -0.1 + vertex 16.116 26.8997 0 + vertex 16.4932 26.5558 0 + endloop + endfacet + facet normal 0.673725 0.738983 0 + outer loop + vertex 16.116 26.8997 0 + vertex 16.4932 26.5558 -0.1 + vertex 16.116 26.8997 -0.1 + endloop + endfacet + facet normal 0.71226 0.701916 0 + outer loop + vertex 16.116 26.8997 0 + vertex 15.734 27.2872 -0.1 + vertex 15.734 27.2872 0 + endloop + endfacet + facet normal 0.71226 0.701916 0 + outer loop + vertex 15.734 27.2872 -0.1 + vertex 16.116 26.8997 0 + vertex 16.116 26.8997 -0.1 + endloop + endfacet + facet normal 0.751608 0.65961 0 + outer loop + vertex 15.734 27.2872 0 + vertex 15.344 27.7317 -0.1 + vertex 15.344 27.7317 0 + endloop + endfacet + facet normal 0.751608 0.65961 0 + outer loop + vertex 15.344 27.7317 -0.1 + vertex 15.734 27.2872 0 + vertex 15.734 27.2872 -0.1 + endloop + endfacet + facet normal 0.827441 0.561552 0 + outer loop + vertex 15.344 27.7317 0 + vertex 15.2193 27.9155 -0.1 + vertex 15.2193 27.9155 0 + endloop + endfacet + facet normal 0.827441 0.561552 0 + outer loop + vertex 15.2193 27.9155 -0.1 + vertex 15.344 27.7317 0 + vertex 15.344 27.7317 -0.1 + endloop + endfacet + facet normal 0.901872 0.432003 0 + outer loop + vertex 15.2193 27.9155 0 + vertex 15.1337 28.0941 -0.1 + vertex 15.1337 28.0941 0 + endloop + endfacet + facet normal 0.901872 0.432003 0 + outer loop + vertex 15.1337 28.0941 -0.1 + vertex 15.2193 27.9155 0 + vertex 15.2193 27.9155 -0.1 + endloop + endfacet + facet normal 0.963972 0.266005 0 + outer loop + vertex 15.1337 28.0941 0 + vertex 15.0817 28.2827 -0.1 + vertex 15.0817 28.2827 0 + endloop + endfacet + facet normal 0.963972 0.266005 0 + outer loop + vertex 15.0817 28.2827 -0.1 + vertex 15.1337 28.0941 0 + vertex 15.1337 28.0941 -0.1 + endloop + endfacet + facet normal 0.993628 0.112714 0 + outer loop + vertex 15.0817 28.2827 0 + vertex 15.0574 28.4965 -0.1 + vertex 15.0574 28.4965 0 + endloop + endfacet + facet normal 0.993628 0.112714 0 + outer loop + vertex 15.0574 28.4965 -0.1 + vertex 15.0817 28.2827 0 + vertex 15.0817 28.2827 -0.1 + endloop + endfacet + facet normal 0.999963 0.00862244 0 + outer loop + vertex 15.0574 28.4965 0 + vertex 15.0552 28.7509 -0.1 + vertex 15.0552 28.7509 0 + endloop + endfacet + facet normal 0.999963 0.00862244 0 + outer loop + vertex 15.0552 28.7509 -0.1 + vertex 15.0574 28.4965 0 + vertex 15.0574 28.4965 -0.1 + endloop + endfacet + facet normal 0.99896 -0.0455854 0 + outer loop + vertex 15.0552 28.7509 0 + vertex 15.0694 29.0611 -0.1 + vertex 15.0694 29.0611 0 + endloop + endfacet + facet normal 0.99896 -0.0455854 0 + outer loop + vertex 15.0694 29.0611 -0.1 + vertex 15.0552 28.7509 0 + vertex 15.0552 28.7509 -0.1 + endloop + endfacet + facet normal 0.995626 -0.0934289 0 + outer loop + vertex 15.0694 29.0611 0 + vertex 15.1102 29.496 -0.1 + vertex 15.1102 29.496 0 + endloop + endfacet + facet normal 0.995626 -0.0934289 0 + outer loop + vertex 15.1102 29.496 -0.1 + vertex 15.0694 29.0611 0 + vertex 15.0694 29.0611 -0.1 + endloop + endfacet + facet normal 0.982507 -0.186226 0 + outer loop + vertex 15.1102 29.496 0 + vertex 15.1701 29.8123 -0.1 + vertex 15.1701 29.8123 0 + endloop + endfacet + facet normal 0.982507 -0.186226 0 + outer loop + vertex 15.1701 29.8123 -0.1 + vertex 15.1102 29.496 0 + vertex 15.1102 29.496 -0.1 + endloop + endfacet + facet normal 0.936612 -0.350368 0 + outer loop + vertex 15.1701 29.8123 0 + vertex 15.2437 30.0088 -0.1 + vertex 15.2437 30.0088 0 + endloop + endfacet + facet normal 0.936612 -0.350368 0 + outer loop + vertex 15.2437 30.0088 -0.1 + vertex 15.1701 29.8123 0 + vertex 15.1701 29.8123 -0.1 + endloop + endfacet + facet normal 0.797615 -0.603167 0 + outer loop + vertex 15.2437 30.0088 0 + vertex 15.2838 30.0618 -0.1 + vertex 15.2838 30.0618 0 + endloop + endfacet + facet normal 0.797615 -0.603167 0 + outer loop + vertex 15.2838 30.0618 -0.1 + vertex 15.2437 30.0088 0 + vertex 15.2437 30.0088 -0.1 + endloop + endfacet + facet normal 0.48104 -0.876698 0 + outer loop + vertex 15.2838 30.0618 -0.1 + vertex 15.3252 30.0845 0 + vertex 15.2838 30.0618 0 + endloop + endfacet + facet normal 0.48104 -0.876698 0 + outer loop + vertex 15.3252 30.0845 0 + vertex 15.2838 30.0618 -0.1 + vertex 15.3252 30.0845 -0.1 + endloop + endfacet + facet normal -0.180566 -0.983563 0 + outer loop + vertex 15.3252 30.0845 -0.1 + vertex 15.3672 30.0768 0 + vertex 15.3252 30.0845 0 + endloop + endfacet + facet normal -0.180566 -0.983563 -0 + outer loop + vertex 15.3672 30.0768 0 + vertex 15.3252 30.0845 -0.1 + vertex 15.3672 30.0768 -0.1 + endloop + endfacet + facet normal -0.674079 -0.738659 0 + outer loop + vertex 15.3672 30.0768 -0.1 + vertex 15.4091 30.0386 0 + vertex 15.3672 30.0768 0 + endloop + endfacet + facet normal -0.674079 -0.738659 -0 + outer loop + vertex 15.4091 30.0386 0 + vertex 15.3672 30.0768 -0.1 + vertex 15.4091 30.0386 -0.1 + endloop + endfacet + facet normal -0.901794 -0.432166 0 + outer loop + vertex 15.49 29.8698 -0.1 + vertex 15.4091 30.0386 0 + vertex 15.4091 30.0386 -0.1 + endloop + endfacet + facet normal -0.901794 -0.432166 0 + outer loop + vertex 15.4091 30.0386 0 + vertex 15.49 29.8698 -0.1 + vertex 15.49 29.8698 0 + endloop + endfacet + facet normal -0.970859 -0.239653 0 + outer loop + vertex 15.5622 29.5773 -0.1 + vertex 15.49 29.8698 0 + vertex 15.49 29.8698 -0.1 + endloop + endfacet + facet normal -0.970859 -0.239653 0 + outer loop + vertex 15.49 29.8698 0 + vertex 15.5622 29.5773 -0.1 + vertex 15.5622 29.5773 0 + endloop + endfacet + facet normal -0.990483 -0.137635 0 + outer loop + vertex 15.6202 29.1601 -0.1 + vertex 15.5622 29.5773 0 + vertex 15.5622 29.5773 -0.1 + endloop + endfacet + facet normal -0.990483 -0.137635 0 + outer loop + vertex 15.5622 29.5773 0 + vertex 15.6202 29.1601 -0.1 + vertex 15.6202 29.1601 0 + endloop + endfacet + facet normal -0.987242 -0.159229 0 + outer loop + vertex 15.6927 28.7106 -0.1 + vertex 15.6202 29.1601 0 + vertex 15.6202 29.1601 -0.1 + endloop + endfacet + facet normal -0.987242 -0.159229 0 + outer loop + vertex 15.6202 29.1601 0 + vertex 15.6927 28.7106 -0.1 + vertex 15.6927 28.7106 0 + endloop + endfacet + facet normal -0.964764 -0.263116 0 + outer loop + vertex 15.7487 28.5051 -0.1 + vertex 15.6927 28.7106 0 + vertex 15.6927 28.7106 -0.1 + endloop + endfacet + facet normal -0.964764 -0.263116 0 + outer loop + vertex 15.6927 28.7106 0 + vertex 15.7487 28.5051 -0.1 + vertex 15.7487 28.5051 0 + endloop + endfacet + facet normal -0.93932 -0.343042 0 + outer loop + vertex 15.8197 28.3106 -0.1 + vertex 15.7487 28.5051 0 + vertex 15.7487 28.5051 -0.1 + endloop + endfacet + facet normal -0.93932 -0.343042 0 + outer loop + vertex 15.7487 28.5051 0 + vertex 15.8197 28.3106 -0.1 + vertex 15.8197 28.3106 0 + endloop + endfacet + facet normal -0.904159 -0.427196 0 + outer loop + vertex 15.9071 28.1258 -0.1 + vertex 15.8197 28.3106 0 + vertex 15.8197 28.3106 -0.1 + endloop + endfacet + facet normal -0.904159 -0.427196 0 + outer loop + vertex 15.8197 28.3106 0 + vertex 15.9071 28.1258 -0.1 + vertex 15.9071 28.1258 0 + endloop + endfacet + facet normal -0.859613 -0.510945 0 + outer loop + vertex 16.0121 27.9491 -0.1 + vertex 15.9071 28.1258 0 + vertex 15.9071 28.1258 -0.1 + endloop + endfacet + facet normal -0.859613 -0.510945 0 + outer loop + vertex 15.9071 28.1258 0 + vertex 16.0121 27.9491 -0.1 + vertex 16.0121 27.9491 0 + endloop + endfacet + facet normal -0.807674 -0.589629 0 + outer loop + vertex 16.1362 27.7792 -0.1 + vertex 16.0121 27.9491 0 + vertex 16.0121 27.9491 -0.1 + endloop + endfacet + facet normal -0.807674 -0.589629 0 + outer loop + vertex 16.0121 27.9491 0 + vertex 16.1362 27.7792 -0.1 + vertex 16.1362 27.7792 0 + endloop + endfacet + facet normal -0.751613 -0.659605 0 + outer loop + vertex 16.2806 27.6146 -0.1 + vertex 16.1362 27.7792 0 + vertex 16.1362 27.7792 -0.1 + endloop + endfacet + facet normal -0.751613 -0.659605 0 + outer loop + vertex 16.1362 27.7792 0 + vertex 16.2806 27.6146 -0.1 + vertex 16.2806 27.6146 0 + endloop + endfacet + facet normal -0.695067 -0.718945 0 + outer loop + vertex 16.2806 27.6146 -0.1 + vertex 16.4467 27.454 0 + vertex 16.2806 27.6146 0 + endloop + endfacet + facet normal -0.695067 -0.718945 -0 + outer loop + vertex 16.4467 27.454 0 + vertex 16.2806 27.6146 -0.1 + vertex 16.4467 27.454 -0.1 + endloop + endfacet + facet normal -0.641168 -0.767401 0 + outer loop + vertex 16.4467 27.454 -0.1 + vertex 16.6359 27.2959 0 + vertex 16.4467 27.454 0 + endloop + endfacet + facet normal -0.641168 -0.767401 -0 + outer loop + vertex 16.6359 27.2959 0 + vertex 16.4467 27.454 -0.1 + vertex 16.6359 27.2959 -0.1 + endloop + endfacet + facet normal -0.569935 -0.82169 0 + outer loop + vertex 16.6359 27.2959 -0.1 + vertex 17.0889 26.9817 0 + vertex 16.6359 27.2959 0 + endloop + endfacet + facet normal -0.569935 -0.82169 -0 + outer loop + vertex 17.0889 26.9817 0 + vertex 16.6359 27.2959 -0.1 + vertex 17.0889 26.9817 -0.1 + endloop + endfacet + facet normal -0.496343 -0.868126 0 + outer loop + vertex 17.0889 26.9817 -0.1 + vertex 17.6504 26.6607 0 + vertex 17.0889 26.9817 0 + endloop + endfacet + facet normal -0.496343 -0.868126 -0 + outer loop + vertex 17.6504 26.6607 0 + vertex 17.0889 26.9817 -0.1 + vertex 17.6504 26.6607 -0.1 + endloop + endfacet + facet normal -0.4459 -0.895083 0 + outer loop + vertex 17.6504 26.6607 -0.1 + vertex 18.3311 26.3216 0 + vertex 17.6504 26.6607 0 + endloop + endfacet + facet normal -0.4459 -0.895083 -0 + outer loop + vertex 18.3311 26.3216 0 + vertex 17.6504 26.6607 -0.1 + vertex 18.3311 26.3216 -0.1 + endloop + endfacet + facet normal -0.437511 -0.899213 0 + outer loop + vertex 18.3311 26.3216 -0.1 + vertex 19.3729 25.8147 0 + vertex 18.3311 26.3216 0 + endloop + endfacet + facet normal -0.437511 -0.899213 -0 + outer loop + vertex 19.3729 25.8147 0 + vertex 18.3311 26.3216 -0.1 + vertex 19.3729 25.8147 -0.1 + endloop + endfacet + facet normal -0.473558 -0.880763 0 + outer loop + vertex 19.3729 25.8147 -0.1 + vertex 20.1936 25.3734 0 + vertex 19.3729 25.8147 0 + endloop + endfacet + facet normal -0.473558 -0.880763 -0 + outer loop + vertex 20.1936 25.3734 0 + vertex 19.3729 25.8147 -0.1 + vertex 20.1936 25.3734 -0.1 + endloop + endfacet + facet normal -0.521003 -0.853555 0 + outer loop + vertex 20.1936 25.3734 -0.1 + vertex 20.53 25.168 0 + vertex 20.1936 25.3734 0 + endloop + endfacet + facet normal -0.521003 -0.853555 -0 + outer loop + vertex 20.53 25.168 0 + vertex 20.1936 25.3734 -0.1 + vertex 20.53 25.168 -0.1 + endloop + endfacet + facet normal -0.565431 -0.824796 0 + outer loop + vertex 20.53 25.168 -0.1 + vertex 20.8221 24.9679 0 + vertex 20.53 25.168 0 + endloop + endfacet + facet normal -0.565431 -0.824796 -0 + outer loop + vertex 20.8221 24.9679 0 + vertex 20.53 25.168 -0.1 + vertex 20.8221 24.9679 -0.1 + endloop + endfacet + facet normal -0.620484 -0.784219 0 + outer loop + vertex 20.8221 24.9679 -0.1 + vertex 21.0733 24.7691 0 + vertex 20.8221 24.9679 0 + endloop + endfacet + facet normal -0.620484 -0.784219 -0 + outer loop + vertex 21.0733 24.7691 0 + vertex 20.8221 24.9679 -0.1 + vertex 21.0733 24.7691 -0.1 + endloop + endfacet + facet normal -0.684731 -0.728796 0 + outer loop + vertex 21.0733 24.7691 -0.1 + vertex 21.2873 24.568 0 + vertex 21.0733 24.7691 0 + endloop + endfacet + facet normal -0.684731 -0.728796 -0 + outer loop + vertex 21.2873 24.568 0 + vertex 21.0733 24.7691 -0.1 + vertex 21.2873 24.568 -0.1 + endloop + endfacet + facet normal -0.754027 -0.656843 0 + outer loop + vertex 21.4677 24.3609 -0.1 + vertex 21.2873 24.568 0 + vertex 21.2873 24.568 -0.1 + endloop + endfacet + facet normal -0.754027 -0.656843 0 + outer loop + vertex 21.2873 24.568 0 + vertex 21.4677 24.3609 -0.1 + vertex 21.4677 24.3609 0 + endloop + endfacet + facet normal -0.821674 -0.569958 0 + outer loop + vertex 21.6182 24.144 -0.1 + vertex 21.4677 24.3609 0 + vertex 21.4677 24.3609 -0.1 + endloop + endfacet + facet normal -0.821674 -0.569958 0 + outer loop + vertex 21.4677 24.3609 0 + vertex 21.6182 24.144 -0.1 + vertex 21.6182 24.144 0 + endloop + endfacet + facet normal -0.880428 -0.47418 0 + outer loop + vertex 21.7423 23.9135 -0.1 + vertex 21.6182 24.144 0 + vertex 21.6182 24.144 -0.1 + endloop + endfacet + facet normal -0.880428 -0.47418 0 + outer loop + vertex 21.6182 24.144 0 + vertex 21.7423 23.9135 -0.1 + vertex 21.7423 23.9135 0 + endloop + endfacet + facet normal -0.925485 -0.378785 0 + outer loop + vertex 21.8437 23.6658 -0.1 + vertex 21.7423 23.9135 0 + vertex 21.7423 23.9135 -0.1 + endloop + endfacet + facet normal -0.925485 -0.378785 0 + outer loop + vertex 21.7423 23.9135 0 + vertex 21.8437 23.6658 -0.1 + vertex 21.8437 23.6658 0 + endloop + endfacet + facet normal -0.956187 -0.292757 0 + outer loop + vertex 21.926 23.397 -0.1 + vertex 21.8437 23.6658 0 + vertex 21.8437 23.6658 -0.1 + endloop + endfacet + facet normal -0.956187 -0.292757 0 + outer loop + vertex 21.8437 23.6658 0 + vertex 21.926 23.397 -0.1 + vertex 21.926 23.397 0 + endloop + endfacet + facet normal -0.975069 -0.221901 0 + outer loop + vertex 21.9928 23.1034 -0.1 + vertex 21.926 23.397 0 + vertex 21.926 23.397 -0.1 + endloop + endfacet + facet normal -0.975069 -0.221901 0 + outer loop + vertex 21.926 23.397 0 + vertex 21.9928 23.1034 -0.1 + vertex 21.9928 23.1034 0 + endloop + endfacet + facet normal -0.988902 -0.14857 0 + outer loop + vertex 22.0944 22.427 -0.1 + vertex 21.9928 23.1034 0 + vertex 21.9928 23.1034 -0.1 + endloop + endfacet + facet normal -0.988902 -0.14857 0 + outer loop + vertex 21.9928 23.1034 0 + vertex 22.0944 22.427 -0.1 + vertex 22.0944 22.427 0 + endloop + endfacet + facet normal -0.986323 -0.164825 0 + outer loop + vertex 22.1689 21.9813 -0.1 + vertex 22.0944 22.427 0 + vertex 22.0944 22.427 -0.1 + endloop + endfacet + facet normal -0.986323 -0.164825 0 + outer loop + vertex 22.0944 22.427 0 + vertex 22.1689 21.9813 -0.1 + vertex 22.1689 21.9813 0 + endloop + endfacet + facet normal -0.960165 -0.279433 0 + outer loop + vertex 22.2815 21.5943 -0.1 + vertex 22.1689 21.9813 0 + vertex 22.1689 21.9813 -0.1 + endloop + endfacet + facet normal -0.960165 -0.279433 0 + outer loop + vertex 22.1689 21.9813 0 + vertex 22.2815 21.5943 -0.1 + vertex 22.2815 21.5943 0 + endloop + endfacet + facet normal -0.907871 -0.41925 0 + outer loop + vertex 22.4341 21.2638 -0.1 + vertex 22.2815 21.5943 0 + vertex 22.2815 21.5943 -0.1 + endloop + endfacet + facet normal -0.907871 -0.41925 0 + outer loop + vertex 22.2815 21.5943 0 + vertex 22.4341 21.2638 -0.1 + vertex 22.4341 21.2638 0 + endloop + endfacet + facet normal -0.817597 -0.575791 0 + outer loop + vertex 22.6286 20.9877 -0.1 + vertex 22.4341 21.2638 0 + vertex 22.4341 21.2638 -0.1 + endloop + endfacet + facet normal -0.817597 -0.575791 0 + outer loop + vertex 22.4341 21.2638 0 + vertex 22.6286 20.9877 -0.1 + vertex 22.6286 20.9877 0 + endloop + endfacet + facet normal -0.721714 -0.692192 0 + outer loop + vertex 22.7421 20.8693 -0.1 + vertex 22.6286 20.9877 0 + vertex 22.6286 20.9877 -0.1 + endloop + endfacet + facet normal -0.721714 -0.692192 0 + outer loop + vertex 22.6286 20.9877 0 + vertex 22.7421 20.8693 -0.1 + vertex 22.7421 20.8693 0 + endloop + endfacet + facet normal -0.646202 -0.763167 0 + outer loop + vertex 22.7421 20.8693 -0.1 + vertex 22.8668 20.7638 0 + vertex 22.7421 20.8693 0 + endloop + endfacet + facet normal -0.646202 -0.763167 -0 + outer loop + vertex 22.8668 20.7638 0 + vertex 22.7421 20.8693 -0.1 + vertex 22.8668 20.7638 -0.1 + endloop + endfacet + facet normal -0.522339 -0.852738 0 + outer loop + vertex 22.8668 20.7638 -0.1 + vertex 23.1504 20.59 0 + vertex 22.8668 20.7638 0 + endloop + endfacet + facet normal -0.522339 -0.852738 -0 + outer loop + vertex 23.1504 20.59 0 + vertex 22.8668 20.7638 -0.1 + vertex 23.1504 20.59 -0.1 + endloop + endfacet + facet normal -0.355133 -0.934816 0 + outer loop + vertex 23.1504 20.59 -0.1 + vertex 23.4814 20.4643 0 + vertex 23.1504 20.59 0 + endloop + endfacet + facet normal -0.355133 -0.934816 -0 + outer loop + vertex 23.4814 20.4643 0 + vertex 23.1504 20.59 -0.1 + vertex 23.4814 20.4643 -0.1 + endloop + endfacet + facet normal -0.205594 -0.978637 0 + outer loop + vertex 23.4814 20.4643 -0.1 + vertex 23.8617 20.3844 0 + vertex 23.4814 20.4643 0 + endloop + endfacet + facet normal -0.205594 -0.978637 -0 + outer loop + vertex 23.8617 20.3844 0 + vertex 23.4814 20.4643 -0.1 + vertex 23.8617 20.3844 -0.1 + endloop + endfacet + facet normal -0.166383 -0.986061 0 + outer loop + vertex 23.8617 20.3844 -0.1 + vertex 24.2028 20.3268 0 + vertex 23.8617 20.3844 0 + endloop + endfacet + facet normal -0.166383 -0.986061 -0 + outer loop + vertex 24.2028 20.3268 0 + vertex 23.8617 20.3844 -0.1 + vertex 24.2028 20.3268 -0.1 + endloop + endfacet + facet normal -0.222634 -0.974902 0 + outer loop + vertex 24.2028 20.3268 -0.1 + vertex 24.5205 20.2543 0 + vertex 24.2028 20.3268 0 + endloop + endfacet + facet normal -0.222634 -0.974902 -0 + outer loop + vertex 24.5205 20.2543 0 + vertex 24.2028 20.3268 -0.1 + vertex 24.5205 20.2543 -0.1 + endloop + endfacet + facet normal -0.285939 -0.958248 0 + outer loop + vertex 24.5205 20.2543 -0.1 + vertex 24.8151 20.1664 0 + vertex 24.5205 20.2543 0 + endloop + endfacet + facet normal -0.285939 -0.958248 -0 + outer loop + vertex 24.8151 20.1664 0 + vertex 24.5205 20.2543 -0.1 + vertex 24.8151 20.1664 -0.1 + endloop + endfacet + facet normal -0.356177 -0.934419 0 + outer loop + vertex 24.8151 20.1664 -0.1 + vertex 25.087 20.0627 0 + vertex 24.8151 20.1664 0 + endloop + endfacet + facet normal -0.356177 -0.934419 -0 + outer loop + vertex 25.087 20.0627 0 + vertex 24.8151 20.1664 -0.1 + vertex 25.087 20.0627 -0.1 + endloop + endfacet + facet normal -0.432613 -0.90158 0 + outer loop + vertex 25.087 20.0627 -0.1 + vertex 25.3364 19.943 0 + vertex 25.087 20.0627 0 + endloop + endfacet + facet normal -0.432613 -0.90158 -0 + outer loop + vertex 25.3364 19.943 0 + vertex 25.087 20.0627 -0.1 + vertex 25.3364 19.943 -0.1 + endloop + endfacet + facet normal -0.513641 -0.858005 0 + outer loop + vertex 25.3364 19.943 -0.1 + vertex 25.5639 19.8069 0 + vertex 25.3364 19.943 0 + endloop + endfacet + facet normal -0.513641 -0.858005 -0 + outer loop + vertex 25.5639 19.8069 0 + vertex 25.3364 19.943 -0.1 + vertex 25.5639 19.8069 -0.1 + endloop + endfacet + facet normal -0.59661 -0.802531 0 + outer loop + vertex 25.5639 19.8069 -0.1 + vertex 25.7697 19.6539 0 + vertex 25.5639 19.8069 0 + endloop + endfacet + facet normal -0.59661 -0.802531 -0 + outer loop + vertex 25.7697 19.6539 0 + vertex 25.5639 19.8069 -0.1 + vertex 25.7697 19.6539 -0.1 + endloop + endfacet + facet normal -0.678036 -0.735029 0 + outer loop + vertex 25.7697 19.6539 -0.1 + vertex 25.9541 19.4837 0 + vertex 25.7697 19.6539 0 + endloop + endfacet + facet normal -0.678036 -0.735029 -0 + outer loop + vertex 25.9541 19.4837 0 + vertex 25.7697 19.6539 -0.1 + vertex 25.9541 19.4837 -0.1 + endloop + endfacet + facet normal -0.75405 -0.656818 0 + outer loop + vertex 26.1176 19.296 -0.1 + vertex 25.9541 19.4837 0 + vertex 25.9541 19.4837 -0.1 + endloop + endfacet + facet normal -0.75405 -0.656818 0 + outer loop + vertex 25.9541 19.4837 0 + vertex 26.1176 19.296 -0.1 + vertex 26.1176 19.296 0 + endloop + endfacet + facet normal -0.821173 -0.570679 0 + outer loop + vertex 26.2605 19.0904 -0.1 + vertex 26.1176 19.296 0 + vertex 26.1176 19.296 -0.1 + endloop + endfacet + facet normal -0.821173 -0.570679 0 + outer loop + vertex 26.1176 19.296 0 + vertex 26.2605 19.0904 -0.1 + vertex 26.2605 19.0904 0 + endloop + endfacet + facet normal -0.877038 -0.480422 0 + outer loop + vertex 26.3832 18.8665 -0.1 + vertex 26.2605 19.0904 0 + vertex 26.2605 19.0904 -0.1 + endloop + endfacet + facet normal -0.877038 -0.480422 0 + outer loop + vertex 26.2605 19.0904 0 + vertex 26.3832 18.8665 -0.1 + vertex 26.3832 18.8665 0 + endloop + endfacet + facet normal -0.920777 -0.390089 0 + outer loop + vertex 26.4859 18.624 -0.1 + vertex 26.3832 18.8665 0 + vertex 26.3832 18.8665 -0.1 + endloop + endfacet + facet normal -0.920777 -0.390089 0 + outer loop + vertex 26.3832 18.8665 0 + vertex 26.4859 18.624 -0.1 + vertex 26.4859 18.624 0 + endloop + endfacet + facet normal -0.952936 -0.30317 0 + outer loop + vertex 26.5691 18.3624 -0.1 + vertex 26.4859 18.624 0 + vertex 26.4859 18.624 -0.1 + endloop + endfacet + facet normal -0.952936 -0.30317 0 + outer loop + vertex 26.4859 18.624 0 + vertex 26.5691 18.3624 -0.1 + vertex 26.5691 18.3624 0 + endloop + endfacet + facet normal -0.974998 -0.222215 0 + outer loop + vertex 26.6332 18.0815 -0.1 + vertex 26.5691 18.3624 0 + vertex 26.5691 18.3624 -0.1 + endloop + endfacet + facet normal -0.974998 -0.222215 0 + outer loop + vertex 26.5691 18.3624 0 + vertex 26.6332 18.0815 -0.1 + vertex 26.6332 18.0815 0 + endloop + endfacet + facet normal -0.98889 -0.148648 0 + outer loop + vertex 26.6784 17.7808 -0.1 + vertex 26.6332 18.0815 0 + vertex 26.6332 18.0815 -0.1 + endloop + endfacet + facet normal -0.98889 -0.148648 0 + outer loop + vertex 26.6332 18.0815 0 + vertex 26.6784 17.7808 -0.1 + vertex 26.6784 17.7808 0 + endloop + endfacet + facet normal -0.996548 -0.083019 0 + outer loop + vertex 26.7051 17.4601 -0.1 + vertex 26.6784 17.7808 0 + vertex 26.6784 17.7808 -0.1 + endloop + endfacet + facet normal -0.996548 -0.083019 0 + outer loop + vertex 26.6784 17.7808 0 + vertex 26.7051 17.4601 -0.1 + vertex 26.7051 17.4601 0 + endloop + endfacet + facet normal -0.991209 -0.132303 0 + outer loop + vertex 26.7571 17.0706 -0.1 + vertex 26.7051 17.4601 0 + vertex 26.7051 17.4601 -0.1 + endloop + endfacet + facet normal -0.991209 -0.132303 0 + outer loop + vertex 26.7051 17.4601 0 + vertex 26.7571 17.0706 -0.1 + vertex 26.7571 17.0706 0 + endloop + endfacet + facet normal -0.970274 -0.242008 0 + outer loop + vertex 26.8653 16.6367 -0.1 + vertex 26.7571 17.0706 0 + vertex 26.7571 17.0706 -0.1 + endloop + endfacet + facet normal -0.970274 -0.242008 0 + outer loop + vertex 26.7571 17.0706 0 + vertex 26.8653 16.6367 -0.1 + vertex 26.8653 16.6367 0 + endloop + endfacet + facet normal -0.944031 -0.329856 0 + outer loop + vertex 27.0139 16.2113 -0.1 + vertex 26.8653 16.6367 0 + vertex 26.8653 16.6367 -0.1 + endloop + endfacet + facet normal -0.944031 -0.329856 0 + outer loop + vertex 26.8653 16.6367 0 + vertex 27.0139 16.2113 -0.1 + vertex 27.0139 16.2113 0 + endloop + endfacet + facet normal -0.902944 -0.429757 0 + outer loop + vertex 27.1872 15.8473 -0.1 + vertex 27.0139 16.2113 0 + vertex 27.0139 16.2113 -0.1 + endloop + endfacet + facet normal -0.902944 -0.429757 0 + outer loop + vertex 27.0139 16.2113 0 + vertex 27.1872 15.8473 -0.1 + vertex 27.1872 15.8473 0 + endloop + endfacet + facet normal -0.882286 -0.470713 0 + outer loop + vertex 27.3198 15.5987 -0.1 + vertex 27.1872 15.8473 0 + vertex 27.1872 15.8473 -0.1 + endloop + endfacet + facet normal -0.882286 -0.470713 0 + outer loop + vertex 27.1872 15.8473 0 + vertex 27.3198 15.5987 -0.1 + vertex 27.3198 15.5987 0 + endloop + endfacet + facet normal -0.922173 -0.386777 0 + outer loop + vertex 27.4227 15.3534 -0.1 + vertex 27.3198 15.5987 0 + vertex 27.3198 15.5987 -0.1 + endloop + endfacet + facet normal -0.922173 -0.386777 0 + outer loop + vertex 27.3198 15.5987 0 + vertex 27.4227 15.3534 -0.1 + vertex 27.4227 15.3534 0 + endloop + endfacet + facet normal -0.962502 -0.271275 0 + outer loop + vertex 27.4995 15.0808 -0.1 + vertex 27.4227 15.3534 0 + vertex 27.4227 15.3534 -0.1 + endloop + endfacet + facet normal -0.962502 -0.271275 0 + outer loop + vertex 27.4227 15.3534 0 + vertex 27.4995 15.0808 -0.1 + vertex 27.4995 15.0808 0 + endloop + endfacet + facet normal -0.986697 -0.162567 0 + outer loop + vertex 27.5539 14.7505 -0.1 + vertex 27.4995 15.0808 0 + vertex 27.4995 15.0808 -0.1 + endloop + endfacet + facet normal -0.986697 -0.162567 0 + outer loop + vertex 27.4995 15.0808 0 + vertex 27.5539 14.7505 -0.1 + vertex 27.5539 14.7505 0 + endloop + endfacet + facet normal -0.996383 -0.0849723 0 + outer loop + vertex 27.5896 14.3319 -0.1 + vertex 27.5539 14.7505 0 + vertex 27.5539 14.7505 -0.1 + endloop + endfacet + facet normal -0.996383 -0.0849723 0 + outer loop + vertex 27.5539 14.7505 0 + vertex 27.5896 14.3319 -0.1 + vertex 27.5896 14.3319 0 + endloop + endfacet + facet normal -0.999262 -0.0383987 0 + outer loop + vertex 27.6103 13.7945 -0.1 + vertex 27.5896 14.3319 0 + vertex 27.5896 14.3319 -0.1 + endloop + endfacet + facet normal -0.999262 -0.0383987 0 + outer loop + vertex 27.5896 14.3319 0 + vertex 27.6103 13.7945 -0.1 + vertex 27.6103 13.7945 0 + endloop + endfacet + facet normal -0.999976 -0.0069841 0 + outer loop + vertex 27.6211 12.2412 -0.1 + vertex 27.6103 13.7945 0 + vertex 27.6103 13.7945 -0.1 + endloop + endfacet + facet normal -0.999976 -0.0069841 0 + outer loop + vertex 27.6103 13.7945 0 + vertex 27.6211 12.2412 -0.1 + vertex 27.6211 12.2412 0 + endloop + endfacet + facet normal -0.999918 0.0127851 0 + outer loop + vertex 27.6024 10.7775 -0.1 + vertex 27.6211 12.2412 0 + vertex 27.6211 12.2412 -0.1 + endloop + endfacet + facet normal -0.999918 0.0127851 0 + outer loop + vertex 27.6211 12.2412 0 + vertex 27.6024 10.7775 -0.1 + vertex 27.6024 10.7775 0 + endloop + endfacet + facet normal -0.999067 0.0431942 0 + outer loop + vertex 27.5775 10.2019 -0.1 + vertex 27.6024 10.7775 0 + vertex 27.6024 10.7775 -0.1 + endloop + endfacet + facet normal -0.999067 0.0431942 0 + outer loop + vertex 27.6024 10.7775 0 + vertex 27.5775 10.2019 -0.1 + vertex 27.5775 10.2019 0 + endloop + endfacet + facet normal -0.997132 0.0756876 0 + outer loop + vertex 27.5397 9.70386 -0.1 + vertex 27.5775 10.2019 0 + vertex 27.5775 10.2019 -0.1 + endloop + endfacet + facet normal -0.997132 0.0756876 0 + outer loop + vertex 27.5775 10.2019 0 + vertex 27.5397 9.70386 -0.1 + vertex 27.5397 9.70386 0 + endloop + endfacet + facet normal -0.992933 0.118678 0 + outer loop + vertex 27.4871 9.26334 -0.1 + vertex 27.5397 9.70386 0 + vertex 27.5397 9.70386 -0.1 + endloop + endfacet + facet normal -0.992933 0.118678 0 + outer loop + vertex 27.5397 9.70386 0 + vertex 27.4871 9.26334 -0.1 + vertex 27.4871 9.26334 0 + endloop + endfacet + facet normal -0.985483 0.169774 0 + outer loop + vertex 27.4176 8.86037 -0.1 + vertex 27.4871 9.26334 0 + vertex 27.4871 9.26334 -0.1 + endloop + endfacet + facet normal -0.985483 0.169774 0 + outer loop + vertex 27.4871 9.26334 0 + vertex 27.4176 8.86037 -0.1 + vertex 27.4176 8.86037 0 + endloop + endfacet + facet normal -0.974842 0.222899 0 + outer loop + vertex 27.3295 8.47496 -0.1 + vertex 27.4176 8.86037 0 + vertex 27.4176 8.86037 -0.1 + endloop + endfacet + facet normal -0.974842 0.222899 0 + outer loop + vertex 27.4176 8.86037 0 + vertex 27.3295 8.47496 -0.1 + vertex 27.3295 8.47496 0 + endloop + endfacet + facet normal -0.962864 0.269986 0 + outer loop + vertex 27.2208 8.08714 -0.1 + vertex 27.3295 8.47496 0 + vertex 27.3295 8.47496 -0.1 + endloop + endfacet + facet normal -0.962864 0.269986 0 + outer loop + vertex 27.3295 8.47496 0 + vertex 27.2208 8.08714 -0.1 + vertex 27.2208 8.08714 0 + endloop + endfacet + facet normal -0.961499 0.274809 0 + outer loop + vertex 27.1048 7.68143 -0.1 + vertex 27.2208 8.08714 0 + vertex 27.2208 8.08714 -0.1 + endloop + endfacet + facet normal -0.961499 0.274809 0 + outer loop + vertex 27.2208 8.08714 0 + vertex 27.1048 7.68143 -0.1 + vertex 27.1048 7.68143 0 + endloop + endfacet + facet normal -0.973193 0.229988 0 + outer loop + vertex 27.0158 7.30485 -0.1 + vertex 27.1048 7.68143 0 + vertex 27.1048 7.68143 -0.1 + endloop + endfacet + facet normal -0.973193 0.229988 0 + outer loop + vertex 27.1048 7.68143 0 + vertex 27.0158 7.30485 -0.1 + vertex 27.0158 7.30485 0 + endloop + endfacet + facet normal -0.985852 0.167619 0 + outer loop + vertex 26.9517 6.92758 -0.1 + vertex 27.0158 7.30485 0 + vertex 27.0158 7.30485 -0.1 + endloop + endfacet + facet normal -0.985852 0.167619 0 + outer loop + vertex 27.0158 7.30485 0 + vertex 26.9517 6.92758 -0.1 + vertex 26.9517 6.92758 0 + endloop + endfacet + facet normal -0.994881 0.101051 0 + outer loop + vertex 26.9103 6.51977 -0.1 + vertex 26.9517 6.92758 0 + vertex 26.9517 6.92758 -0.1 + endloop + endfacet + facet normal -0.994881 0.101051 0 + outer loop + vertex 26.9517 6.92758 0 + vertex 26.9103 6.51977 -0.1 + vertex 26.9103 6.51977 0 + endloop + endfacet + facet normal -0.999013 0.0444183 0 + outer loop + vertex 26.8894 6.05157 -0.1 + vertex 26.9103 6.51977 0 + vertex 26.9103 6.51977 -0.1 + endloop + endfacet + facet normal -0.999013 0.0444183 0 + outer loop + vertex 26.9103 6.51977 0 + vertex 26.8894 6.05157 -0.1 + vertex 26.8894 6.05157 0 + endloop + endfacet + facet normal -0.999991 0.00417733 0 + outer loop + vertex 26.8871 5.49316 -0.1 + vertex 26.8894 6.05157 0 + vertex 26.8894 6.05157 -0.1 + endloop + endfacet + facet normal -0.999991 0.00417733 0 + outer loop + vertex 26.8894 6.05157 0 + vertex 26.8871 5.49316 -0.1 + vertex 26.8871 5.49316 0 + endloop + endfacet + facet normal -0.999606 -0.0280683 0 + outer loop + vertex 26.9294 3.98634 -0.1 + vertex 26.8871 5.49316 0 + vertex 26.8871 5.49316 -0.1 + endloop + endfacet + facet normal -0.999606 -0.0280683 0 + outer loop + vertex 26.8871 5.49316 0 + vertex 26.9294 3.98634 -0.1 + vertex 26.9294 3.98634 0 + endloop + endfacet + facet normal -0.999521 -0.0309525 0 + outer loop + vertex 26.9615 2.94949 -0.1 + vertex 26.9294 3.98634 0 + vertex 26.9294 3.98634 -0.1 + endloop + endfacet + facet normal -0.999521 -0.0309525 0 + outer loop + vertex 26.9294 3.98634 0 + vertex 26.9615 2.94949 -0.1 + vertex 26.9615 2.94949 0 + endloop + endfacet + facet normal -0.999992 -0.00407505 0 + outer loop + vertex 26.9647 2.16551 -0.1 + vertex 26.9615 2.94949 0 + vertex 26.9615 2.94949 -0.1 + endloop + endfacet + facet normal -0.999992 -0.00407505 0 + outer loop + vertex 26.9615 2.94949 0 + vertex 26.9647 2.16551 -0.1 + vertex 26.9647 2.16551 0 + endloop + endfacet + facet normal -0.998255 0.0590558 0 + outer loop + vertex 26.9324 1.61996 -0.1 + vertex 26.9647 2.16551 0 + vertex 26.9647 2.16551 -0.1 + endloop + endfacet + facet normal -0.998255 0.0590558 0 + outer loop + vertex 26.9647 2.16551 0 + vertex 26.9324 1.61996 -0.1 + vertex 26.9324 1.61996 0 + endloop + endfacet + facet normal -0.986243 0.165303 0 + outer loop + vertex 26.901 1.43209 -0.1 + vertex 26.9324 1.61996 0 + vertex 26.9324 1.61996 -0.1 + endloop + endfacet + facet normal -0.986243 0.165303 0 + outer loop + vertex 26.9324 1.61996 0 + vertex 26.901 1.43209 -0.1 + vertex 26.901 1.43209 0 + endloop + endfacet + facet normal -0.952336 0.30505 0 + outer loop + vertex 26.8581 1.29842 -0.1 + vertex 26.901 1.43209 0 + vertex 26.901 1.43209 -0.1 + endloop + endfacet + facet normal -0.952336 0.30505 0 + outer loop + vertex 26.901 1.43209 0 + vertex 26.8581 1.29842 -0.1 + vertex 26.8581 1.29842 0 + endloop + endfacet + facet normal -0.828352 0.560208 0 + outer loop + vertex 26.8032 1.21715 -0.1 + vertex 26.8581 1.29842 0 + vertex 26.8581 1.29842 -0.1 + endloop + endfacet + facet normal -0.828352 0.560208 0 + outer loop + vertex 26.8581 1.29842 0 + vertex 26.8032 1.21715 -0.1 + vertex 26.8032 1.21715 0 + endloop + endfacet + facet normal -0.411544 0.91139 0 + outer loop + vertex 26.8032 1.21715 -0.1 + vertex 26.7352 1.18648 0 + vertex 26.8032 1.21715 0 + endloop + endfacet + facet normal -0.411544 0.91139 0 + outer loop + vertex 26.7352 1.18648 0 + vertex 26.8032 1.21715 -0.1 + vertex 26.7352 1.18648 -0.1 + endloop + endfacet + facet normal 0.216454 0.976293 -0 + outer loop + vertex 26.7352 1.18648 -0.1 + vertex 26.6535 1.20459 0 + vertex 26.7352 1.18648 0 + endloop + endfacet + facet normal 0.216454 0.976293 0 + outer loop + vertex 26.6535 1.20459 0 + vertex 26.7352 1.18648 -0.1 + vertex 26.6535 1.20459 -0.1 + endloop + endfacet + facet normal 0.559991 0.828498 -0 + outer loop + vertex 26.6535 1.20459 -0.1 + vertex 26.5572 1.2697 0 + vertex 26.6535 1.20459 0 + endloop + endfacet + facet normal 0.559991 0.828498 0 + outer loop + vertex 26.5572 1.2697 0 + vertex 26.6535 1.20459 -0.1 + vertex 26.5572 1.2697 -0.1 + endloop + endfacet + facet normal 0.702452 0.711731 -0 + outer loop + vertex 26.5572 1.2697 -0.1 + vertex 26.4455 1.37999 0 + vertex 26.5572 1.2697 0 + endloop + endfacet + facet normal 0.702452 0.711731 0 + outer loop + vertex 26.4455 1.37999 0 + vertex 26.5572 1.2697 -0.1 + vertex 26.4455 1.37999 -0.1 + endloop + endfacet + facet normal 0.76838 0.639993 0 + outer loop + vertex 26.4455 1.37999 0 + vertex 26.3175 1.53367 -0.1 + vertex 26.3175 1.53367 0 + endloop + endfacet + facet normal 0.76838 0.639993 0 + outer loop + vertex 26.3175 1.53367 -0.1 + vertex 26.4455 1.37999 0 + vertex 26.4455 1.37999 -0.1 + endloop + endfacet + facet normal 0.813139 0.58207 0 + outer loop + vertex 26.3175 1.53367 0 + vertex 26.0094 1.96397 -0.1 + vertex 26.0094 1.96397 0 + endloop + endfacet + facet normal 0.813139 0.58207 0 + outer loop + vertex 26.0094 1.96397 -0.1 + vertex 26.3175 1.53367 0 + vertex 26.3175 1.53367 -0.1 + endloop + endfacet + facet normal 0.812733 0.582636 0 + outer loop + vertex 26.0094 1.96397 0 + vertex 25.8138 2.23679 -0.1 + vertex 25.8138 2.23679 0 + endloop + endfacet + facet normal 0.812733 0.582636 0 + outer loop + vertex 25.8138 2.23679 -0.1 + vertex 26.0094 1.96397 0 + vertex 26.0094 1.96397 -0.1 + endloop + endfacet + facet normal 0.76488 0.644173 0 + outer loop + vertex 25.8138 2.23679 0 + vertex 25.6376 2.44612 -0.1 + vertex 25.6376 2.44612 0 + endloop + endfacet + facet normal 0.76488 0.644173 0 + outer loop + vertex 25.6376 2.44612 -0.1 + vertex 25.8138 2.23679 0 + vertex 25.8138 2.23679 -0.1 + endloop + endfacet + facet normal 0.675362 0.737487 -0 + outer loop + vertex 25.6376 2.44612 -0.1 + vertex 25.4766 2.59351 0 + vertex 25.6376 2.44612 0 + endloop + endfacet + facet normal 0.675362 0.737487 0 + outer loop + vertex 25.4766 2.59351 0 + vertex 25.6376 2.44612 -0.1 + vertex 25.4766 2.59351 -0.1 + endloop + endfacet + facet normal 0.502892 0.86435 -0 + outer loop + vertex 25.4766 2.59351 -0.1 + vertex 25.3271 2.68052 0 + vertex 25.4766 2.59351 0 + endloop + endfacet + facet normal 0.502892 0.86435 0 + outer loop + vertex 25.3271 2.68052 0 + vertex 25.4766 2.59351 -0.1 + vertex 25.3271 2.68052 -0.1 + endloop + endfacet + facet normal 0.194571 0.980889 -0 + outer loop + vertex 25.3271 2.68052 -0.1 + vertex 25.185 2.7087 0 + vertex 25.3271 2.68052 0 + endloop + endfacet + facet normal 0.194571 0.980889 0 + outer loop + vertex 25.185 2.7087 0 + vertex 25.3271 2.68052 -0.1 + vertex 25.185 2.7087 -0.1 + endloop + endfacet + facet normal -0.205381 0.978682 0 + outer loop + vertex 25.185 2.7087 -0.1 + vertex 25.0464 2.67962 0 + vertex 25.185 2.7087 0 + endloop + endfacet + facet normal -0.205381 0.978682 0 + outer loop + vertex 25.0464 2.67962 0 + vertex 25.185 2.7087 -0.1 + vertex 25.0464 2.67962 -0.1 + endloop + endfacet + facet normal -0.520731 0.853721 0 + outer loop + vertex 25.0464 2.67962 -0.1 + vertex 24.9074 2.59483 0 + vertex 25.0464 2.67962 0 + endloop + endfacet + facet normal -0.520731 0.853721 0 + outer loop + vertex 24.9074 2.59483 0 + vertex 25.0464 2.67962 -0.1 + vertex 24.9074 2.59483 -0.1 + endloop + endfacet + facet normal -0.695882 0.718157 0 + outer loop + vertex 24.9074 2.59483 -0.1 + vertex 24.764 2.4559 0 + vertex 24.9074 2.59483 0 + endloop + endfacet + facet normal -0.695882 0.718157 0 + outer loop + vertex 24.764 2.4559 0 + vertex 24.9074 2.59483 -0.1 + vertex 24.764 2.4559 -0.1 + endloop + endfacet + facet normal -0.621809 0.783169 0 + outer loop + vertex 24.764 2.4559 -0.1 + vertex 24.6285 2.34829 0 + vertex 24.764 2.4559 0 + endloop + endfacet + facet normal -0.621809 0.783169 0 + outer loop + vertex 24.6285 2.34829 0 + vertex 24.764 2.4559 -0.1 + vertex 24.6285 2.34829 -0.1 + endloop + endfacet + facet normal -0.432349 0.901706 0 + outer loop + vertex 24.6285 2.34829 -0.1 + vertex 24.4388 2.25734 0 + vertex 24.6285 2.34829 0 + endloop + endfacet + facet normal -0.432349 0.901706 0 + outer loop + vertex 24.4388 2.25734 0 + vertex 24.6285 2.34829 -0.1 + vertex 24.4388 2.25734 -0.1 + endloop + endfacet + facet normal -0.283745 0.9589 0 + outer loop + vertex 24.4388 2.25734 -0.1 + vertex 24.2201 2.19262 0 + vertex 24.4388 2.25734 0 + endloop + endfacet + facet normal -0.283745 0.9589 0 + outer loop + vertex 24.2201 2.19262 0 + vertex 24.4388 2.25734 -0.1 + vertex 24.2201 2.19262 -0.1 + endloop + endfacet + facet normal -0.128745 0.991678 0 + outer loop + vertex 24.2201 2.19262 -0.1 + vertex 23.9975 2.16372 0 + vertex 24.2201 2.19262 0 + endloop + endfacet + facet normal -0.128745 0.991678 0 + outer loop + vertex 23.9975 2.16372 0 + vertex 24.2201 2.19262 -0.1 + vertex 23.9975 2.16372 -0.1 + endloop + endfacet + facet normal -0.0892316 0.996011 0 + outer loop + vertex 23.9975 2.16372 -0.1 + vertex 23.7673 2.14309 0 + vertex 23.9975 2.16372 0 + endloop + endfacet + facet normal -0.0892316 0.996011 0 + outer loop + vertex 23.7673 2.14309 0 + vertex 23.9975 2.16372 -0.1 + vertex 23.7673 2.14309 -0.1 + endloop + endfacet + facet normal -0.173492 0.984835 0 + outer loop + vertex 23.7673 2.14309 -0.1 + vertex 23.5277 2.10089 0 + vertex 23.7673 2.14309 0 + endloop + endfacet + facet normal -0.173492 0.984835 0 + outer loop + vertex 23.5277 2.10089 0 + vertex 23.7673 2.14309 -0.1 + vertex 23.5277 2.10089 -0.1 + endloop + endfacet + facet normal -0.252811 0.967516 0 + outer loop + vertex 23.5277 2.10089 -0.1 + vertex 23.3072 2.04326 0 + vertex 23.5277 2.10089 0 + endloop + endfacet + facet normal -0.252811 0.967516 0 + outer loop + vertex 23.3072 2.04326 0 + vertex 23.5277 2.10089 -0.1 + vertex 23.3072 2.04326 -0.1 + endloop + endfacet + facet normal -0.360079 0.932922 0 + outer loop + vertex 23.3072 2.04326 -0.1 + vertex 23.0469 1.94283 0 + vertex 23.3072 2.04326 0 + endloop + endfacet + facet normal -0.360079 0.932922 0 + outer loop + vertex 23.0469 1.94283 0 + vertex 23.3072 2.04326 -0.1 + vertex 23.0469 1.94283 -0.1 + endloop + endfacet + facet normal -0.120091 0.992763 0 + outer loop + vertex 23.0469 1.94283 -0.1 + vertex 22.9727 1.93385 0 + vertex 23.0469 1.94283 0 + endloop + endfacet + facet normal -0.120091 0.992763 0 + outer loop + vertex 22.9727 1.93385 0 + vertex 23.0469 1.94283 -0.1 + vertex 22.9727 1.93385 -0.1 + endloop + endfacet + facet normal 0.220007 0.975498 -0 + outer loop + vertex 22.9727 1.93385 -0.1 + vertex 22.9112 1.94773 0 + vertex 22.9727 1.93385 0 + endloop + endfacet + facet normal 0.220007 0.975498 0 + outer loop + vertex 22.9112 1.94773 0 + vertex 22.9727 1.93385 -0.1 + vertex 22.9112 1.94773 -0.1 + endloop + endfacet + facet normal 0.582178 0.813061 -0 + outer loop + vertex 22.9112 1.94773 -0.1 + vertex 22.8622 1.9828 0 + vertex 22.9112 1.94773 0 + endloop + endfacet + facet normal 0.582178 0.813061 0 + outer loop + vertex 22.8622 1.9828 0 + vertex 22.9112 1.94773 -0.1 + vertex 22.8622 1.9828 -0.1 + endloop + endfacet + facet normal 0.831256 0.55589 0 + outer loop + vertex 22.8622 1.9828 0 + vertex 22.8257 2.03737 -0.1 + vertex 22.8257 2.03737 0 + endloop + endfacet + facet normal 0.831256 0.55589 0 + outer loop + vertex 22.8257 2.03737 -0.1 + vertex 22.8622 1.9828 0 + vertex 22.8622 1.9828 -0.1 + endloop + endfacet + facet normal 0.948775 0.315953 0 + outer loop + vertex 22.8257 2.03737 0 + vertex 22.8016 2.10976 -0.1 + vertex 22.8016 2.10976 0 + endloop + endfacet + facet normal 0.948775 0.315953 0 + outer loop + vertex 22.8016 2.10976 -0.1 + vertex 22.8257 2.03737 0 + vertex 22.8257 2.03737 -0.1 + endloop + endfacet + facet normal 0.998216 0.059713 0 + outer loop + vertex 22.8016 2.10976 0 + vertex 22.7901 2.30129 -0.1 + vertex 22.7901 2.30129 0 + endloop + endfacet + facet normal 0.998216 0.059713 0 + outer loop + vertex 22.7901 2.30129 -0.1 + vertex 22.8016 2.10976 0 + vertex 22.8016 2.10976 -0.1 + endloop + endfacet + facet normal 0.988638 -0.150314 0 + outer loop + vertex 22.7901 2.30129 0 + vertex 22.827 2.54396 -0.1 + vertex 22.827 2.54396 0 + endloop + endfacet + facet normal 0.988638 -0.150314 0 + outer loop + vertex 22.827 2.54396 -0.1 + vertex 22.7901 2.30129 0 + vertex 22.7901 2.30129 -0.1 + endloop + endfacet + facet normal 0.957496 -0.288446 0 + outer loop + vertex 22.827 2.54396 0 + vertex 22.9115 2.82433 -0.1 + vertex 22.9115 2.82433 0 + endloop + endfacet + facet normal 0.957496 -0.288446 0 + outer loop + vertex 22.9115 2.82433 -0.1 + vertex 22.827 2.54396 0 + vertex 22.827 2.54396 -0.1 + endloop + endfacet + facet normal 0.918399 -0.395656 0 + outer loop + vertex 22.9115 2.82433 0 + vertex 23.0427 3.12896 -0.1 + vertex 23.0427 3.12896 0 + endloop + endfacet + facet normal 0.918399 -0.395656 0 + outer loop + vertex 23.0427 3.12896 -0.1 + vertex 22.9115 2.82433 0 + vertex 22.9115 2.82433 -0.1 + endloop + endfacet + facet normal 0.87183 -0.489809 0 + outer loop + vertex 23.0427 3.12896 0 + vertex 23.22 3.44442 -0.1 + vertex 23.22 3.44442 0 + endloop + endfacet + facet normal 0.87183 -0.489809 0 + outer loop + vertex 23.22 3.44442 -0.1 + vertex 23.0427 3.12896 0 + vertex 23.0427 3.12896 -0.1 + endloop + endfacet + facet normal 0.879841 -0.475268 0 + outer loop + vertex 23.22 3.44442 0 + vertex 23.4183 3.81156 -0.1 + vertex 23.4183 3.81156 0 + endloop + endfacet + facet normal 0.879841 -0.475268 0 + outer loop + vertex 23.4183 3.81156 -0.1 + vertex 23.22 3.44442 0 + vertex 23.22 3.44442 -0.1 + endloop + endfacet + facet normal 0.942923 -0.33301 0 + outer loop + vertex 23.4183 3.81156 0 + vertex 23.5494 4.18291 -0.1 + vertex 23.5494 4.18291 0 + endloop + endfacet + facet normal 0.942923 -0.33301 0 + outer loop + vertex 23.5494 4.18291 -0.1 + vertex 23.4183 3.81156 0 + vertex 23.4183 3.81156 -0.1 + endloop + endfacet + facet normal 0.978031 -0.208457 0 + outer loop + vertex 23.5494 4.18291 0 + vertex 23.5897 4.3717 -0.1 + vertex 23.5897 4.3717 0 + endloop + endfacet + facet normal 0.978031 -0.208457 0 + outer loop + vertex 23.5897 4.3717 -0.1 + vertex 23.5494 4.18291 0 + vertex 23.5494 4.18291 -0.1 + endloop + endfacet + facet normal 0.992713 -0.120506 0 + outer loop + vertex 23.5897 4.3717 0 + vertex 23.6129 4.5634 -0.1 + vertex 23.6129 4.5634 0 + endloop + endfacet + facet normal 0.992713 -0.120506 0 + outer loop + vertex 23.6129 4.5634 -0.1 + vertex 23.5897 4.3717 0 + vertex 23.5897 4.3717 -0.1 + endloop + endfacet + facet normal 0.99949 -0.0319444 0 + outer loop + vertex 23.6129 4.5634 0 + vertex 23.6192 4.7586 -0.1 + vertex 23.6192 4.7586 0 + endloop + endfacet + facet normal 0.99949 -0.0319444 0 + outer loop + vertex 23.6192 4.7586 -0.1 + vertex 23.6129 4.5634 0 + vertex 23.6129 4.5634 -0.1 + endloop + endfacet + facet normal 0.998522 0.054345 0 + outer loop + vertex 23.6192 4.7586 0 + vertex 23.6083 4.95794 -0.1 + vertex 23.6083 4.95794 0 + endloop + endfacet + facet normal 0.998522 0.054345 0 + outer loop + vertex 23.6083 4.95794 -0.1 + vertex 23.6192 4.7586 0 + vertex 23.6192 4.7586 -0.1 + endloop + endfacet + facet normal 0.984692 0.174301 0 + outer loop + vertex 23.6083 4.95794 0 + vertex 23.5351 5.37146 -0.1 + vertex 23.5351 5.37146 0 + endloop + endfacet + facet normal 0.984692 0.174301 0 + outer loop + vertex 23.5351 5.37146 -0.1 + vertex 23.6083 4.95794 0 + vertex 23.6083 4.95794 -0.1 + endloop + endfacet + facet normal 0.95097 0.309282 0 + outer loop + vertex 23.5351 5.37146 0 + vertex 23.3929 5.8089 -0.1 + vertex 23.3929 5.8089 0 + endloop + endfacet + facet normal 0.95097 0.309282 0 + outer loop + vertex 23.3929 5.8089 -0.1 + vertex 23.5351 5.37146 0 + vertex 23.5351 5.37146 -0.1 + endloop + endfacet + facet normal 0.910464 0.413588 0 + outer loop + vertex 23.3929 5.8089 0 + vertex 23.1811 6.27516 -0.1 + vertex 23.1811 6.27516 0 + endloop + endfacet + facet normal 0.910464 0.413588 0 + outer loop + vertex 23.1811 6.27516 -0.1 + vertex 23.3929 5.8089 0 + vertex 23.3929 5.8089 -0.1 + endloop + endfacet + facet normal 0.871161 0.490997 0 + outer loop + vertex 23.1811 6.27516 0 + vertex 22.8992 6.77518 -0.1 + vertex 22.8992 6.77518 0 + endloop + endfacet + facet normal 0.871161 0.490997 0 + outer loop + vertex 22.8992 6.77518 -0.1 + vertex 23.1811 6.27516 0 + vertex 23.1811 6.27516 -0.1 + endloop + endfacet + facet normal 0.839072 0.54402 0 + outer loop + vertex 22.8992 6.77518 0 + vertex 22.6364 7.18064 -0.1 + vertex 22.6364 7.18064 0 + endloop + endfacet + facet normal 0.839072 0.54402 0 + outer loop + vertex 22.6364 7.18064 -0.1 + vertex 22.8992 6.77518 0 + vertex 22.8992 6.77518 -0.1 + endloop + endfacet + facet normal 0.802153 0.597118 0 + outer loop + vertex 22.6364 7.18064 0 + vertex 22.3621 7.54907 -0.1 + vertex 22.3621 7.54907 0 + endloop + endfacet + facet normal 0.802153 0.597118 0 + outer loop + vertex 22.3621 7.54907 -0.1 + vertex 22.6364 7.18064 0 + vertex 22.6364 7.18064 -0.1 + endloop + endfacet + facet normal 0.754344 0.65648 0 + outer loop + vertex 22.3621 7.54907 0 + vertex 22.0631 7.89267 -0.1 + vertex 22.0631 7.89267 0 + endloop + endfacet + facet normal 0.754344 0.65648 0 + outer loop + vertex 22.0631 7.89267 -0.1 + vertex 22.3621 7.54907 0 + vertex 22.3621 7.54907 -0.1 + endloop + endfacet + facet normal 0.700509 0.713644 -0 + outer loop + vertex 22.0631 7.89267 -0.1 + vertex 21.7259 8.22365 0 + vertex 22.0631 7.89267 0 + endloop + endfacet + facet normal 0.700509 0.713644 0 + outer loop + vertex 21.7259 8.22365 0 + vertex 22.0631 7.89267 -0.1 + vertex 21.7259 8.22365 -0.1 + endloop + endfacet + facet normal 0.647802 0.761808 -0 + outer loop + vertex 21.7259 8.22365 -0.1 + vertex 21.3371 8.55423 0 + vertex 21.7259 8.22365 0 + endloop + endfacet + facet normal 0.647802 0.761808 0 + outer loop + vertex 21.3371 8.55423 0 + vertex 21.7259 8.22365 -0.1 + vertex 21.3371 8.55423 -0.1 + endloop + endfacet + facet normal 0.602358 0.798226 -0 + outer loop + vertex 21.3371 8.55423 -0.1 + vertex 20.8834 8.89663 0 + vertex 21.3371 8.55423 0 + endloop + endfacet + facet normal 0.602358 0.798226 0 + outer loop + vertex 20.8834 8.89663 0 + vertex 21.3371 8.55423 -0.1 + vertex 20.8834 8.89663 -0.1 + endloop + endfacet + facet normal 0.567155 0.823611 -0 + outer loop + vertex 20.8834 8.89663 -0.1 + vertex 20.3513 9.26304 0 + vertex 20.8834 8.89663 0 + endloop + endfacet + facet normal 0.567155 0.823611 0 + outer loop + vertex 20.3513 9.26304 0 + vertex 20.8834 8.89663 -0.1 + vertex 20.3513 9.26304 -0.1 + endloop + endfacet + facet normal 0.542271 0.840203 -0 + outer loop + vertex 20.3513 9.26304 -0.1 + vertex 19.7274 9.66569 0 + vertex 20.3513 9.26304 0 + endloop + endfacet + facet normal 0.542271 0.840203 0 + outer loop + vertex 19.7274 9.66569 0 + vertex 20.3513 9.26304 -0.1 + vertex 19.7274 9.66569 -0.1 + endloop + endfacet + facet normal 0.509213 0.86064 -0 + outer loop + vertex 19.7274 9.66569 -0.1 + vertex 19.4723 9.81661 0 + vertex 19.7274 9.66569 0 + endloop + endfacet + facet normal 0.509213 0.86064 0 + outer loop + vertex 19.4723 9.81661 0 + vertex 19.7274 9.66569 -0.1 + vertex 19.4723 9.81661 -0.1 + endloop + endfacet + facet normal 0.451586 0.892227 -0 + outer loop + vertex 19.4723 9.81661 -0.1 + vertex 19.2206 9.94402 0 + vertex 19.4723 9.81661 0 + endloop + endfacet + facet normal 0.451586 0.892227 0 + outer loop + vertex 19.2206 9.94402 0 + vertex 19.4723 9.81661 -0.1 + vertex 19.2206 9.94402 -0.1 + endloop + endfacet + facet normal 0.382649 0.923894 -0 + outer loop + vertex 19.2206 9.94402 -0.1 + vertex 18.9645 10.0501 0 + vertex 19.2206 9.94402 0 + endloop + endfacet + facet normal 0.382649 0.923894 0 + outer loop + vertex 18.9645 10.0501 0 + vertex 19.2206 9.94402 -0.1 + vertex 18.9645 10.0501 -0.1 + endloop + endfacet + facet normal 0.308251 0.951305 -0 + outer loop + vertex 18.9645 10.0501 -0.1 + vertex 18.6964 10.137 0 + vertex 18.9645 10.0501 0 + endloop + endfacet + facet normal 0.308251 0.951305 0 + outer loop + vertex 18.6964 10.137 0 + vertex 18.9645 10.0501 -0.1 + vertex 18.6964 10.137 -0.1 + endloop + endfacet + facet normal 0.235891 0.971779 -0 + outer loop + vertex 18.6964 10.137 -0.1 + vertex 18.4085 10.2069 0 + vertex 18.6964 10.137 0 + endloop + endfacet + facet normal 0.235891 0.971779 0 + outer loop + vertex 18.4085 10.2069 0 + vertex 18.6964 10.137 -0.1 + vertex 18.4085 10.2069 -0.1 + endloop + endfacet + facet normal 0.172 0.985097 -0 + outer loop + vertex 18.4085 10.2069 -0.1 + vertex 18.093 10.2619 0 + vertex 18.4085 10.2069 0 + endloop + endfacet + facet normal 0.172 0.985097 0 + outer loop + vertex 18.093 10.2619 0 + vertex 18.4085 10.2069 -0.1 + vertex 18.093 10.2619 -0.1 + endloop + endfacet + facet normal 0.0994696 0.995041 -0 + outer loop + vertex 18.093 10.2619 -0.1 + vertex 17.3487 10.3363 0 + vertex 18.093 10.2619 0 + endloop + endfacet + facet normal 0.0994696 0.995041 0 + outer loop + vertex 17.3487 10.3363 0 + vertex 18.093 10.2619 -0.1 + vertex 17.3487 10.3363 -0.1 + endloop + endfacet + facet normal 0.0510048 0.998698 -0 + outer loop + vertex 17.3487 10.3363 -0.1 + vertex 16.499 10.3797 0 + vertex 17.3487 10.3363 0 + endloop + endfacet + facet normal 0.0510048 0.998698 0 + outer loop + vertex 16.499 10.3797 0 + vertex 17.3487 10.3363 -0.1 + vertex 16.499 10.3797 -0.1 + endloop + endfacet + facet normal -0.0333465 0.999444 0 + outer loop + vertex 16.499 10.3797 -0.1 + vertex 16.2187 10.3704 0 + vertex 16.499 10.3797 0 + endloop + endfacet + facet normal -0.0333465 0.999444 0 + outer loop + vertex 16.2187 10.3704 0 + vertex 16.499 10.3797 -0.1 + vertex 16.2187 10.3704 -0.1 + endloop + endfacet + facet normal -0.179208 0.983811 0 + outer loop + vertex 16.2187 10.3704 -0.1 + vertex 16.005 10.3315 0 + vertex 16.2187 10.3704 0 + endloop + endfacet + facet normal -0.179208 0.983811 0 + outer loop + vertex 16.005 10.3315 0 + vertex 16.2187 10.3704 -0.1 + vertex 16.005 10.3315 -0.1 + endloop + endfacet + facet normal -0.405411 0.914135 0 + outer loop + vertex 16.005 10.3315 -0.1 + vertex 15.8355 10.2563 0 + vertex 16.005 10.3315 0 + endloop + endfacet + facet normal -0.405411 0.914135 0 + outer loop + vertex 15.8355 10.2563 0 + vertex 16.005 10.3315 -0.1 + vertex 15.8355 10.2563 -0.1 + endloop + endfacet + facet normal -0.624597 0.780947 0 + outer loop + vertex 15.8355 10.2563 -0.1 + vertex 15.6879 10.1383 0 + vertex 15.8355 10.2563 0 + endloop + endfacet + facet normal -0.624597 0.780947 0 + outer loop + vertex 15.6879 10.1383 0 + vertex 15.8355 10.2563 -0.1 + vertex 15.6879 10.1383 -0.1 + endloop + endfacet + facet normal -0.749396 0.662122 0 + outer loop + vertex 15.5399 9.97068 -0.1 + vertex 15.6879 10.1383 0 + vertex 15.6879 10.1383 -0.1 + endloop + endfacet + facet normal -0.749396 0.662122 0 + outer loop + vertex 15.6879 10.1383 0 + vertex 15.5399 9.97068 -0.1 + vertex 15.5399 9.97068 0 + endloop + endfacet + facet normal -0.794739 0.606951 0 + outer loop + vertex 15.369 9.74689 -0.1 + vertex 15.5399 9.97068 0 + vertex 15.5399 9.97068 -0.1 + endloop + endfacet + facet normal -0.794739 0.606951 0 + outer loop + vertex 15.5399 9.97068 0 + vertex 15.369 9.74689 -0.1 + vertex 15.369 9.74689 0 + endloop + endfacet + facet normal -0.812079 0.583548 0 + outer loop + vertex 15.213 9.52982 -0.1 + vertex 15.369 9.74689 0 + vertex 15.369 9.74689 -0.1 + endloop + endfacet + facet normal -0.812079 0.583548 0 + outer loop + vertex 15.369 9.74689 0 + vertex 15.213 9.52982 -0.1 + vertex 15.213 9.52982 0 + endloop + endfacet + facet normal -0.851006 0.525156 0 + outer loop + vertex 15.0942 9.33737 -0.1 + vertex 15.213 9.52982 0 + vertex 15.213 9.52982 -0.1 + endloop + endfacet + facet normal -0.851006 0.525156 0 + outer loop + vertex 15.213 9.52982 0 + vertex 15.0942 9.33737 -0.1 + vertex 15.0942 9.33737 0 + endloop + endfacet + facet normal -0.909184 0.416395 0 + outer loop + vertex 15.0092 9.15168 -0.1 + vertex 15.0942 9.33737 0 + vertex 15.0942 9.33737 -0.1 + endloop + endfacet + facet normal -0.909184 0.416395 0 + outer loop + vertex 15.0942 9.33737 0 + vertex 15.0092 9.15168 -0.1 + vertex 15.0092 9.15168 0 + endloop + endfacet + facet normal -0.963304 0.268412 0 + outer loop + vertex 14.9543 8.95485 -0.1 + vertex 15.0092 9.15168 0 + vertex 15.0092 9.15168 -0.1 + endloop + endfacet + facet normal -0.963304 0.268412 0 + outer loop + vertex 15.0092 9.15168 0 + vertex 14.9543 8.95485 -0.1 + vertex 14.9543 8.95485 0 + endloop + endfacet + facet normal -0.99232 0.1237 0 + outer loop + vertex 14.9262 8.72903 -0.1 + vertex 14.9543 8.95485 0 + vertex 14.9543 8.95485 -0.1 + endloop + endfacet + facet normal -0.99232 0.1237 0 + outer loop + vertex 14.9543 8.95485 0 + vertex 14.9262 8.72903 -0.1 + vertex 14.9262 8.72903 0 + endloop + endfacet + facet normal -0.999834 0.0182102 0 + outer loop + vertex 14.9212 8.45633 -0.1 + vertex 14.9262 8.72903 0 + vertex 14.9262 8.72903 -0.1 + endloop + endfacet + facet normal -0.999834 0.0182102 0 + outer loop + vertex 14.9262 8.72903 0 + vertex 14.9212 8.45633 -0.1 + vertex 14.9212 8.45633 0 + endloop + endfacet + facet normal -0.998195 -0.0600559 0 + outer loop + vertex 14.9668 7.69881 -0.1 + vertex 14.9212 8.45633 0 + vertex 14.9212 8.45633 -0.1 + endloop + endfacet + facet normal -0.998195 -0.0600559 0 + outer loop + vertex 14.9212 8.45633 0 + vertex 14.9668 7.69881 -0.1 + vertex 14.9668 7.69881 0 + endloop + endfacet + facet normal -0.99465 -0.103302 0 + outer loop + vertex 15.0249 7.13954 -0.1 + vertex 14.9668 7.69881 0 + vertex 14.9668 7.69881 -0.1 + endloop + endfacet + facet normal -0.99465 -0.103302 0 + outer loop + vertex 14.9668 7.69881 0 + vertex 15.0249 7.13954 -0.1 + vertex 15.0249 7.13954 0 + endloop + endfacet + facet normal -0.989699 -0.143163 0 + outer loop + vertex 15.1095 6.5543 -0.1 + vertex 15.0249 7.13954 0 + vertex 15.0249 7.13954 -0.1 + endloop + endfacet + facet normal -0.989699 -0.143163 0 + outer loop + vertex 15.0249 7.13954 0 + vertex 15.1095 6.5543 -0.1 + vertex 15.1095 6.5543 0 + endloop + endfacet + facet normal -0.984174 -0.177204 0 + outer loop + vertex 15.2183 5.95043 -0.1 + vertex 15.1095 6.5543 0 + vertex 15.1095 6.5543 -0.1 + endloop + endfacet + facet normal -0.984174 -0.177204 0 + outer loop + vertex 15.1095 6.5543 0 + vertex 15.2183 5.95043 -0.1 + vertex 15.2183 5.95043 0 + endloop + endfacet + facet normal -0.978296 -0.207212 0 + outer loop + vertex 15.3486 5.33522 -0.1 + vertex 15.2183 5.95043 0 + vertex 15.2183 5.95043 -0.1 + endloop + endfacet + facet normal -0.978296 -0.207212 0 + outer loop + vertex 15.2183 5.95043 0 + vertex 15.3486 5.33522 -0.1 + vertex 15.3486 5.33522 0 + endloop + endfacet + facet normal -0.972111 -0.23452 0 + outer loop + vertex 15.498 4.716 -0.1 + vertex 15.3486 5.33522 0 + vertex 15.3486 5.33522 -0.1 + endloop + endfacet + facet normal -0.972111 -0.23452 0 + outer loop + vertex 15.3486 5.33522 0 + vertex 15.498 4.716 -0.1 + vertex 15.498 4.716 0 + endloop + endfacet + facet normal -0.965559 -0.260185 0 + outer loop + vertex 15.6639 4.10009 -0.1 + vertex 15.498 4.716 0 + vertex 15.498 4.716 -0.1 + endloop + endfacet + facet normal -0.965559 -0.260185 0 + outer loop + vertex 15.498 4.716 0 + vertex 15.6639 4.10009 -0.1 + vertex 15.6639 4.10009 0 + endloop + endfacet + facet normal -0.95471 -0.297537 0 + outer loop + vertex 16.0356 2.90743 -0.1 + vertex 15.6639 4.10009 0 + vertex 15.6639 4.10009 -0.1 + endloop + endfacet + facet normal -0.95471 -0.297537 0 + outer loop + vertex 15.6639 4.10009 0 + vertex 16.0356 2.90743 -0.1 + vertex 16.0356 2.90743 0 + endloop + endfacet + facet normal -0.941754 -0.336302 0 + outer loop + vertex 16.2363 2.34533 -0.1 + vertex 16.0356 2.90743 0 + vertex 16.0356 2.90743 -0.1 + endloop + endfacet + facet normal -0.941754 -0.336302 0 + outer loop + vertex 16.0356 2.90743 0 + vertex 16.2363 2.34533 -0.1 + vertex 16.2363 2.34533 0 + endloop + endfacet + facet normal -0.931176 -0.364571 0 + outer loop + vertex 16.4437 1.81579 -0.1 + vertex 16.2363 2.34533 0 + vertex 16.2363 2.34533 -0.1 + endloop + endfacet + facet normal -0.931176 -0.364571 0 + outer loop + vertex 16.2363 2.34533 0 + vertex 16.4437 1.81579 -0.1 + vertex 16.4437 1.81579 0 + endloop + endfacet + facet normal -0.91808 -0.396396 0 + outer loop + vertex 16.6551 1.32614 -0.1 + vertex 16.4437 1.81579 0 + vertex 16.4437 1.81579 -0.1 + endloop + endfacet + facet normal -0.91808 -0.396396 0 + outer loop + vertex 16.4437 1.81579 0 + vertex 16.6551 1.32614 -0.1 + vertex 16.6551 1.32614 0 + endloop + endfacet + facet normal -0.901015 -0.433787 0 + outer loop + vertex 16.8681 0.883681 -0.1 + vertex 16.6551 1.32614 0 + vertex 16.6551 1.32614 -0.1 + endloop + endfacet + facet normal -0.901015 -0.433787 0 + outer loop + vertex 16.6551 1.32614 0 + vertex 16.8681 0.883681 -0.1 + vertex 16.8681 0.883681 0 + endloop + endfacet + facet normal -0.877409 -0.479744 0 + outer loop + vertex 17.0802 0.495742 -0.1 + vertex 16.8681 0.883681 0 + vertex 16.8681 0.883681 -0.1 + endloop + endfacet + facet normal -0.877409 -0.479744 0 + outer loop + vertex 16.8681 0.883681 0 + vertex 17.0802 0.495742 -0.1 + vertex 17.0802 0.495742 0 + endloop + endfacet + facet normal -0.842258 -0.539075 0 + outer loop + vertex 17.2889 0.169637 -0.1 + vertex 17.0802 0.495742 0 + vertex 17.0802 0.495742 -0.1 + endloop + endfacet + facet normal -0.842258 -0.539075 0 + outer loop + vertex 17.0802 0.495742 0 + vertex 17.2889 0.169637 -0.1 + vertex 17.2889 0.169637 0 + endloop + endfacet + facet normal -0.784932 -0.619582 0 + outer loop + vertex 17.4918 -0.0873203 -0.1 + vertex 17.2889 0.169637 0 + vertex 17.2889 0.169637 -0.1 + endloop + endfacet + facet normal -0.784932 -0.619582 0 + outer loop + vertex 17.2889 0.169637 0 + vertex 17.4918 -0.0873203 -0.1 + vertex 17.4918 -0.0873203 0 + endloop + endfacet + facet normal -0.680344 -0.732893 0 + outer loop + vertex 17.4918 -0.0873203 -0.1 + vertex 17.6862 -0.267812 0 + vertex 17.4918 -0.0873203 0 + endloop + endfacet + facet normal -0.680344 -0.732893 -0 + outer loop + vertex 17.6862 -0.267812 0 + vertex 17.4918 -0.0873203 -0.1 + vertex 17.6862 -0.267812 -0.1 + endloop + endfacet + facet normal -0.560342 -0.828261 0 + outer loop + vertex 17.6862 -0.267812 -0.1 + vertex 17.8284 -0.36402 0 + vertex 17.6862 -0.267812 0 + endloop + endfacet + facet normal -0.560342 -0.828261 -0 + outer loop + vertex 17.8284 -0.36402 0 + vertex 17.6862 -0.267812 -0.1 + vertex 17.8284 -0.36402 -0.1 + endloop + endfacet + facet normal -0.436276 -0.899813 0 + outer loop + vertex 17.8284 -0.36402 -0.1 + vertex 17.9646 -0.430052 0 + vertex 17.8284 -0.36402 0 + endloop + endfacet + facet normal -0.436276 -0.899813 -0 + outer loop + vertex 17.9646 -0.430052 0 + vertex 17.8284 -0.36402 -0.1 + vertex 17.9646 -0.430052 -0.1 + endloop + endfacet + facet normal -0.23232 -0.972639 0 + outer loop + vertex 17.9646 -0.430052 -0.1 + vertex 18.1098 -0.464739 0 + vertex 17.9646 -0.430052 0 + endloop + endfacet + facet normal -0.23232 -0.972639 -0 + outer loop + vertex 18.1098 -0.464739 0 + vertex 17.9646 -0.430052 -0.1 + vertex 18.1098 -0.464739 -0.1 + endloop + endfacet + facet normal -0.0128436 -0.999918 0 + outer loop + vertex 18.1098 -0.464739 -0.1 + vertex 18.2791 -0.466914 0 + vertex 18.1098 -0.464739 0 + endloop + endfacet + facet normal -0.0128436 -0.999918 -0 + outer loop + vertex 18.2791 -0.466914 0 + vertex 18.1098 -0.464739 -0.1 + vertex 18.2791 -0.466914 -0.1 + endloop + endfacet + facet normal 0.149466 -0.988767 0 + outer loop + vertex 18.2791 -0.466914 -0.1 + vertex 18.4876 -0.435405 0 + vertex 18.2791 -0.466914 0 + endloop + endfacet + facet normal 0.149466 -0.988767 0 + outer loop + vertex 18.4876 -0.435405 0 + vertex 18.2791 -0.466914 -0.1 + vertex 18.4876 -0.435405 -0.1 + endloop + endfacet + facet normal 0.244974 -0.96953 0 + outer loop + vertex 18.4876 -0.435405 -0.1 + vertex 18.7502 -0.369046 0 + vertex 18.4876 -0.435405 0 + endloop + endfacet + facet normal 0.244974 -0.96953 0 + outer loop + vertex 18.7502 -0.369046 0 + vertex 18.4876 -0.435405 -0.1 + vertex 18.7502 -0.369046 -0.1 + endloop + endfacet + facet normal 0.307753 -0.951466 0 + outer loop + vertex 18.7502 -0.369046 -0.1 + vertex 19.4982 -0.127099 0 + vertex 18.7502 -0.369046 0 + endloop + endfacet + facet normal 0.307753 -0.951466 0 + outer loop + vertex 19.4982 -0.127099 0 + vertex 18.7502 -0.369046 -0.1 + vertex 19.4982 -0.127099 -0.1 + endloop + endfacet + facet normal 0.301432 -0.953488 0 + outer loop + vertex 19.4982 -0.127099 -0.1 + vertex 20.0432 0.0451876 0 + vertex 19.4982 -0.127099 0 + endloop + endfacet + facet normal 0.301432 -0.953488 0 + outer loop + vertex 20.0432 0.0451876 0 + vertex 19.4982 -0.127099 -0.1 + vertex 20.0432 0.0451876 -0.1 + endloop + endfacet + facet normal 0.251907 -0.967752 0 + outer loop + vertex 20.0432 0.0451876 -0.1 + vertex 20.5155 0.168137 0 + vertex 20.0432 0.0451876 0 + endloop + endfacet + facet normal 0.251907 -0.967752 0 + outer loop + vertex 20.5155 0.168137 0 + vertex 20.0432 0.0451876 -0.1 + vertex 20.5155 0.168137 -0.1 + endloop + endfacet + facet normal 0.175432 -0.984492 0 + outer loop + vertex 20.5155 0.168137 -0.1 + vertex 20.8646 0.230347 0 + vertex 20.5155 0.168137 0 + endloop + endfacet + facet normal 0.175432 -0.984492 0 + outer loop + vertex 20.8646 0.230347 0 + vertex 20.5155 0.168137 -0.1 + vertex 20.8646 0.230347 -0.1 + endloop + endfacet + facet normal 0.0422921 -0.999105 0 + outer loop + vertex 20.8646 0.230347 -0.1 + vertex 20.9772 0.235111 0 + vertex 20.8646 0.230347 0 + endloop + endfacet + facet normal 0.0422921 -0.999105 0 + outer loop + vertex 20.9772 0.235111 0 + vertex 20.8646 0.230347 -0.1 + vertex 20.9772 0.235111 -0.1 + endloop + endfacet + facet normal -0.228021 -0.973656 0 + outer loop + vertex 20.9772 0.235111 -0.1 + vertex 21.0399 0.220413 0 + vertex 20.9772 0.235111 0 + endloop + endfacet + facet normal -0.228021 -0.973656 -0 + outer loop + vertex 21.0399 0.220413 0 + vertex 20.9772 0.235111 -0.1 + vertex 21.0399 0.220413 -0.1 + endloop + endfacet + facet normal -0.836215 -0.548402 0 + outer loop + vertex 21.0726 0.170561 -0.1 + vertex 21.0399 0.220413 0 + vertex 21.0399 0.220413 -0.1 + endloop + endfacet + facet normal -0.836215 -0.548402 0 + outer loop + vertex 21.0399 0.220413 0 + vertex 21.0726 0.170561 -0.1 + vertex 21.0726 0.170561 0 + endloop + endfacet + facet normal -0.964289 -0.264852 0 + outer loop + vertex 21.099 0.0745682 -0.1 + vertex 21.0726 0.170561 0 + vertex 21.0726 0.170561 -0.1 + endloop + endfacet + facet normal -0.964289 -0.264852 0 + outer loop + vertex 21.0726 0.170561 0 + vertex 21.099 0.0745682 -0.1 + vertex 21.099 0.0745682 0 + endloop + endfacet + facet normal -0.994432 -0.105376 0 + outer loop + vertex 21.1316 -0.233279 -0.1 + vertex 21.099 0.0745682 0 + vertex 21.099 0.0745682 -0.1 + endloop + endfacet + facet normal -0.994432 -0.105376 0 + outer loop + vertex 21.099 0.0745682 0 + vertex 21.1316 -0.233279 -0.1 + vertex 21.1316 -0.233279 0 + endloop + endfacet + facet normal -0.999957 -0.00925488 0 + outer loop + vertex 21.1355 -0.658014 -0.1 + vertex 21.1316 -0.233279 0 + vertex 21.1316 -0.233279 -0.1 + endloop + endfacet + facet normal -0.999957 -0.00925488 0 + outer loop + vertex 21.1316 -0.233279 0 + vertex 21.1355 -0.658014 -0.1 + vertex 21.1355 -0.658014 0 + endloop + endfacet + facet normal -0.998524 0.0543158 0 + outer loop + vertex 21.1085 -1.15452 -0.1 + vertex 21.1355 -0.658014 0 + vertex 21.1355 -0.658014 -0.1 + endloop + endfacet + facet normal -0.998524 0.0543158 0 + outer loop + vertex 21.1355 -0.658014 0 + vertex 21.1085 -1.15452 -0.1 + vertex 21.1085 -1.15452 0 + endloop + endfacet + facet normal -0.992587 0.121535 0 + outer loop + vertex 21.0399 -1.71534 -0.1 + vertex 21.1085 -1.15452 0 + vertex 21.1085 -1.15452 -0.1 + endloop + endfacet + facet normal -0.992587 0.121535 0 + outer loop + vertex 21.1085 -1.15452 0 + vertex 21.0399 -1.71534 -0.1 + vertex 21.0399 -1.71534 0 + endloop + endfacet + facet normal -0.978633 0.205615 0 + outer loop + vertex 20.9878 -1.96317 -0.1 + vertex 21.0399 -1.71534 0 + vertex 21.0399 -1.71534 -0.1 + endloop + endfacet + facet normal -0.978633 0.205615 0 + outer loop + vertex 21.0399 -1.71534 0 + vertex 20.9878 -1.96317 -0.1 + vertex 20.9878 -1.96317 0 + endloop + endfacet + facet normal -0.959237 0.282603 0 + outer loop + vertex 20.9199 -2.19366 -0.1 + vertex 20.9878 -1.96317 0 + vertex 20.9878 -1.96317 -0.1 + endloop + endfacet + facet normal -0.959237 0.282603 0 + outer loop + vertex 20.9878 -1.96317 0 + vertex 20.9199 -2.19366 -0.1 + vertex 20.9199 -2.19366 0 + endloop + endfacet + facet normal -0.92823 0.372008 0 + outer loop + vertex 20.8331 -2.41014 -0.1 + vertex 20.9199 -2.19366 0 + vertex 20.9199 -2.19366 -0.1 + endloop + endfacet + facet normal -0.92823 0.372008 0 + outer loop + vertex 20.9199 -2.19366 0 + vertex 20.8331 -2.41014 -0.1 + vertex 20.8331 -2.41014 0 + endloop + endfacet + facet normal -0.884337 0.46685 0 + outer loop + vertex 20.7245 -2.61588 -0.1 + vertex 20.8331 -2.41014 0 + vertex 20.8331 -2.41014 -0.1 + endloop + endfacet + facet normal -0.884337 0.46685 0 + outer loop + vertex 20.8331 -2.41014 0 + vertex 20.7245 -2.61588 -0.1 + vertex 20.7245 -2.61588 0 + endloop + endfacet + facet normal -0.829583 0.558383 0 + outer loop + vertex 20.591 -2.8142 -0.1 + vertex 20.7245 -2.61588 0 + vertex 20.7245 -2.61588 -0.1 + endloop + endfacet + facet normal -0.829583 0.558383 0 + outer loop + vertex 20.7245 -2.61588 0 + vertex 20.591 -2.8142 -0.1 + vertex 20.591 -2.8142 0 + endloop + endfacet + facet normal -0.769117 0.639107 0 + outer loop + vertex 20.4297 -3.0084 -0.1 + vertex 20.591 -2.8142 0 + vertex 20.591 -2.8142 -0.1 + endloop + endfacet + facet normal -0.769117 0.639107 0 + outer loop + vertex 20.591 -2.8142 0 + vertex 20.4297 -3.0084 -0.1 + vertex 20.4297 -3.0084 0 + endloop + endfacet + facet normal -0.709135 0.705072 0 + outer loop + vertex 20.2374 -3.20177 -0.1 + vertex 20.4297 -3.0084 0 + vertex 20.4297 -3.0084 -0.1 + endloop + endfacet + facet normal -0.709135 0.705072 0 + outer loop + vertex 20.4297 -3.0084 0 + vertex 20.2374 -3.20177 -0.1 + vertex 20.2374 -3.20177 0 + endloop + endfacet + facet normal -0.654612 0.755965 0 + outer loop + vertex 20.2374 -3.20177 -0.1 + vertex 20.0112 -3.39762 0 + vertex 20.2374 -3.20177 0 + endloop + endfacet + facet normal -0.654612 0.755965 0 + outer loop + vertex 20.0112 -3.39762 0 + vertex 20.2374 -3.20177 -0.1 + vertex 20.0112 -3.39762 -0.1 + endloop + endfacet + facet normal -0.588742 0.808321 0 + outer loop + vertex 20.0112 -3.39762 -0.1 + vertex 19.4451 -3.80993 0 + vertex 20.0112 -3.39762 0 + endloop + endfacet + facet normal -0.588742 0.808321 0 + outer loop + vertex 19.4451 -3.80993 0 + vertex 20.0112 -3.39762 -0.1 + vertex 19.4451 -3.80993 -0.1 + endloop + endfacet + facet normal -0.530543 0.847658 0 + outer loop + vertex 19.4451 -3.80993 -0.1 + vertex 18.7073 -4.27174 0 + vertex 19.4451 -3.80993 0 + endloop + endfacet + facet normal -0.530543 0.847658 0 + outer loop + vertex 18.7073 -4.27174 0 + vertex 19.4451 -3.80993 -0.1 + vertex 18.7073 -4.27174 -0.1 + endloop + endfacet + facet normal -0.499058 0.866569 0 + outer loop + vertex 18.7073 -4.27174 -0.1 + vertex 17.7736 -4.80944 0 + vertex 18.7073 -4.27174 0 + endloop + endfacet + facet normal -0.499058 0.866569 0 + outer loop + vertex 17.7736 -4.80944 0 + vertex 18.7073 -4.27174 -0.1 + vertex 17.7736 -4.80944 -0.1 + endloop + endfacet + facet normal -0.476856 0.878981 0 + outer loop + vertex 17.7736 -4.80944 -0.1 + vertex 16.3254 -5.59514 0 + vertex 17.7736 -4.80944 0 + endloop + endfacet + facet normal -0.476856 0.878981 0 + outer loop + vertex 16.3254 -5.59514 0 + vertex 17.7736 -4.80944 -0.1 + vertex 16.3254 -5.59514 -0.1 + endloop + endfacet + facet normal -0.451418 0.892312 0 + outer loop + vertex 16.3254 -5.59514 -0.1 + vertex 15.6549 -5.93433 0 + vertex 16.3254 -5.59514 0 + endloop + endfacet + facet normal -0.451418 0.892312 0 + outer loop + vertex 15.6549 -5.93433 0 + vertex 16.3254 -5.59514 -0.1 + vertex 15.6549 -5.93433 -0.1 + endloop + endfacet + facet normal -0.429833 0.902908 0 + outer loop + vertex 15.6549 -5.93433 -0.1 + vertex 15.0129 -6.23993 0 + vertex 15.6549 -5.93433 0 + endloop + endfacet + facet normal -0.429833 0.902908 0 + outer loop + vertex 15.0129 -6.23993 0 + vertex 15.6549 -5.93433 -0.1 + vertex 15.0129 -6.23993 -0.1 + endloop + endfacet + facet normal -0.404408 0.914579 0 + outer loop + vertex 15.0129 -6.23993 -0.1 + vertex 14.3941 -6.51356 0 + vertex 15.0129 -6.23993 0 + endloop + endfacet + facet normal -0.404408 0.914579 0 + outer loop + vertex 14.3941 -6.51356 0 + vertex 15.0129 -6.23993 -0.1 + vertex 14.3941 -6.51356 -0.1 + endloop + endfacet + facet normal -0.375168 0.926957 0 + outer loop + vertex 14.3941 -6.51356 -0.1 + vertex 13.793 -6.75686 0 + vertex 14.3941 -6.51356 0 + endloop + endfacet + facet normal -0.375168 0.926957 0 + outer loop + vertex 13.793 -6.75686 0 + vertex 14.3941 -6.51356 -0.1 + vertex 13.793 -6.75686 -0.1 + endloop + endfacet + facet normal -0.342394 0.939557 0 + outer loop + vertex 13.793 -6.75686 -0.1 + vertex 13.2041 -6.97145 0 + vertex 13.793 -6.75686 0 + endloop + endfacet + facet normal -0.342394 0.939557 0 + outer loop + vertex 13.2041 -6.97145 0 + vertex 13.793 -6.75686 -0.1 + vertex 13.2041 -6.97145 -0.1 + endloop + endfacet + facet normal -0.306665 0.951818 0 + outer loop + vertex 13.2041 -6.97145 -0.1 + vertex 12.6221 -7.15898 0 + vertex 13.2041 -6.97145 0 + endloop + endfacet + facet normal -0.306665 0.951818 0 + outer loop + vertex 12.6221 -7.15898 0 + vertex 13.2041 -6.97145 -0.1 + vertex 12.6221 -7.15898 -0.1 + endloop + endfacet + facet normal -0.268881 0.963173 0 + outer loop + vertex 12.6221 -7.15898 -0.1 + vertex 12.0414 -7.32107 0 + vertex 12.6221 -7.15898 0 + endloop + endfacet + facet normal -0.268881 0.963173 0 + outer loop + vertex 12.0414 -7.32107 0 + vertex 12.6221 -7.15898 -0.1 + vertex 12.0414 -7.32107 -0.1 + endloop + endfacet + facet normal -0.230173 0.97315 0 + outer loop + vertex 12.0414 -7.32107 -0.1 + vertex 11.4568 -7.45935 0 + vertex 12.0414 -7.32107 0 + endloop + endfacet + facet normal -0.230173 0.97315 0 + outer loop + vertex 11.4568 -7.45935 0 + vertex 12.0414 -7.32107 -0.1 + vertex 11.4568 -7.45935 -0.1 + endloop + endfacet + facet normal -0.191808 0.981433 0 + outer loop + vertex 11.4568 -7.45935 -0.1 + vertex 10.8627 -7.57545 0 + vertex 11.4568 -7.45935 0 + endloop + endfacet + facet normal -0.191808 0.981433 0 + outer loop + vertex 10.8627 -7.57545 0 + vertex 11.4568 -7.45935 -0.1 + vertex 10.8627 -7.57545 -0.1 + endloop + endfacet + facet normal -0.155029 0.98791 0 + outer loop + vertex 10.8627 -7.57545 -0.1 + vertex 10.2538 -7.67101 0 + vertex 10.8627 -7.57545 0 + endloop + endfacet + facet normal -0.155029 0.98791 0 + outer loop + vertex 10.2538 -7.67101 0 + vertex 10.8627 -7.57545 -0.1 + vertex 10.2538 -7.67101 -0.1 + endloop + endfacet + facet normal -0.120913 0.992663 0 + outer loop + vertex 10.2538 -7.67101 -0.1 + vertex 9.62459 -7.74765 0 + vertex 10.2538 -7.67101 0 + endloop + endfacet + facet normal -0.120913 0.992663 0 + outer loop + vertex 9.62459 -7.74765 0 + vertex 10.2538 -7.67101 -0.1 + vertex 9.62459 -7.74765 -0.1 + endloop + endfacet + facet normal -0.0902671 0.995918 0 + outer loop + vertex 9.62459 -7.74765 -0.1 + vertex 8.96966 -7.80701 0 + vertex 9.62459 -7.74765 0 + endloop + endfacet + facet normal -0.0902671 0.995918 0 + outer loop + vertex 8.96966 -7.80701 0 + vertex 9.62459 -7.74765 -0.1 + vertex 8.96966 -7.80701 -0.1 + endloop + endfacet + facet normal -0.0520328 0.998645 0 + outer loop + vertex 8.96966 -7.80701 -0.1 + vertex 7.56097 -7.88041 0 + vertex 8.96966 -7.80701 0 + endloop + endfacet + facet normal -0.0520328 0.998645 0 + outer loop + vertex 7.56097 -7.88041 0 + vertex 8.96966 -7.80701 -0.1 + vertex 7.56097 -7.88041 -0.1 + endloop + endfacet + facet normal -0.0211888 0.999775 0 + outer loop + vertex 7.56097 -7.88041 -0.1 + vertex 6.04455 -7.91255 0 + vertex 7.56097 -7.88041 0 + endloop + endfacet + facet normal -0.0211888 0.999775 0 + outer loop + vertex 6.04455 -7.91255 0 + vertex 7.56097 -7.88041 -0.1 + vertex 6.04455 -7.91255 -0.1 + endloop + endfacet + facet normal 0.00984088 0.999952 -0 + outer loop + vertex 6.04455 -7.91255 -0.1 + vertex 5.49083 -7.9071 0 + vertex 6.04455 -7.91255 0 + endloop + endfacet + facet normal 0.00984088 0.999952 0 + outer loop + vertex 5.49083 -7.9071 0 + vertex 6.04455 -7.91255 -0.1 + vertex 5.49083 -7.9071 -0.1 + endloop + endfacet + facet normal 0.0493656 0.998781 -0 + outer loop + vertex 5.49083 -7.9071 -0.1 + vertex 5.0434 -7.88498 0 + vertex 5.49083 -7.9071 0 + endloop + endfacet + facet normal 0.0493656 0.998781 0 + outer loop + vertex 5.0434 -7.88498 0 + vertex 5.49083 -7.9071 -0.1 + vertex 5.0434 -7.88498 -0.1 + endloop + endfacet + facet normal 0.110735 0.99385 -0 + outer loop + vertex 5.0434 -7.88498 -0.1 + vertex 4.67971 -7.84446 0 + vertex 5.0434 -7.88498 0 + endloop + endfacet + facet normal 0.110735 0.99385 0 + outer loop + vertex 4.67971 -7.84446 0 + vertex 5.0434 -7.88498 -0.1 + vertex 4.67971 -7.84446 -0.1 + endloop + endfacet + facet normal 0.196653 0.980473 -0 + outer loop + vertex 4.67971 -7.84446 -0.1 + vertex 4.37723 -7.78379 0 + vertex 4.67971 -7.84446 0 + endloop + endfacet + facet normal 0.196653 0.980473 0 + outer loop + vertex 4.37723 -7.78379 0 + vertex 4.67971 -7.84446 -0.1 + vertex 4.37723 -7.78379 -0.1 + endloop + endfacet + facet normal 0.298658 0.95436 -0 + outer loop + vertex 4.37723 -7.78379 -0.1 + vertex 4.11342 -7.70123 0 + vertex 4.37723 -7.78379 0 + endloop + endfacet + facet normal 0.298658 0.95436 0 + outer loop + vertex 4.11342 -7.70123 0 + vertex 4.37723 -7.78379 -0.1 + vertex 4.11342 -7.70123 -0.1 + endloop + endfacet + facet normal 0.39403 0.919098 -0 + outer loop + vertex 4.11342 -7.70123 -0.1 + vertex 3.86574 -7.59505 0 + vertex 4.11342 -7.70123 0 + endloop + endfacet + facet normal 0.39403 0.919098 0 + outer loop + vertex 3.86574 -7.59505 0 + vertex 4.11342 -7.70123 -0.1 + vertex 3.86574 -7.59505 -0.1 + endloop + endfacet + facet normal 0.472054 0.88157 -0 + outer loop + vertex 3.86574 -7.59505 -0.1 + vertex 3.40104 -7.34622 0 + vertex 3.86574 -7.59505 0 + endloop + endfacet + facet normal 0.472054 0.88157 0 + outer loop + vertex 3.40104 -7.34622 0 + vertex 3.86574 -7.59505 -0.1 + vertex 3.40104 -7.34622 -0.1 + endloop + endfacet + facet normal 0.50336 0.864077 -0 + outer loop + vertex 3.40104 -7.34622 -0.1 + vertex 2.71562 -6.94693 0 + vertex 3.40104 -7.34622 0 + endloop + endfacet + facet normal 0.50336 0.864077 0 + outer loop + vertex 2.71562 -6.94693 0 + vertex 3.40104 -7.34622 -0.1 + vertex 2.71562 -6.94693 -0.1 + endloop + endfacet + facet normal 0.526285 0.850308 -0 + outer loop + vertex 2.71562 -6.94693 -0.1 + vertex 1.05193 -5.91722 0 + vertex 2.71562 -6.94693 0 + endloop + endfacet + facet normal 0.526285 0.850308 0 + outer loop + vertex 1.05193 -5.91722 0 + vertex 2.71562 -6.94693 -0.1 + vertex 1.05193 -5.91722 -0.1 + endloop + endfacet + facet normal 0.529768 0.848143 -0 + outer loop + vertex 1.05193 -5.91722 -0.1 + vertex -0.694871 -4.82613 0 + vertex 1.05193 -5.91722 0 + endloop + endfacet + facet normal 0.529768 0.848143 0 + outer loop + vertex -0.694871 -4.82613 0 + vertex 1.05193 -5.91722 -0.1 + vertex -0.694871 -4.82613 -0.1 + endloop + endfacet + facet normal 0.507777 0.861489 -0 + outer loop + vertex -0.694871 -4.82613 -0.1 + vertex -2.47177 -3.7788 0 + vertex -0.694871 -4.82613 0 + endloop + endfacet + facet normal 0.507777 0.861489 0 + outer loop + vertex -2.47177 -3.7788 0 + vertex -0.694871 -4.82613 -0.1 + vertex -2.47177 -3.7788 -0.1 + endloop + endfacet + facet normal 0.55979 0.828634 -0 + outer loop + vertex -2.47177 -3.7788 -0.1 + vertex -2.8551 -3.51984 0 + vertex -2.47177 -3.7788 0 + endloop + endfacet + facet normal 0.55979 0.828634 0 + outer loop + vertex -2.8551 -3.51984 0 + vertex -2.47177 -3.7788 -0.1 + vertex -2.8551 -3.51984 -0.1 + endloop + endfacet + facet normal 0.612658 0.790348 -0 + outer loop + vertex -2.8551 -3.51984 -0.1 + vertex -3.18232 -3.26618 0 + vertex -2.8551 -3.51984 0 + endloop + endfacet + facet normal 0.612658 0.790348 0 + outer loop + vertex -3.18232 -3.26618 0 + vertex -2.8551 -3.51984 -0.1 + vertex -3.18232 -3.26618 -0.1 + endloop + endfacet + facet normal 0.673628 0.73907 -0 + outer loop + vertex -3.18232 -3.26618 -0.1 + vertex -3.44099 -3.03042 0 + vertex -3.18232 -3.26618 0 + endloop + endfacet + facet normal 0.673628 0.73907 0 + outer loop + vertex -3.44099 -3.03042 0 + vertex -3.18232 -3.26618 -0.1 + vertex -3.44099 -3.03042 -0.1 + endloop + endfacet + facet normal 0.756151 0.654397 0 + outer loop + vertex -3.44099 -3.03042 0 + vertex -3.61865 -2.82513 -0.1 + vertex -3.61865 -2.82513 0 + endloop + endfacet + facet normal 0.756151 0.654397 0 + outer loop + vertex -3.61865 -2.82513 -0.1 + vertex -3.44099 -3.03042 0 + vertex -3.44099 -3.03042 -0.1 + endloop + endfacet + facet normal 0.887562 0.460688 0 + outer loop + vertex -3.61865 -2.82513 0 + vertex -3.70285 -2.66292 -0.1 + vertex -3.70285 -2.66292 0 + endloop + endfacet + facet normal 0.887562 0.460688 0 + outer loop + vertex -3.70285 -2.66292 -0.1 + vertex -3.61865 -2.82513 0 + vertex -3.61865 -2.82513 -0.1 + endloop + endfacet + facet normal 0.998663 0.0516973 0 + outer loop + vertex -3.70285 -2.66292 0 + vertex -3.70601 -2.60189 -0.1 + vertex -3.70601 -2.60189 0 + endloop + endfacet + facet normal 0.998663 0.0516973 0 + outer loop + vertex -3.70601 -2.60189 -0.1 + vertex -3.70285 -2.66292 0 + vertex -3.70285 -2.66292 -0.1 + endloop + endfacet + facet normal 0.877591 -0.479411 0 + outer loop + vertex -3.70601 -2.60189 0 + vertex -3.68113 -2.55635 -0.1 + vertex -3.68113 -2.55635 0 + endloop + endfacet + facet normal 0.877591 -0.479411 0 + outer loop + vertex -3.68113 -2.55635 -0.1 + vertex -3.70601 -2.60189 0 + vertex -3.70601 -2.60189 -0.1 + endloop + endfacet + facet normal 0.463305 -0.886199 0 + outer loop + vertex -3.68113 -2.55635 -0.1 + vertex -3.62666 -2.52788 0 + vertex -3.68113 -2.55635 0 + endloop + endfacet + facet normal 0.463305 -0.886199 0 + outer loop + vertex -3.62666 -2.52788 0 + vertex -3.68113 -2.55635 -0.1 + vertex -3.62666 -2.52788 -0.1 + endloop + endfacet + facet normal 0.114199 -0.993458 0 + outer loop + vertex -3.62666 -2.52788 -0.1 + vertex -3.54104 -2.51804 0 + vertex -3.62666 -2.52788 0 + endloop + endfacet + facet normal 0.114199 -0.993458 0 + outer loop + vertex -3.54104 -2.51804 0 + vertex -3.62666 -2.52788 -0.1 + vertex -3.54104 -2.51804 -0.1 + endloop + endfacet + facet normal -0.250917 -0.968009 0 + outer loop + vertex -3.54104 -2.51804 -0.1 + vertex -3.301 -2.58026 0 + vertex -3.54104 -2.51804 0 + endloop + endfacet + facet normal -0.250917 -0.968009 -0 + outer loop + vertex -3.301 -2.58026 0 + vertex -3.54104 -2.51804 -0.1 + vertex -3.301 -2.58026 -0.1 + endloop + endfacet + facet normal -0.37095 -0.928653 0 + outer loop + vertex -3.301 -2.58026 -0.1 + vertex -2.87688 -2.74967 0 + vertex -3.301 -2.58026 0 + endloop + endfacet + facet normal -0.37095 -0.928653 -0 + outer loop + vertex -2.87688 -2.74967 0 + vertex -3.301 -2.58026 -0.1 + vertex -2.87688 -2.74967 -0.1 + endloop + endfacet + facet normal -0.415868 -0.909425 0 + outer loop + vertex -2.87688 -2.74967 -0.1 + vertex -2.32857 -3.00041 0 + vertex -2.87688 -2.74967 0 + endloop + endfacet + facet normal -0.415868 -0.909425 -0 + outer loop + vertex -2.32857 -3.00041 0 + vertex -2.87688 -2.74967 -0.1 + vertex -2.32857 -3.00041 -0.1 + endloop + endfacet + facet normal -0.447064 -0.894502 0 + outer loop + vertex -2.32857 -3.00041 -0.1 + vertex -1.71595 -3.30659 0 + vertex -2.32857 -3.00041 0 + endloop + endfacet + facet normal -0.447064 -0.894502 -0 + outer loop + vertex -1.71595 -3.30659 0 + vertex -2.32857 -3.00041 -0.1 + vertex -1.71595 -3.30659 -0.1 + endloop + endfacet + facet normal -0.450995 -0.892526 0 + outer loop + vertex -1.71595 -3.30659 -0.1 + vertex -1.01669 -3.65993 0 + vertex -1.71595 -3.30659 0 + endloop + endfacet + facet normal -0.450995 -0.892526 -0 + outer loop + vertex -1.01669 -3.65993 0 + vertex -1.71595 -3.30659 -0.1 + vertex -1.01669 -3.65993 -0.1 + endloop + endfacet + facet normal -0.429074 -0.903269 0 + outer loop + vertex -1.01669 -3.65993 -0.1 + vertex -0.313177 -3.99411 0 + vertex -1.01669 -3.65993 0 + endloop + endfacet + facet normal -0.429074 -0.903269 -0 + outer loop + vertex -0.313177 -3.99411 0 + vertex -1.01669 -3.65993 -0.1 + vertex -0.313177 -3.99411 -0.1 + endloop + endfacet + facet normal -0.406667 -0.913576 0 + outer loop + vertex -0.313177 -3.99411 -0.1 + vertex 0.394112 -4.30895 0 + vertex -0.313177 -3.99411 0 + endloop + endfacet + facet normal -0.406667 -0.913576 -0 + outer loop + vertex 0.394112 -4.30895 0 + vertex -0.313177 -3.99411 -0.1 + vertex 0.394112 -4.30895 -0.1 + endloop + endfacet + facet normal -0.383759 -0.923433 0 + outer loop + vertex 0.394112 -4.30895 -0.1 + vertex 1.10471 -4.60426 0 + vertex 0.394112 -4.30895 0 + endloop + endfacet + facet normal -0.383759 -0.923433 -0 + outer loop + vertex 1.10471 -4.60426 0 + vertex 0.394112 -4.30895 -0.1 + vertex 1.10471 -4.60426 -0.1 + endloop + endfacet + facet normal -0.360336 -0.932823 0 + outer loop + vertex 1.10471 -4.60426 -0.1 + vertex 1.81816 -4.87986 0 + vertex 1.10471 -4.60426 0 + endloop + endfacet + facet normal -0.360336 -0.932823 -0 + outer loop + vertex 1.81816 -4.87986 0 + vertex 1.10471 -4.60426 -0.1 + vertex 1.81816 -4.87986 -0.1 + endloop + endfacet + facet normal -0.33638 -0.941726 0 + outer loop + vertex 1.81816 -4.87986 -0.1 + vertex 2.534 -5.13555 0 + vertex 1.81816 -4.87986 0 + endloop + endfacet + facet normal -0.33638 -0.941726 -0 + outer loop + vertex 2.534 -5.13555 0 + vertex 1.81816 -4.87986 -0.1 + vertex 2.534 -5.13555 -0.1 + endloop + endfacet + facet normal -0.311879 -0.950122 0 + outer loop + vertex 2.534 -5.13555 -0.1 + vertex 3.25174 -5.37115 0 + vertex 2.534 -5.13555 0 + endloop + endfacet + facet normal -0.311879 -0.950122 -0 + outer loop + vertex 3.25174 -5.37115 0 + vertex 2.534 -5.13555 -0.1 + vertex 3.25174 -5.37115 -0.1 + endloop + endfacet + facet normal -0.286817 -0.957985 0 + outer loop + vertex 3.25174 -5.37115 -0.1 + vertex 3.97093 -5.58648 0 + vertex 3.25174 -5.37115 0 + endloop + endfacet + facet normal -0.286817 -0.957985 -0 + outer loop + vertex 3.97093 -5.58648 0 + vertex 3.25174 -5.37115 -0.1 + vertex 3.97093 -5.58648 -0.1 + endloop + endfacet + facet normal -0.262141 -0.965029 0 + outer loop + vertex 3.97093 -5.58648 -0.1 + vertex 4.51611 -5.73457 0 + vertex 3.97093 -5.58648 0 + endloop + endfacet + facet normal -0.262141 -0.965029 -0 + outer loop + vertex 4.51611 -5.73457 0 + vertex 3.97093 -5.58648 -0.1 + vertex 4.51611 -5.73457 -0.1 + endloop + endfacet + facet normal -0.230397 -0.973097 0 + outer loop + vertex 4.51611 -5.73457 -0.1 + vertex 4.99906 -5.84891 0 + vertex 4.51611 -5.73457 0 + endloop + endfacet + facet normal -0.230397 -0.973097 -0 + outer loop + vertex 4.99906 -5.84891 0 + vertex 4.51611 -5.73457 -0.1 + vertex 4.99906 -5.84891 -0.1 + endloop + endfacet + facet normal -0.18567 -0.982612 0 + outer loop + vertex 4.99906 -5.84891 -0.1 + vertex 5.4311 -5.93055 0 + vertex 4.99906 -5.84891 0 + endloop + endfacet + facet normal -0.18567 -0.982612 -0 + outer loop + vertex 5.4311 -5.93055 0 + vertex 4.99906 -5.84891 -0.1 + vertex 5.4311 -5.93055 -0.1 + endloop + endfacet + facet normal -0.126289 -0.991994 0 + outer loop + vertex 5.4311 -5.93055 -0.1 + vertex 5.82356 -5.98052 0 + vertex 5.4311 -5.93055 0 + endloop + endfacet + facet normal -0.126289 -0.991994 -0 + outer loop + vertex 5.82356 -5.98052 0 + vertex 5.4311 -5.93055 -0.1 + vertex 5.82356 -5.98052 -0.1 + endloop + endfacet + facet normal -0.0529968 -0.998595 0 + outer loop + vertex 5.82356 -5.98052 -0.1 + vertex 6.18777 -5.99984 0 + vertex 5.82356 -5.98052 0 + endloop + endfacet + facet normal -0.0529968 -0.998595 -0 + outer loop + vertex 6.18777 -5.99984 0 + vertex 5.82356 -5.98052 -0.1 + vertex 6.18777 -5.99984 -0.1 + endloop + endfacet + facet normal 0.0295577 -0.999563 0 + outer loop + vertex 6.18777 -5.99984 -0.1 + vertex 6.53505 -5.98957 0 + vertex 6.18777 -5.99984 0 + endloop + endfacet + facet normal 0.0295577 -0.999563 0 + outer loop + vertex 6.53505 -5.98957 0 + vertex 6.18777 -5.99984 -0.1 + vertex 6.53505 -5.98957 -0.1 + endloop + endfacet + facet normal 0.112922 -0.993604 0 + outer loop + vertex 6.53505 -5.98957 -0.1 + vertex 6.87672 -5.95074 0 + vertex 6.53505 -5.98957 0 + endloop + endfacet + facet normal 0.112922 -0.993604 0 + outer loop + vertex 6.87672 -5.95074 0 + vertex 6.53505 -5.98957 -0.1 + vertex 6.87672 -5.95074 -0.1 + endloop + endfacet + facet normal 0.18762 -0.982242 0 + outer loop + vertex 6.87672 -5.95074 -0.1 + vertex 7.2241 -5.88439 0 + vertex 6.87672 -5.95074 0 + endloop + endfacet + facet normal 0.18762 -0.982242 0 + outer loop + vertex 7.2241 -5.88439 0 + vertex 6.87672 -5.95074 -0.1 + vertex 7.2241 -5.88439 -0.1 + endloop + endfacet + facet normal 0.21982 -0.975541 0 + outer loop + vertex 7.2241 -5.88439 -0.1 + vertex 7.809 -5.75259 0 + vertex 7.2241 -5.88439 0 + endloop + endfacet + facet normal 0.21982 -0.975541 0 + outer loop + vertex 7.809 -5.75259 0 + vertex 7.2241 -5.88439 -0.1 + vertex 7.809 -5.75259 -0.1 + endloop + endfacet + facet normal 0.71334 0.700818 0 + outer loop + vertex 7.809 -5.75259 0 + vertex 7.04277 -4.97268 -0.1 + vertex 7.04277 -4.97268 0 + endloop + endfacet + facet normal 0.71334 0.700818 0 + outer loop + vertex 7.04277 -4.97268 -0.1 + vertex 7.809 -5.75259 0 + vertex 7.809 -5.75259 -0.1 + endloop + endfacet + facet normal 0.735784 0.677216 0 + outer loop + vertex 7.04277 -4.97268 0 + vertex 6.78219 -4.68956 -0.1 + vertex 6.78219 -4.68956 0 + endloop + endfacet + facet normal 0.735784 0.677216 0 + outer loop + vertex 6.78219 -4.68956 -0.1 + vertex 7.04277 -4.97268 0 + vertex 7.04277 -4.97268 -0.1 + endloop + endfacet + facet normal 0.771549 0.636169 0 + outer loop + vertex 6.78219 -4.68956 0 + vertex 6.51759 -4.36865 -0.1 + vertex 6.51759 -4.36865 0 + endloop + endfacet + facet normal 0.771549 0.636169 0 + outer loop + vertex 6.51759 -4.36865 -0.1 + vertex 6.78219 -4.68956 0 + vertex 6.78219 -4.68956 -0.1 + endloop + endfacet + facet normal 0.79877 0.601637 0 + outer loop + vertex 6.51759 -4.36865 0 + vertex 6.2523 -4.01644 -0.1 + vertex 6.2523 -4.01644 0 + endloop + endfacet + facet normal 0.79877 0.601637 0 + outer loop + vertex 6.2523 -4.01644 -0.1 + vertex 6.51759 -4.36865 0 + vertex 6.51759 -4.36865 -0.1 + endloop + endfacet + facet normal 0.820534 0.571597 0 + outer loop + vertex 6.2523 -4.01644 0 + vertex 5.98964 -3.63939 -0.1 + vertex 5.98964 -3.63939 0 + endloop + endfacet + facet normal 0.820534 0.571597 0 + outer loop + vertex 5.98964 -3.63939 -0.1 + vertex 6.2523 -4.01644 0 + vertex 6.2523 -4.01644 -0.1 + endloop + endfacet + facet normal 0.846837 0.531853 0 + outer loop + vertex 5.98964 -3.63939 0 + vertex 5.48552 -2.8367 -0.1 + vertex 5.48552 -2.8367 0 + endloop + endfacet + facet normal 0.846837 0.531853 0 + outer loop + vertex 5.48552 -2.8367 -0.1 + vertex 5.98964 -3.63939 0 + vertex 5.98964 -3.63939 -0.1 + endloop + endfacet + facet normal 0.876057 0.482207 0 + outer loop + vertex 5.48552 -2.8367 0 + vertex 5.03179 -2.01239 -0.1 + vertex 5.03179 -2.01239 0 + endloop + endfacet + facet normal 0.876057 0.482207 0 + outer loop + vertex 5.03179 -2.01239 -0.1 + vertex 5.48552 -2.8367 0 + vertex 5.48552 -2.8367 -0.1 + endloop + endfacet + facet normal 0.903486 0.428618 0 + outer loop + vertex 5.03179 -2.01239 0 + vertex 4.65505 -1.21825 -0.1 + vertex 4.65505 -1.21825 0 + endloop + endfacet + facet normal 0.903486 0.428618 0 + outer loop + vertex 4.65505 -1.21825 -0.1 + vertex 5.03179 -2.01239 0 + vertex 5.03179 -2.01239 -0.1 + endloop + endfacet + facet normal 0.925537 0.378657 0 + outer loop + vertex 4.65505 -1.21825 0 + vertex 4.50386 -0.848697 -0.1 + vertex 4.50386 -0.848697 0 + endloop + endfacet + facet normal 0.925537 0.378657 0 + outer loop + vertex 4.50386 -0.848697 -0.1 + vertex 4.65505 -1.21825 0 + vertex 4.65505 -1.21825 -0.1 + endloop + endfacet + facet normal 0.942067 0.335426 0 + outer loop + vertex 4.50386 -0.848697 0 + vertex 4.38188 -0.506111 -0.1 + vertex 4.38188 -0.506111 0 + endloop + endfacet + facet normal 0.942067 0.335426 0 + outer loop + vertex 4.38188 -0.506111 -0.1 + vertex 4.50386 -0.848697 0 + vertex 4.50386 -0.848697 -0.1 + endloop + endfacet + facet normal 0.960602 0.277927 0 + outer loop + vertex 4.38188 -0.506111 0 + vertex 4.29244 -0.196974 -0.1 + vertex 4.29244 -0.196974 0 + endloop + endfacet + facet normal 0.960602 0.277927 0 + outer loop + vertex 4.29244 -0.196974 -0.1 + vertex 4.38188 -0.506111 0 + vertex 4.38188 -0.506111 -0.1 + endloop + endfacet + facet normal 0.980763 0.1952 0 + outer loop + vertex 4.29244 -0.196974 0 + vertex 4.23886 0.0722368 -0.1 + vertex 4.23886 0.0722368 0 + endloop + endfacet + facet normal 0.980763 0.1952 0 + outer loop + vertex 4.23886 0.0722368 -0.1 + vertex 4.29244 -0.196974 0 + vertex 4.29244 -0.196974 -0.1 + endloop + endfacet + facet normal 0.997919 0.0644811 0 + outer loop + vertex 4.23886 0.0722368 0 + vertex 4.22446 0.295049 -0.1 + vertex 4.22446 0.295049 0 + endloop + endfacet + facet normal 0.997919 0.0644811 0 + outer loop + vertex 4.22446 0.295049 -0.1 + vertex 4.23886 0.0722368 0 + vertex 4.23886 0.0722368 -0.1 + endloop + endfacet + facet normal 0.986595 -0.163189 0 + outer loop + vertex 4.22446 0.295049 0 + vertex 4.25257 0.464986 -0.1 + vertex 4.25257 0.464986 0 + endloop + endfacet + facet normal 0.986595 -0.163189 0 + outer loop + vertex 4.25257 0.464986 -0.1 + vertex 4.22446 0.295049 0 + vertex 4.22446 0.295049 -0.1 + endloop + endfacet + facet normal 0.930706 -0.365767 0 + outer loop + vertex 4.25257 0.464986 0 + vertex 4.33872 0.684191 -0.1 + vertex 4.33872 0.684191 0 + endloop + endfacet + facet normal 0.930706 -0.365767 0 + outer loop + vertex 4.33872 0.684191 -0.1 + vertex 4.25257 0.464986 0 + vertex 4.25257 0.464986 -0.1 + endloop + endfacet + facet normal 0.83908 -0.544009 0 + outer loop + vertex 4.33872 0.684191 0 + vertex 4.3737 0.738144 -0.1 + vertex 4.3737 0.738144 0 + endloop + endfacet + facet normal 0.83908 -0.544009 0 + outer loop + vertex 4.3737 0.738144 -0.1 + vertex 4.33872 0.684191 0 + vertex 4.33872 0.684191 -0.1 + endloop + endfacet + facet normal 0.430226 -0.902721 0 + outer loop + vertex 4.3737 0.738144 -0.1 + vertex 4.40839 0.754677 0 + vertex 4.3737 0.738144 0 + endloop + endfacet + facet normal 0.430226 -0.902721 0 + outer loop + vertex 4.40839 0.754677 0 + vertex 4.3737 0.738144 -0.1 + vertex 4.40839 0.754677 -0.1 + endloop + endfacet + facet normal -0.483736 -0.875214 0 + outer loop + vertex 4.40839 0.754677 -0.1 + vertex 4.44662 0.733548 0 + vertex 4.40839 0.754677 0 + endloop + endfacet + facet normal -0.483736 -0.875214 -0 + outer loop + vertex 4.44662 0.733548 0 + vertex 4.40839 0.754677 -0.1 + vertex 4.44662 0.733548 -0.1 + endloop + endfacet + facet normal -0.791399 -0.6113 0 + outer loop + vertex 4.49221 0.674515 -0.1 + vertex 4.44662 0.733548 0 + vertex 4.44662 0.733548 -0.1 + endloop + endfacet + facet normal -0.791399 -0.6113 0 + outer loop + vertex 4.44662 0.733548 0 + vertex 4.49221 0.674515 -0.1 + vertex 4.49221 0.674515 0 + endloop + endfacet + facet normal -0.875249 -0.483672 0 + outer loop + vertex 4.62083 0.441773 -0.1 + vertex 4.49221 0.674515 0 + vertex 4.49221 0.674515 -0.1 + endloop + endfacet + facet normal -0.875249 -0.483672 0 + outer loop + vertex 4.49221 0.674515 0 + vertex 4.62083 0.441773 -0.1 + vertex 4.62083 0.441773 0 + endloop + endfacet + facet normal -0.8234 -0.567461 0 + outer loop + vertex 4.83246 0.134689 -0.1 + vertex 4.62083 0.441773 0 + vertex 4.62083 0.441773 -0.1 + endloop + endfacet + facet normal -0.8234 -0.567461 0 + outer loop + vertex 4.62083 0.441773 0 + vertex 4.83246 0.134689 -0.1 + vertex 4.83246 0.134689 0 + endloop + endfacet + facet normal -0.783851 -0.620949 0 + outer loop + vertex 5.24358 -0.384283 -0.1 + vertex 4.83246 0.134689 0 + vertex 4.83246 0.134689 -0.1 + endloop + endfacet + facet normal -0.783851 -0.620949 0 + outer loop + vertex 4.83246 0.134689 0 + vertex 5.24358 -0.384283 -0.1 + vertex 5.24358 -0.384283 0 + endloop + endfacet + facet normal -0.766673 -0.642037 0 + outer loop + vertex 5.79491 -1.04264 -0.1 + vertex 5.24358 -0.384283 0 + vertex 5.24358 -0.384283 -0.1 + endloop + endfacet + facet normal -0.766673 -0.642037 0 + outer loop + vertex 5.24358 -0.384283 0 + vertex 5.79491 -1.04264 -0.1 + vertex 5.79491 -1.04264 0 + endloop + endfacet + facet normal -0.753766 -0.657143 0 + outer loop + vertex 6.42718 -1.76788 -0.1 + vertex 5.79491 -1.04264 0 + vertex 5.79491 -1.04264 -0.1 + endloop + endfacet + facet normal -0.753766 -0.657143 0 + outer loop + vertex 5.79491 -1.04264 0 + vertex 6.42718 -1.76788 -0.1 + vertex 6.42718 -1.76788 0 + endloop + endfacet + facet normal -0.728754 -0.684775 0 + outer loop + vertex 7.10115 -2.48513 -0.1 + vertex 6.42718 -1.76788 0 + vertex 6.42718 -1.76788 -0.1 + endloop + endfacet + facet normal -0.728754 -0.684775 0 + outer loop + vertex 6.42718 -1.76788 0 + vertex 7.10115 -2.48513 -0.1 + vertex 7.10115 -2.48513 0 + endloop + endfacet + facet normal -0.682466 -0.730918 0 + outer loop + vertex 7.10115 -2.48513 -0.1 + vertex 7.75455 -3.09522 0 + vertex 7.10115 -2.48513 0 + endloop + endfacet + facet normal -0.682466 -0.730918 -0 + outer loop + vertex 7.75455 -3.09522 0 + vertex 7.10115 -2.48513 -0.1 + vertex 7.75455 -3.09522 -0.1 + endloop + endfacet + facet normal -0.638085 -0.769966 0 + outer loop + vertex 7.75455 -3.09522 -0.1 + vertex 8.0755 -3.36119 0 + vertex 7.75455 -3.09522 0 + endloop + endfacet + facet normal -0.638085 -0.769966 -0 + outer loop + vertex 8.0755 -3.36119 0 + vertex 7.75455 -3.09522 -0.1 + vertex 8.0755 -3.36119 -0.1 + endloop + endfacet + facet normal -0.60305 -0.797703 0 + outer loop + vertex 8.0755 -3.36119 -0.1 + vertex 8.39365 -3.60171 0 + vertex 8.0755 -3.36119 0 + endloop + endfacet + facet normal -0.60305 -0.797703 -0 + outer loop + vertex 8.39365 -3.60171 0 + vertex 8.0755 -3.36119 -0.1 + vertex 8.39365 -3.60171 -0.1 + endloop + endfacet + facet normal -0.563259 -0.826281 0 + outer loop + vertex 8.39365 -3.60171 -0.1 + vertex 8.70978 -3.81721 0 + vertex 8.39365 -3.60171 0 + endloop + endfacet + facet normal -0.563259 -0.826281 -0 + outer loop + vertex 8.70978 -3.81721 0 + vertex 8.39365 -3.60171 -0.1 + vertex 8.70978 -3.81721 -0.1 + endloop + endfacet + facet normal -0.518472 -0.855094 0 + outer loop + vertex 8.70978 -3.81721 -0.1 + vertex 9.02468 -4.00814 0 + vertex 8.70978 -3.81721 0 + endloop + endfacet + facet normal -0.518472 -0.855094 -0 + outer loop + vertex 9.02468 -4.00814 0 + vertex 8.70978 -3.81721 -0.1 + vertex 9.02468 -4.00814 -0.1 + endloop + endfacet + facet normal -0.468624 -0.883398 0 + outer loop + vertex 9.02468 -4.00814 -0.1 + vertex 9.33912 -4.17495 0 + vertex 9.02468 -4.00814 0 + endloop + endfacet + facet normal -0.468624 -0.883398 -0 + outer loop + vertex 9.33912 -4.17495 0 + vertex 9.02468 -4.00814 -0.1 + vertex 9.33912 -4.17495 -0.1 + endloop + endfacet + facet normal -0.413918 -0.910314 0 + outer loop + vertex 9.33912 -4.17495 -0.1 + vertex 9.65389 -4.31807 0 + vertex 9.33912 -4.17495 0 + endloop + endfacet + facet normal -0.413918 -0.910314 -0 + outer loop + vertex 9.65389 -4.31807 0 + vertex 9.33912 -4.17495 -0.1 + vertex 9.65389 -4.31807 -0.1 + endloop + endfacet + facet normal -0.354841 -0.934927 0 + outer loop + vertex 9.65389 -4.31807 -0.1 + vertex 9.96977 -4.43796 0 + vertex 9.65389 -4.31807 0 + endloop + endfacet + facet normal -0.354841 -0.934927 -0 + outer loop + vertex 9.96977 -4.43796 0 + vertex 9.65389 -4.31807 -0.1 + vertex 9.96977 -4.43796 -0.1 + endloop + endfacet + facet normal -0.292213 -0.956353 0 + outer loop + vertex 9.96977 -4.43796 -0.1 + vertex 10.2875 -4.53506 0 + vertex 9.96977 -4.43796 0 + endloop + endfacet + facet normal -0.292213 -0.956353 -0 + outer loop + vertex 10.2875 -4.53506 0 + vertex 9.96977 -4.43796 -0.1 + vertex 10.2875 -4.53506 -0.1 + endloop + endfacet + facet normal -0.227161 -0.973857 0 + outer loop + vertex 10.2875 -4.53506 -0.1 + vertex 10.608 -4.6098 0 + vertex 10.2875 -4.53506 0 + endloop + endfacet + facet normal -0.227161 -0.973857 -0 + outer loop + vertex 10.608 -4.6098 0 + vertex 10.2875 -4.53506 -0.1 + vertex 10.608 -4.6098 -0.1 + endloop + endfacet + facet normal -0.161011 -0.986953 0 + outer loop + vertex 10.608 -4.6098 -0.1 + vertex 10.9319 -4.66264 0 + vertex 10.608 -4.6098 0 + endloop + endfacet + facet normal -0.161011 -0.986953 -0 + outer loop + vertex 10.9319 -4.66264 0 + vertex 10.608 -4.6098 -0.1 + vertex 10.9319 -4.66264 -0.1 + endloop + endfacet + facet normal -0.0951962 -0.995459 0 + outer loop + vertex 10.9319 -4.66264 -0.1 + vertex 11.26 -4.69402 0 + vertex 10.9319 -4.66264 0 + endloop + endfacet + facet normal -0.0951962 -0.995459 -0 + outer loop + vertex 11.26 -4.69402 0 + vertex 10.9319 -4.66264 -0.1 + vertex 11.26 -4.69402 -0.1 + endloop + endfacet + facet normal -0.0310839 -0.999517 0 + outer loop + vertex 11.26 -4.69402 -0.1 + vertex 11.5931 -4.70438 0 + vertex 11.26 -4.69402 0 + endloop + endfacet + facet normal -0.0310839 -0.999517 -0 + outer loop + vertex 11.5931 -4.70438 0 + vertex 11.26 -4.69402 -0.1 + vertex 11.5931 -4.70438 -0.1 + endloop + endfacet + facet normal 0.0736121 -0.997287 0 + outer loop + vertex 11.5931 -4.70438 -0.1 + vertex 12.006 -4.67391 0 + vertex 11.5931 -4.70438 0 + endloop + endfacet + facet normal 0.0736121 -0.997287 0 + outer loop + vertex 12.006 -4.67391 0 + vertex 11.5931 -4.70438 -0.1 + vertex 12.006 -4.67391 -0.1 + endloop + endfacet + facet normal 0.209942 -0.977714 0 + outer loop + vertex 12.006 -4.67391 -0.1 + vertex 12.4149 -4.5861 0 + vertex 12.006 -4.67391 0 + endloop + endfacet + facet normal 0.209942 -0.977714 0 + outer loop + vertex 12.4149 -4.5861 0 + vertex 12.006 -4.67391 -0.1 + vertex 12.4149 -4.5861 -0.1 + endloop + endfacet + facet normal 0.332988 -0.942931 0 + outer loop + vertex 12.4149 -4.5861 -0.1 + vertex 12.8106 -4.44636 0 + vertex 12.4149 -4.5861 0 + endloop + endfacet + facet normal 0.332988 -0.942931 0 + outer loop + vertex 12.8106 -4.44636 0 + vertex 12.4149 -4.5861 -0.1 + vertex 12.8106 -4.44636 -0.1 + endloop + endfacet + facet normal 0.44663 -0.894719 0 + outer loop + vertex 12.8106 -4.44636 -0.1 + vertex 13.1837 -4.26011 0 + vertex 12.8106 -4.44636 0 + endloop + endfacet + facet normal 0.44663 -0.894719 0 + outer loop + vertex 13.1837 -4.26011 0 + vertex 12.8106 -4.44636 -0.1 + vertex 13.1837 -4.26011 -0.1 + endloop + endfacet + facet normal 0.554537 -0.832159 0 + outer loop + vertex 13.1837 -4.26011 -0.1 + vertex 13.5249 -4.03275 0 + vertex 13.1837 -4.26011 0 + endloop + endfacet + facet normal 0.554537 -0.832159 0 + outer loop + vertex 13.5249 -4.03275 0 + vertex 13.1837 -4.26011 -0.1 + vertex 13.5249 -4.03275 -0.1 + endloop + endfacet + facet normal 0.65941 -0.751784 0 + outer loop + vertex 13.5249 -4.03275 -0.1 + vertex 13.8248 -3.7697 0 + vertex 13.5249 -4.03275 0 + endloop + endfacet + facet normal 0.65941 -0.751784 0 + outer loop + vertex 13.8248 -3.7697 0 + vertex 13.5249 -4.03275 -0.1 + vertex 13.8248 -3.7697 -0.1 + endloop + endfacet + facet normal 0.762012 -0.647563 0 + outer loop + vertex 13.8248 -3.7697 0 + vertex 14.0741 -3.47638 -0.1 + vertex 14.0741 -3.47638 0 + endloop + endfacet + facet normal 0.762012 -0.647563 0 + outer loop + vertex 14.0741 -3.47638 -0.1 + vertex 13.8248 -3.7697 0 + vertex 13.8248 -3.7697 -0.1 + endloop + endfacet + facet normal 0.835702 -0.549183 0 + outer loop + vertex 14.0741 -3.47638 0 + vertex 14.1768 -3.32005 -0.1 + vertex 14.1768 -3.32005 0 + endloop + endfacet + facet normal 0.835702 -0.549183 0 + outer loop + vertex 14.1768 -3.32005 -0.1 + vertex 14.0741 -3.47638 0 + vertex 14.0741 -3.47638 -0.1 + endloop + endfacet + facet normal 0.88181 -0.471605 0 + outer loop + vertex 14.1768 -3.32005 0 + vertex 14.2634 -3.15818 -0.1 + vertex 14.2634 -3.15818 0 + endloop + endfacet + facet normal 0.88181 -0.471605 0 + outer loop + vertex 14.2634 -3.15818 -0.1 + vertex 14.1768 -3.32005 0 + vertex 14.1768 -3.32005 -0.1 + endloop + endfacet + facet normal 0.950814 -0.309764 0 + outer loop + vertex 14.2634 -3.15818 0 + vertex 14.3256 -2.96711 -0.1 + vertex 14.3256 -2.96711 0 + endloop + endfacet + facet normal 0.950814 -0.309764 0 + outer loop + vertex 14.3256 -2.96711 -0.1 + vertex 14.2634 -3.15818 0 + vertex 14.2634 -3.15818 -0.1 + endloop + endfacet + facet normal 0.996178 -0.0873495 0 + outer loop + vertex 14.3256 -2.96711 0 + vertex 14.3448 -2.7489 -0.1 + vertex 14.3448 -2.7489 0 + endloop + endfacet + facet normal 0.996178 -0.0873495 0 + outer loop + vertex 14.3448 -2.7489 -0.1 + vertex 14.3256 -2.96711 0 + vertex 14.3256 -2.96711 -0.1 + endloop + endfacet + facet normal 0.995552 0.0942095 0 + outer loop + vertex 14.3448 -2.7489 0 + vertex 14.3217 -2.5049 -0.1 + vertex 14.3217 -2.5049 0 + endloop + endfacet + facet normal 0.995552 0.0942095 0 + outer loop + vertex 14.3217 -2.5049 -0.1 + vertex 14.3448 -2.7489 0 + vertex 14.3448 -2.7489 -0.1 + endloop + endfacet + facet normal 0.972391 0.233358 0 + outer loop + vertex 14.3217 -2.5049 0 + vertex 14.2572 -2.23644 -0.1 + vertex 14.2572 -2.23644 0 + endloop + endfacet + facet normal 0.972391 0.233358 0 + outer loop + vertex 14.2572 -2.23644 -0.1 + vertex 14.3217 -2.5049 0 + vertex 14.3217 -2.5049 -0.1 + endloop + endfacet + facet normal 0.940985 0.338449 0 + outer loop + vertex 14.2572 -2.23644 0 + vertex 14.1524 -1.94488 -0.1 + vertex 14.1524 -1.94488 0 + endloop + endfacet + facet normal 0.940985 0.338449 0 + outer loop + vertex 14.1524 -1.94488 -0.1 + vertex 14.2572 -2.23644 0 + vertex 14.2572 -2.23644 -0.1 + endloop + endfacet + facet normal 0.908169 0.418604 0 + outer loop + vertex 14.1524 -1.94488 0 + vertex 14.008 -1.63155 -0.1 + vertex 14.008 -1.63155 0 + endloop + endfacet + facet normal 0.908169 0.418604 0 + outer loop + vertex 14.008 -1.63155 -0.1 + vertex 14.1524 -1.94488 0 + vertex 14.1524 -1.94488 -0.1 + endloop + endfacet + facet normal 0.876739 0.480967 0 + outer loop + vertex 14.008 -1.63155 0 + vertex 13.8249 -1.29782 -0.1 + vertex 13.8249 -1.29782 0 + endloop + endfacet + facet normal 0.876739 0.480967 0 + outer loop + vertex 13.8249 -1.29782 -0.1 + vertex 14.008 -1.63155 0 + vertex 14.008 -1.63155 -0.1 + endloop + endfacet + facet normal 0.847618 0.530607 0 + outer loop + vertex 13.8249 -1.29782 0 + vertex 13.604 -0.945011 -0.1 + vertex 13.604 -0.945011 0 + endloop + endfacet + facet normal 0.847618 0.530607 0 + outer loop + vertex 13.604 -0.945011 -0.1 + vertex 13.8249 -1.29782 0 + vertex 13.8249 -1.29782 -0.1 + endloop + endfacet + facet normal 0.820927 0.571033 0 + outer loop + vertex 13.604 -0.945011 0 + vertex 13.3463 -0.574481 -0.1 + vertex 13.3463 -0.574481 0 + endloop + endfacet + facet normal 0.820927 0.571033 0 + outer loop + vertex 13.3463 -0.574481 -0.1 + vertex 13.604 -0.945011 0 + vertex 13.604 -0.945011 -0.1 + endloop + endfacet + facet normal 0.796478 0.604667 0 + outer loop + vertex 13.3463 -0.574481 0 + vertex 13.0525 -0.187573 -0.1 + vertex 13.0525 -0.187573 0 + endloop + endfacet + facet normal 0.796478 0.604667 0 + outer loop + vertex 13.0525 -0.187573 -0.1 + vertex 13.3463 -0.574481 0 + vertex 13.3463 -0.574481 -0.1 + endloop + endfacet + facet normal 0.773983 0.633206 0 + outer loop + vertex 13.0525 -0.187573 0 + vertex 12.7237 0.214368 -0.1 + vertex 12.7237 0.214368 0 + endloop + endfacet + facet normal 0.773983 0.633206 0 + outer loop + vertex 12.7237 0.214368 -0.1 + vertex 13.0525 -0.187573 0 + vertex 13.0525 -0.187573 -0.1 + endloop + endfacet + facet normal 0.753142 0.657858 0 + outer loop + vertex 12.7237 0.214368 0 + vertex 12.3607 0.629996 -0.1 + vertex 12.3607 0.629996 0 + endloop + endfacet + facet normal 0.753142 0.657858 0 + outer loop + vertex 12.3607 0.629996 -0.1 + vertex 12.7237 0.214368 0 + vertex 12.7237 0.214368 -0.1 + endloop + endfacet + facet normal 0.724343 0.68944 0 + outer loop + vertex 12.3607 0.629996 0 + vertex 11.5355 1.49693 -0.1 + vertex 11.5355 1.49693 0 + endloop + endfacet + facet normal 0.724343 0.68944 0 + outer loop + vertex 11.5355 1.49693 -0.1 + vertex 12.3607 0.629996 0 + vertex 12.3607 0.629996 -0.1 + endloop + endfacet + facet normal 0.689461 0.724323 -0 + outer loop + vertex 11.5355 1.49693 -0.1 + vertex 10.5842 2.40247 0 + vertex 11.5355 1.49693 0 + endloop + endfacet + facet normal 0.689461 0.724323 0 + outer loop + vertex 10.5842 2.40247 0 + vertex 11.5355 1.49693 -0.1 + vertex 10.5842 2.40247 -0.1 + endloop + endfacet + facet normal 0.659589 0.751627 -0 + outer loop + vertex 10.5842 2.40247 -0.1 + vertex 9.61741 3.25086 0 + vertex 10.5842 2.40247 0 + endloop + endfacet + facet normal 0.659589 0.751627 0 + outer loop + vertex 9.61741 3.25086 0 + vertex 10.5842 2.40247 -0.1 + vertex 9.61741 3.25086 -0.1 + endloop + endfacet + facet normal 0.626395 0.779506 -0 + outer loop + vertex 9.61741 3.25086 -0.1 + vertex 9.29624 3.50894 0 + vertex 9.61741 3.25086 0 + endloop + endfacet + facet normal 0.626395 0.779506 0 + outer loop + vertex 9.29624 3.50894 0 + vertex 9.61741 3.25086 -0.1 + vertex 9.29624 3.50894 -0.1 + endloop + endfacet + facet normal 0.533935 0.845526 -0 + outer loop + vertex 9.29624 3.50894 -0.1 + vertex 9.14614 3.60373 0 + vertex 9.29624 3.50894 0 + endloop + endfacet + facet normal 0.533935 0.845526 0 + outer loop + vertex 9.14614 3.60373 0 + vertex 9.29624 3.50894 -0.1 + vertex 9.14614 3.60373 -0.1 + endloop + endfacet + facet normal 0.419972 0.907537 -0 + outer loop + vertex 9.14614 3.60373 -0.1 + vertex 9.03464 3.65533 0 + vertex 9.14614 3.60373 0 + endloop + endfacet + facet normal 0.419972 0.907537 0 + outer loop + vertex 9.03464 3.65533 0 + vertex 9.14614 3.60373 -0.1 + vertex 9.03464 3.65533 -0.1 + endloop + endfacet + facet normal 0.545127 0.838353 -0 + outer loop + vertex 9.03464 3.65533 -0.1 + vertex 8.81858 3.79581 0 + vertex 9.03464 3.65533 0 + endloop + endfacet + facet normal 0.545127 0.838353 0 + outer loop + vertex 8.81858 3.79581 0 + vertex 9.03464 3.65533 -0.1 + vertex 8.81858 3.79581 -0.1 + endloop + endfacet + facet normal 0.596587 0.802549 -0 + outer loop + vertex 8.81858 3.79581 -0.1 + vertex 8.19732 4.25764 0 + vertex 8.81858 3.79581 0 + endloop + endfacet + facet normal 0.596587 0.802549 0 + outer loop + vertex 8.19732 4.25764 0 + vertex 8.81858 3.79581 -0.1 + vertex 8.19732 4.25764 -0.1 + endloop + endfacet + facet normal 0.576403 0.817166 -0 + outer loop + vertex 8.19732 4.25764 -0.1 + vertex 8.00725 4.39171 0 + vertex 8.19732 4.25764 0 + endloop + endfacet + facet normal 0.576403 0.817166 0 + outer loop + vertex 8.00725 4.39171 0 + vertex 8.19732 4.25764 -0.1 + vertex 8.00725 4.39171 -0.1 + endloop + endfacet + facet normal 0.52168 0.853141 -0 + outer loop + vertex 8.00725 4.39171 -0.1 + vertex 7.75154 4.54807 0 + vertex 8.00725 4.39171 0 + endloop + endfacet + facet normal 0.52168 0.853141 0 + outer loop + vertex 7.75154 4.54807 0 + vertex 8.00725 4.39171 -0.1 + vertex 7.75154 4.54807 -0.1 + endloop + endfacet + facet normal 0.475339 0.879803 -0 + outer loop + vertex 7.75154 4.54807 -0.1 + vertex 7.07462 4.9138 0 + vertex 7.75154 4.54807 0 + endloop + endfacet + facet normal 0.475339 0.879803 0 + outer loop + vertex 7.07462 4.9138 0 + vertex 7.75154 4.54807 -0.1 + vertex 7.07462 4.9138 -0.1 + endloop + endfacet + facet normal 0.439259 0.89836 -0 + outer loop + vertex 7.07462 4.9138 -0.1 + vertex 6.22936 5.32709 0 + vertex 7.07462 4.9138 0 + endloop + endfacet + facet normal 0.439259 0.89836 0 + outer loop + vertex 6.22936 5.32709 0 + vertex 7.07462 4.9138 -0.1 + vertex 6.22936 5.32709 -0.1 + endloop + endfacet + facet normal 0.414563 0.910021 -0 + outer loop + vertex 6.22936 5.32709 -0.1 + vertex 5.27855 5.76024 0 + vertex 6.22936 5.32709 0 + endloop + endfacet + facet normal 0.414563 0.910021 0 + outer loop + vertex 5.27855 5.76024 0 + vertex 6.22936 5.32709 -0.1 + vertex 5.27855 5.76024 -0.1 + endloop + endfacet + facet normal 0.393495 0.919327 -0 + outer loop + vertex 5.27855 5.76024 -0.1 + vertex 4.285 6.1855 0 + vertex 5.27855 5.76024 0 + endloop + endfacet + facet normal 0.393495 0.919327 0 + outer loop + vertex 4.285 6.1855 0 + vertex 5.27855 5.76024 -0.1 + vertex 4.285 6.1855 -0.1 + endloop + endfacet + facet normal 0.371607 0.92839 -0 + outer loop + vertex 4.285 6.1855 -0.1 + vertex 3.31149 6.57517 0 + vertex 4.285 6.1855 0 + endloop + endfacet + facet normal 0.371607 0.92839 0 + outer loop + vertex 3.31149 6.57517 0 + vertex 4.285 6.1855 -0.1 + vertex 3.31149 6.57517 -0.1 + endloop + endfacet + facet normal 0.344035 0.938957 -0 + outer loop + vertex 3.31149 6.57517 -0.1 + vertex 2.42084 6.9015 0 + vertex 3.31149 6.57517 0 + endloop + endfacet + facet normal 0.344035 0.938957 0 + outer loop + vertex 2.42084 6.9015 0 + vertex 3.31149 6.57517 -0.1 + vertex 2.42084 6.9015 -0.1 + endloop + endfacet + facet normal 0.301156 0.953575 -0 + outer loop + vertex 2.42084 6.9015 -0.1 + vertex 1.67583 7.13679 0 + vertex 2.42084 6.9015 0 + endloop + endfacet + facet normal 0.301156 0.953575 0 + outer loop + vertex 1.67583 7.13679 0 + vertex 2.42084 6.9015 -0.1 + vertex 1.67583 7.13679 -0.1 + endloop + endfacet + facet normal 0.313822 0.949482 -0 + outer loop + vertex 1.67583 7.13679 -0.1 + vertex 1.30727 7.25861 0 + vertex 1.67583 7.13679 0 + endloop + endfacet + facet normal 0.313822 0.949482 0 + outer loop + vertex 1.30727 7.25861 0 + vertex 1.67583 7.13679 -0.1 + vertex 1.30727 7.25861 -0.1 + endloop + endfacet + facet normal 0.372489 0.928036 -0 + outer loop + vertex 1.30727 7.25861 -0.1 + vertex 0.855811 7.43981 0 + vertex 1.30727 7.25861 0 + endloop + endfacet + facet normal 0.372489 0.928036 0 + outer loop + vertex 0.855811 7.43981 0 + vertex 1.30727 7.25861 -0.1 + vertex 0.855811 7.43981 -0.1 + endloop + endfacet + facet normal 0.420776 0.907164 -0 + outer loop + vertex 0.855811 7.43981 -0.1 + vertex -0.23691 7.94665 0 + vertex 0.855811 7.43981 0 + endloop + endfacet + facet normal 0.420776 0.907164 0 + outer loop + vertex -0.23691 7.94665 0 + vertex 0.855811 7.43981 -0.1 + vertex -0.23691 7.94665 -0.1 + endloop + endfacet + facet normal 0.458228 0.888835 -0 + outer loop + vertex -0.23691 7.94665 -0.1 + vertex -1.48458 8.58988 0 + vertex -0.23691 7.94665 0 + endloop + endfacet + facet normal 0.458228 0.888835 0 + outer loop + vertex -1.48458 8.58988 0 + vertex -0.23691 7.94665 -0.1 + vertex -1.48458 8.58988 -0.1 + endloop + endfacet + facet normal 0.484776 0.874638 -0 + outer loop + vertex -1.48458 8.58988 -0.1 + vertex -2.76946 9.30203 0 + vertex -1.48458 8.58988 0 + endloop + endfacet + facet normal 0.484776 0.874638 0 + outer loop + vertex -2.76946 9.30203 0 + vertex -1.48458 8.58988 -0.1 + vertex -2.76946 9.30203 -0.1 + endloop + endfacet + facet normal 0.509783 0.860303 -0 + outer loop + vertex -2.76946 9.30203 -0.1 + vertex -3.97378 10.0157 0 + vertex -2.76946 9.30203 0 + endloop + endfacet + facet normal 0.509783 0.860303 0 + outer loop + vertex -3.97378 10.0157 0 + vertex -2.76946 9.30203 -0.1 + vertex -3.97378 10.0157 -0.1 + endloop + endfacet + facet normal 0.541316 0.840819 -0 + outer loop + vertex -3.97378 10.0157 -0.1 + vertex -4.9798 10.6633 0 + vertex -3.97378 10.0157 0 + endloop + endfacet + facet normal 0.541316 0.840819 0 + outer loop + vertex -4.9798 10.6633 0 + vertex -3.97378 10.0157 -0.1 + vertex -4.9798 10.6633 -0.1 + endloop + endfacet + facet normal 0.578658 0.81557 -0 + outer loop + vertex -4.9798 10.6633 -0.1 + vertex -5.37165 10.9414 0 + vertex -4.9798 10.6633 0 + endloop + endfacet + facet normal 0.578658 0.81557 0 + outer loop + vertex -5.37165 10.9414 0 + vertex -4.9798 10.6633 -0.1 + vertex -5.37165 10.9414 -0.1 + endloop + endfacet + facet normal 0.621078 0.783749 -0 + outer loop + vertex -5.37165 10.9414 -0.1 + vertex -5.66976 11.1776 0 + vertex -5.37165 10.9414 0 + endloop + endfacet + facet normal 0.621078 0.783749 0 + outer loop + vertex -5.66976 11.1776 0 + vertex -5.37165 10.9414 -0.1 + vertex -5.66976 11.1776 -0.1 + endloop + endfacet + facet normal 0.700224 0.713923 -0 + outer loop + vertex -5.66976 11.1776 -0.1 + vertex -5.85942 11.3636 0 + vertex -5.66976 11.1776 0 + endloop + endfacet + facet normal 0.700224 0.713923 0 + outer loop + vertex -5.85942 11.3636 0 + vertex -5.66976 11.1776 -0.1 + vertex -5.85942 11.3636 -0.1 + endloop + endfacet + facet normal 0.822029 0.569446 0 + outer loop + vertex -5.85942 11.3636 0 + vertex -5.90899 11.4352 -0.1 + vertex -5.90899 11.4352 0 + endloop + endfacet + facet normal 0.822029 0.569446 0 + outer loop + vertex -5.90899 11.4352 -0.1 + vertex -5.85942 11.3636 0 + vertex -5.85942 11.3636 -0.1 + endloop + endfacet + facet normal 0.95697 0.290185 0 + outer loop + vertex -5.90899 11.4352 0 + vertex -5.92592 11.491 -0.1 + vertex -5.92592 11.491 0 + endloop + endfacet + facet normal 0.95697 0.290185 0 + outer loop + vertex -5.92592 11.491 -0.1 + vertex -5.90899 11.4352 0 + vertex -5.90899 11.4352 -0.1 + endloop + endfacet + facet normal 0.964129 -0.265435 0 + outer loop + vertex -5.92592 11.491 0 + vertex -5.91161 11.5429 -0.1 + vertex -5.91161 11.5429 0 + endloop + endfacet + facet normal 0.964129 -0.265435 0 + outer loop + vertex -5.91161 11.5429 -0.1 + vertex -5.92592 11.491 0 + vertex -5.92592 11.491 -0.1 + endloop + endfacet + facet normal 0.717664 -0.69639 0 + outer loop + vertex -5.91161 11.5429 0 + vertex -5.8692 11.5867 -0.1 + vertex -5.8692 11.5867 0 + endloop + endfacet + facet normal 0.717664 -0.69639 0 + outer loop + vertex -5.8692 11.5867 -0.1 + vertex -5.91161 11.5429 0 + vertex -5.91161 11.5429 -0.1 + endloop + endfacet + facet normal 0.453397 -0.891309 0 + outer loop + vertex -5.8692 11.5867 -0.1 + vertex -5.79943 11.6221 0 + vertex -5.8692 11.5867 0 + endloop + endfacet + facet normal 0.453397 -0.891309 0 + outer loop + vertex -5.79943 11.6221 0 + vertex -5.8692 11.5867 -0.1 + vertex -5.79943 11.6221 -0.1 + endloop + endfacet + facet normal 0.272626 -0.96212 0 + outer loop + vertex -5.79943 11.6221 -0.1 + vertex -5.70304 11.6495 0 + vertex -5.79943 11.6221 0 + endloop + endfacet + facet normal 0.272626 -0.96212 0 + outer loop + vertex -5.70304 11.6495 0 + vertex -5.79943 11.6221 -0.1 + vertex -5.70304 11.6495 -0.1 + endloop + endfacet + facet normal 0.111359 -0.99378 0 + outer loop + vertex -5.70304 11.6495 -0.1 + vertex -5.4334 11.6797 0 + vertex -5.70304 11.6495 0 + endloop + endfacet + facet normal 0.111359 -0.99378 0 + outer loop + vertex -5.4334 11.6797 0 + vertex -5.70304 11.6495 -0.1 + vertex -5.4334 11.6797 -0.1 + endloop + endfacet + facet normal -0.00575054 -0.999983 0 + outer loop + vertex -5.4334 11.6797 -0.1 + vertex -5.06624 11.6776 0 + vertex -5.4334 11.6797 0 + endloop + endfacet + facet normal -0.00575054 -0.999983 -0 + outer loop + vertex -5.06624 11.6776 0 + vertex -5.4334 11.6797 -0.1 + vertex -5.06624 11.6776 -0.1 + endloop + endfacet + facet normal -0.0742941 -0.997236 0 + outer loop + vertex -5.06624 11.6776 -0.1 + vertex -4.60751 11.6434 0 + vertex -5.06624 11.6776 0 + endloop + endfacet + facet normal -0.0742941 -0.997236 -0 + outer loop + vertex -4.60751 11.6434 0 + vertex -5.06624 11.6776 -0.1 + vertex -4.60751 11.6434 -0.1 + endloop + endfacet + facet normal -0.120331 -0.992734 0 + outer loop + vertex -4.60751 11.6434 -0.1 + vertex -4.06319 11.5774 0 + vertex -4.60751 11.6434 0 + endloop + endfacet + facet normal -0.120331 -0.992734 -0 + outer loop + vertex -4.06319 11.5774 0 + vertex -4.60751 11.6434 -0.1 + vertex -4.06319 11.5774 -0.1 + endloop + endfacet + facet normal -0.154416 -0.988006 0 + outer loop + vertex -4.06319 11.5774 -0.1 + vertex -3.43924 11.4799 0 + vertex -4.06319 11.5774 0 + endloop + endfacet + facet normal -0.154416 -0.988006 -0 + outer loop + vertex -3.43924 11.4799 0 + vertex -4.06319 11.5774 -0.1 + vertex -3.43924 11.4799 -0.1 + endloop + endfacet + facet normal -0.181553 -0.983381 0 + outer loop + vertex -3.43924 11.4799 -0.1 + vertex -2.74162 11.3511 0 + vertex -3.43924 11.4799 0 + endloop + endfacet + facet normal -0.181553 -0.983381 -0 + outer loop + vertex -2.74162 11.3511 0 + vertex -3.43924 11.4799 -0.1 + vertex -2.74162 11.3511 -0.1 + endloop + endfacet + facet normal -0.168602 -0.985684 0 + outer loop + vertex -2.74162 11.3511 -0.1 + vertex -2.06279 11.235 0 + vertex -2.74162 11.3511 0 + endloop + endfacet + facet normal -0.168602 -0.985684 -0 + outer loop + vertex -2.06279 11.235 0 + vertex -2.74162 11.3511 -0.1 + vertex -2.06279 11.235 -0.1 + endloop + endfacet + facet normal -0.106074 -0.994358 0 + outer loop + vertex -2.06279 11.235 -0.1 + vertex -1.45038 11.1697 0 + vertex -2.06279 11.235 0 + endloop + endfacet + facet normal -0.106074 -0.994358 -0 + outer loop + vertex -1.45038 11.1697 0 + vertex -2.06279 11.235 -0.1 + vertex -1.45038 11.1697 -0.1 + endloop + endfacet + facet normal -0.0235022 -0.999724 0 + outer loop + vertex -1.45038 11.1697 -0.1 + vertex -0.893798 11.1566 0 + vertex -1.45038 11.1697 0 + endloop + endfacet + facet normal -0.0235022 -0.999724 -0 + outer loop + vertex -0.893798 11.1566 0 + vertex -1.45038 11.1697 -0.1 + vertex -0.893798 11.1566 -0.1 + endloop + endfacet + facet normal 0.0792039 -0.996858 0 + outer loop + vertex -0.893798 11.1566 -0.1 + vertex -0.382462 11.1972 0 + vertex -0.893798 11.1566 0 + endloop + endfacet + facet normal 0.0792039 -0.996858 0 + outer loop + vertex -0.382462 11.1972 0 + vertex -0.893798 11.1566 -0.1 + vertex -0.382462 11.1972 -0.1 + endloop + endfacet + facet normal 0.197027 -0.980398 0 + outer loop + vertex -0.382462 11.1972 -0.1 + vertex 0.0942225 11.293 0 + vertex -0.382462 11.1972 0 + endloop + endfacet + facet normal 0.197027 -0.980398 0 + outer loop + vertex 0.0942225 11.293 0 + vertex -0.382462 11.1972 -0.1 + vertex 0.0942225 11.293 -0.1 + endloop + endfacet + facet normal 0.319159 -0.947701 0 + outer loop + vertex 0.0942225 11.293 -0.1 + vertex 0.546849 11.4454 0 + vertex 0.0942225 11.293 0 + endloop + endfacet + facet normal 0.319159 -0.947701 0 + outer loop + vertex 0.546849 11.4454 0 + vertex 0.0942225 11.293 -0.1 + vertex 0.546849 11.4454 -0.1 + endloop + endfacet + facet normal 0.432288 -0.901736 0 + outer loop + vertex 0.546849 11.4454 -0.1 + vertex 0.986004 11.656 0 + vertex 0.546849 11.4454 0 + endloop + endfacet + facet normal 0.432288 -0.901736 0 + outer loop + vertex 0.986004 11.656 0 + vertex 0.546849 11.4454 -0.1 + vertex 0.986004 11.656 -0.1 + endloop + endfacet + facet normal 0.52637 -0.850255 0 + outer loop + vertex 0.986004 11.656 -0.1 + vertex 1.42228 11.926 0 + vertex 0.986004 11.656 0 + endloop + endfacet + facet normal 0.52637 -0.850255 0 + outer loop + vertex 1.42228 11.926 0 + vertex 0.986004 11.656 -0.1 + vertex 1.42228 11.926 -0.1 + endloop + endfacet + facet normal 0.604613 -0.796519 0 + outer loop + vertex 1.42228 11.926 -0.1 + vertex 1.72214 12.1537 0 + vertex 1.42228 11.926 0 + endloop + endfacet + facet normal 0.604613 -0.796519 0 + outer loop + vertex 1.72214 12.1537 0 + vertex 1.42228 11.926 -0.1 + vertex 1.72214 12.1537 -0.1 + endloop + endfacet + facet normal 0.710535 -0.703661 0 + outer loop + vertex 1.72214 12.1537 0 + vertex 1.81906 12.2515 -0.1 + vertex 1.81906 12.2515 0 + endloop + endfacet + facet normal 0.710535 -0.703661 0 + outer loop + vertex 1.81906 12.2515 -0.1 + vertex 1.72214 12.1537 0 + vertex 1.72214 12.1537 -0.1 + endloop + endfacet + facet normal 0.820717 -0.571334 0 + outer loop + vertex 1.81906 12.2515 0 + vertex 1.88346 12.344 -0.1 + vertex 1.88346 12.344 0 + endloop + endfacet + facet normal 0.820717 -0.571334 0 + outer loop + vertex 1.88346 12.344 -0.1 + vertex 1.81906 12.2515 0 + vertex 1.81906 12.2515 -0.1 + endloop + endfacet + facet normal 0.936854 -0.349721 0 + outer loop + vertex 1.88346 12.344 0 + vertex 1.91748 12.4352 -0.1 + vertex 1.91748 12.4352 0 + endloop + endfacet + facet normal 0.936854 -0.349721 0 + outer loop + vertex 1.91748 12.4352 -0.1 + vertex 1.88346 12.344 0 + vertex 1.88346 12.344 -0.1 + endloop + endfacet + facet normal 0.998121 -0.0612747 0 + outer loop + vertex 1.91748 12.4352 0 + vertex 1.92323 12.5289 -0.1 + vertex 1.92323 12.5289 0 + endloop + endfacet + facet normal 0.998121 -0.0612747 0 + outer loop + vertex 1.92323 12.5289 -0.1 + vertex 1.91748 12.4352 0 + vertex 1.91748 12.4352 -0.1 + endloop + endfacet + facet normal 0.979928 0.199352 0 + outer loop + vertex 1.92323 12.5289 0 + vertex 1.90284 12.6291 -0.1 + vertex 1.90284 12.6291 0 + endloop + endfacet + facet normal 0.979928 0.199352 0 + outer loop + vertex 1.90284 12.6291 -0.1 + vertex 1.92323 12.5289 0 + vertex 1.92323 12.5289 -0.1 + endloop + endfacet + facet normal 0.928124 0.372271 0 + outer loop + vertex 1.90284 12.6291 0 + vertex 1.85843 12.7398 -0.1 + vertex 1.85843 12.7398 0 + endloop + endfacet + facet normal 0.928124 0.372271 0 + outer loop + vertex 1.85843 12.7398 -0.1 + vertex 1.90284 12.6291 0 + vertex 1.90284 12.6291 -0.1 + endloop + endfacet + facet normal 0.849902 0.526941 0 + outer loop + vertex 1.85843 12.7398 0 + vertex 1.7147 12.9716 -0.1 + vertex 1.7147 12.9716 0 + endloop + endfacet + facet normal 0.849902 0.526941 0 + outer loop + vertex 1.7147 12.9716 -0.1 + vertex 1.85843 12.7398 0 + vertex 1.85843 12.7398 -0.1 + endloop + endfacet + facet normal 0.728356 0.685198 0 + outer loop + vertex 1.7147 12.9716 0 + vertex 1.51175 13.1874 -0.1 + vertex 1.51175 13.1874 0 + endloop + endfacet + facet normal 0.728356 0.685198 0 + outer loop + vertex 1.51175 13.1874 -0.1 + vertex 1.7147 12.9716 0 + vertex 1.7147 12.9716 -0.1 + endloop + endfacet + facet normal 0.606497 0.795086 -0 + outer loop + vertex 1.51175 13.1874 -0.1 + vertex 1.25015 13.3869 0 + vertex 1.51175 13.1874 0 + endloop + endfacet + facet normal 0.606497 0.795086 0 + outer loop + vertex 1.25015 13.3869 0 + vertex 1.51175 13.1874 -0.1 + vertex 1.25015 13.3869 -0.1 + endloop + endfacet + facet normal 0.497341 0.867555 -0 + outer loop + vertex 1.25015 13.3869 -0.1 + vertex 0.930489 13.5702 0 + vertex 1.25015 13.3869 0 + endloop + endfacet + facet normal 0.497341 0.867555 0 + outer loop + vertex 0.930489 13.5702 0 + vertex 1.25015 13.3869 -0.1 + vertex 0.930489 13.5702 -0.1 + endloop + endfacet + facet normal 0.404567 0.914508 -0 + outer loop + vertex 0.930489 13.5702 -0.1 + vertex 0.55335 13.737 0 + vertex 0.930489 13.5702 0 + endloop + endfacet + facet normal 0.404567 0.914508 0 + outer loop + vertex 0.55335 13.737 0 + vertex 0.930489 13.5702 -0.1 + vertex 0.55335 13.737 -0.1 + endloop + endfacet + facet normal 0.327265 0.944933 -0 + outer loop + vertex 0.55335 13.737 -0.1 + vertex 0.119316 13.8873 0 + vertex 0.55335 13.737 0 + endloop + endfacet + facet normal 0.327265 0.944933 0 + outer loop + vertex 0.119316 13.8873 0 + vertex 0.55335 13.737 -0.1 + vertex 0.119316 13.8873 -0.1 + endloop + endfacet + facet normal 0.263047 0.964783 -0 + outer loop + vertex 0.119316 13.8873 -0.1 + vertex -0.371032 14.021 0 + vertex 0.119316 13.8873 0 + endloop + endfacet + facet normal 0.263047 0.964783 0 + outer loop + vertex -0.371032 14.021 0 + vertex 0.119316 13.8873 -0.1 + vertex -0.371032 14.021 -0.1 + endloop + endfacet + facet normal 0.209418 0.977826 -0 + outer loop + vertex -0.371032 14.021 -0.1 + vertex -0.917111 14.138 0 + vertex -0.371032 14.021 0 + endloop + endfacet + facet normal 0.209418 0.977826 0 + outer loop + vertex -0.917111 14.138 0 + vertex -0.371032 14.021 -0.1 + vertex -0.917111 14.138 -0.1 + endloop + endfacet + facet normal 0.164236 0.986421 -0 + outer loop + vertex -0.917111 14.138 -0.1 + vertex -1.51834 14.2381 0 + vertex -0.917111 14.138 0 + endloop + endfacet + facet normal 0.164236 0.986421 0 + outer loop + vertex -1.51834 14.2381 0 + vertex -0.917111 14.138 -0.1 + vertex -1.51834 14.2381 -0.1 + endloop + endfacet + facet normal 0.125776 0.992059 -0 + outer loop + vertex -1.51834 14.2381 -0.1 + vertex -2.17413 14.3212 0 + vertex -1.51834 14.2381 0 + endloop + endfacet + facet normal 0.125776 0.992059 0 + outer loop + vertex -2.17413 14.3212 0 + vertex -1.51834 14.2381 -0.1 + vertex -2.17413 14.3212 -0.1 + endloop + endfacet + facet normal 0.0926874 0.995695 -0 + outer loop + vertex -2.17413 14.3212 -0.1 + vertex -2.8839 14.3873 0 + vertex -2.17413 14.3212 0 + endloop + endfacet + facet normal 0.0926874 0.995695 0 + outer loop + vertex -2.8839 14.3873 0 + vertex -2.17413 14.3212 -0.1 + vertex -2.8839 14.3873 -0.1 + endloop + endfacet + facet normal 0.0639318 0.997954 -0 + outer loop + vertex -2.8839 14.3873 -0.1 + vertex -3.64708 14.4362 0 + vertex -2.8839 14.3873 0 + endloop + endfacet + facet normal 0.0639318 0.997954 0 + outer loop + vertex -3.64708 14.4362 0 + vertex -2.8839 14.3873 -0.1 + vertex -3.64708 14.4362 -0.1 + endloop + endfacet + facet normal 0.0386969 0.999251 -0 + outer loop + vertex -3.64708 14.4362 -0.1 + vertex -4.46307 14.4678 0 + vertex -3.64708 14.4362 0 + endloop + endfacet + facet normal 0.0386969 0.999251 0 + outer loop + vertex -4.46307 14.4678 0 + vertex -3.64708 14.4362 -0.1 + vertex -4.46307 14.4678 -0.1 + endloop + endfacet + facet normal 0.0163522 0.999866 -0 + outer loop + vertex -4.46307 14.4678 -0.1 + vertex -5.33129 14.482 0 + vertex -4.46307 14.4678 0 + endloop + endfacet + facet normal 0.0163522 0.999866 0 + outer loop + vertex -5.33129 14.482 0 + vertex -4.46307 14.4678 -0.1 + vertex -5.33129 14.482 -0.1 + endloop + endfacet + facet normal -0.00360162 0.999994 0 + outer loop + vertex -5.33129 14.482 -0.1 + vertex -6.25117 14.4787 0 + vertex -5.33129 14.482 0 + endloop + endfacet + facet normal -0.00360162 0.999994 0 + outer loop + vertex -6.25117 14.4787 0 + vertex -5.33129 14.482 -0.1 + vertex -6.25117 14.4787 -0.1 + endloop + endfacet + facet normal -0.0215556 0.999768 0 + outer loop + vertex -6.25117 14.4787 -0.1 + vertex -7.22211 14.4578 0 + vertex -6.25117 14.4787 0 + endloop + endfacet + facet normal -0.0215556 0.999768 0 + outer loop + vertex -7.22211 14.4578 0 + vertex -6.25117 14.4787 -0.1 + vertex -7.22211 14.4578 -0.1 + endloop + endfacet + facet normal -0.0376222 0.999292 0 + outer loop + vertex -7.22211 14.4578 -0.1 + vertex -9.25643 14.3812 0 + vertex -7.22211 14.4578 0 + endloop + endfacet + facet normal -0.0376222 0.999292 0 + outer loop + vertex -9.25643 14.3812 0 + vertex -7.22211 14.4578 -0.1 + vertex -9.25643 14.3812 -0.1 + endloop + endfacet + facet normal -0.0777977 0.996969 0 + outer loop + vertex -9.25643 14.3812 -0.1 + vertex -9.98725 14.3241 0 + vertex -9.25643 14.3812 0 + endloop + endfacet + facet normal -0.0777977 0.996969 0 + outer loop + vertex -9.98725 14.3241 0 + vertex -9.25643 14.3812 -0.1 + vertex -9.98725 14.3241 -0.1 + endloop + endfacet + facet normal -0.133926 0.990991 0 + outer loop + vertex -9.98725 14.3241 -0.1 + vertex -10.6249 14.238 0 + vertex -9.98725 14.3241 0 + endloop + endfacet + facet normal -0.133926 0.990991 0 + outer loop + vertex -10.6249 14.238 0 + vertex -9.98725 14.3241 -0.1 + vertex -10.6249 14.238 -0.1 + endloop + endfacet + facet normal -0.202593 0.979263 0 + outer loop + vertex -10.6249 14.238 -0.1 + vertex -11.2428 14.1101 0 + vertex -10.6249 14.238 0 + endloop + endfacet + facet normal -0.202593 0.979263 0 + outer loop + vertex -11.2428 14.1101 0 + vertex -10.6249 14.238 -0.1 + vertex -11.2428 14.1101 -0.1 + endloop + endfacet + facet normal -0.261603 0.965176 0 + outer loop + vertex -11.2428 14.1101 -0.1 + vertex -11.9142 13.9281 0 + vertex -11.2428 14.1101 0 + endloop + endfacet + facet normal -0.261603 0.965176 0 + outer loop + vertex -11.9142 13.9281 0 + vertex -11.2428 14.1101 -0.1 + vertex -11.9142 13.9281 -0.1 + endloop + endfacet + facet normal -0.297369 0.954762 0 + outer loop + vertex -11.9142 13.9281 -0.1 + vertex -12.7125 13.6795 0 + vertex -11.9142 13.9281 0 + endloop + endfacet + facet normal -0.297369 0.954762 0 + outer loop + vertex -12.7125 13.6795 0 + vertex -11.9142 13.9281 -0.1 + vertex -12.7125 13.6795 -0.1 + endloop + endfacet + facet normal -0.311908 0.950112 0 + outer loop + vertex -12.7125 13.6795 -0.1 + vertex -13.7109 13.3517 0 + vertex -12.7125 13.6795 0 + endloop + endfacet + facet normal -0.311908 0.950112 0 + outer loop + vertex -13.7109 13.3517 0 + vertex -12.7125 13.6795 -0.1 + vertex -13.7109 13.3517 -0.1 + endloop + endfacet + facet normal -0.299976 0.953947 0 + outer loop + vertex -13.7109 13.3517 -0.1 + vertex -14.949 12.9624 0 + vertex -13.7109 13.3517 0 + endloop + endfacet + facet normal -0.299976 0.953947 0 + outer loop + vertex -14.949 12.9624 0 + vertex -13.7109 13.3517 -0.1 + vertex -14.949 12.9624 -0.1 + endloop + endfacet + facet normal -0.271422 0.96246 0 + outer loop + vertex -14.949 12.9624 -0.1 + vertex -16.0795 12.6436 0 + vertex -14.949 12.9624 0 + endloop + endfacet + facet normal -0.271422 0.96246 0 + outer loop + vertex -16.0795 12.6436 0 + vertex -14.949 12.9624 -0.1 + vertex -16.0795 12.6436 -0.1 + endloop + endfacet + facet normal -0.233252 0.972416 0 + outer loop + vertex -16.0795 12.6436 -0.1 + vertex -16.9775 12.4282 0 + vertex -16.0795 12.6436 0 + endloop + endfacet + facet normal -0.233252 0.972416 0 + outer loop + vertex -16.9775 12.4282 0 + vertex -16.0795 12.6436 -0.1 + vertex -16.9775 12.4282 -0.1 + endloop + endfacet + facet normal -0.178763 0.983892 0 + outer loop + vertex -16.9775 12.4282 -0.1 + vertex -17.3003 12.3696 0 + vertex -16.9775 12.4282 0 + endloop + endfacet + facet normal -0.178763 0.983892 0 + outer loop + vertex -17.3003 12.3696 0 + vertex -16.9775 12.4282 -0.1 + vertex -17.3003 12.3696 -0.1 + endloop + endfacet + facet normal -0.0935268 0.995617 0 + outer loop + vertex -17.3003 12.3696 -0.1 + vertex -17.5181 12.3491 0 + vertex -17.3003 12.3696 0 + endloop + endfacet + facet normal -0.0935268 0.995617 0 + outer loop + vertex -17.5181 12.3491 0 + vertex -17.3003 12.3696 -0.1 + vertex -17.5181 12.3491 -0.1 + endloop + endfacet + facet normal -0.0617051 0.998094 0 + outer loop + vertex -17.5181 12.3491 -0.1 + vertex -17.9556 12.3221 0 + vertex -17.5181 12.3491 0 + endloop + endfacet + facet normal -0.0617051 0.998094 0 + outer loop + vertex -17.9556 12.3221 0 + vertex -17.5181 12.3491 -0.1 + vertex -17.9556 12.3221 -0.1 + endloop + endfacet + facet normal -0.11848 0.992956 0 + outer loop + vertex -17.9556 12.3221 -0.1 + vertex -18.5728 12.2484 0 + vertex -17.9556 12.3221 0 + endloop + endfacet + facet normal -0.11848 0.992956 0 + outer loop + vertex -18.5728 12.2484 0 + vertex -17.9556 12.3221 -0.1 + vertex -18.5728 12.2484 -0.1 + endloop + endfacet + facet normal -0.150729 0.988575 0 + outer loop + vertex -18.5728 12.2484 -0.1 + vertex -19.2876 12.1394 0 + vertex -18.5728 12.2484 0 + endloop + endfacet + facet normal -0.150729 0.988575 0 + outer loop + vertex -19.2876 12.1394 0 + vertex -18.5728 12.2484 -0.1 + vertex -19.2876 12.1394 -0.1 + endloop + endfacet + facet normal -0.179254 0.983803 0 + outer loop + vertex -19.2876 12.1394 -0.1 + vertex -20.0181 12.0063 0 + vertex -19.2876 12.1394 0 + endloop + endfacet + facet normal -0.179254 0.983803 0 + outer loop + vertex -20.0181 12.0063 0 + vertex -19.2876 12.1394 -0.1 + vertex -20.0181 12.0063 -0.1 + endloop + endfacet + facet normal -0.161235 0.986916 0 + outer loop + vertex -20.0181 12.0063 -0.1 + vertex -20.4772 11.9313 0 + vertex -20.0181 12.0063 0 + endloop + endfacet + facet normal -0.161235 0.986916 0 + outer loop + vertex -20.4772 11.9313 0 + vertex -20.0181 12.0063 -0.1 + vertex -20.4772 11.9313 -0.1 + endloop + endfacet + facet normal -0.116007 0.993248 0 + outer loop + vertex -20.4772 11.9313 -0.1 + vertex -21.0446 11.8651 0 + vertex -20.4772 11.9313 0 + endloop + endfacet + facet normal -0.116007 0.993248 0 + outer loop + vertex -21.0446 11.8651 0 + vertex -20.4772 11.9313 -0.1 + vertex -21.0446 11.8651 -0.1 + endloop + endfacet + facet normal -0.076075 0.997102 0 + outer loop + vertex -21.0446 11.8651 -0.1 + vertex -22.4311 11.7593 0 + vertex -21.0446 11.8651 0 + endloop + endfacet + facet normal -0.076075 0.997102 0 + outer loop + vertex -22.4311 11.7593 0 + vertex -21.0446 11.8651 -0.1 + vertex -22.4311 11.7593 -0.1 + endloop + endfacet + facet normal -0.0432101 0.999066 0 + outer loop + vertex -22.4311 11.7593 -0.1 + vertex -24.031 11.6901 0 + vertex -22.4311 11.7593 0 + endloop + endfacet + facet normal -0.0432101 0.999066 0 + outer loop + vertex -24.031 11.6901 0 + vertex -22.4311 11.7593 -0.1 + vertex -24.031 11.6901 -0.1 + endloop + endfacet + facet normal -0.0189053 0.999821 0 + outer loop + vertex -24.031 11.6901 -0.1 + vertex -25.698 11.6586 0 + vertex -24.031 11.6901 0 + endloop + endfacet + facet normal -0.0189053 0.999821 0 + outer loop + vertex -25.698 11.6586 0 + vertex -24.031 11.6901 -0.1 + vertex -25.698 11.6586 -0.1 + endloop + endfacet + facet normal 0.00456618 0.99999 -0 + outer loop + vertex -25.698 11.6586 -0.1 + vertex -27.2855 11.6658 0 + vertex -25.698 11.6586 0 + endloop + endfacet + facet normal 0.00456618 0.99999 0 + outer loop + vertex -27.2855 11.6658 0 + vertex -25.698 11.6586 -0.1 + vertex -27.2855 11.6658 -0.1 + endloop + endfacet + facet normal 0.034581 0.999402 -0 + outer loop + vertex -27.2855 11.6658 -0.1 + vertex -28.647 11.7129 0 + vertex -27.2855 11.6658 0 + endloop + endfacet + facet normal 0.034581 0.999402 0 + outer loop + vertex -28.647 11.7129 0 + vertex -27.2855 11.6658 -0.1 + vertex -28.647 11.7129 -0.1 + endloop + endfacet + facet normal 0.0704155 0.997518 -0 + outer loop + vertex -28.647 11.7129 -0.1 + vertex -29.1973 11.7518 0 + vertex -28.647 11.7129 0 + endloop + endfacet + facet normal 0.0704155 0.997518 0 + outer loop + vertex -29.1973 11.7518 0 + vertex -28.647 11.7129 -0.1 + vertex -29.1973 11.7518 -0.1 + endloop + endfacet + facet normal 0.111453 0.99377 -0 + outer loop + vertex -29.1973 11.7518 -0.1 + vertex -29.6362 11.801 0 + vertex -29.1973 11.7518 0 + endloop + endfacet + facet normal 0.111453 0.99377 0 + outer loop + vertex -29.6362 11.801 0 + vertex -29.1973 11.7518 -0.1 + vertex -29.6362 11.801 -0.1 + endloop + endfacet + facet normal 0.189706 0.981841 -0 + outer loop + vertex -29.6362 11.801 -0.1 + vertex -29.9453 11.8607 0 + vertex -29.6362 11.801 0 + endloop + endfacet + facet normal 0.189706 0.981841 0 + outer loop + vertex -29.9453 11.8607 0 + vertex -29.6362 11.801 -0.1 + vertex -29.9453 11.8607 -0.1 + endloop + endfacet + facet normal 0.320034 0.947406 -0 + outer loop + vertex -29.9453 11.8607 -0.1 + vertex -30.0456 11.8946 0 + vertex -29.9453 11.8607 0 + endloop + endfacet + facet normal 0.320034 0.947406 0 + outer loop + vertex -30.0456 11.8946 0 + vertex -29.9453 11.8607 -0.1 + vertex -30.0456 11.8946 -0.1 + endloop + endfacet + facet normal 0.514271 0.857628 -0 + outer loop + vertex -30.0456 11.8946 -0.1 + vertex -30.1065 11.9311 0 + vertex -30.0456 11.8946 0 + endloop + endfacet + facet normal 0.514271 0.857628 0 + outer loop + vertex -30.1065 11.9311 0 + vertex -30.0456 11.8946 -0.1 + vertex -30.1065 11.9311 -0.1 + endloop + endfacet + facet normal 0.794078 0.607816 0 + outer loop + vertex -30.1065 11.9311 0 + vertex -30.2115 12.0683 -0.1 + vertex -30.2115 12.0683 0 + endloop + endfacet + facet normal 0.794078 0.607816 0 + outer loop + vertex -30.2115 12.0683 -0.1 + vertex -30.1065 11.9311 0 + vertex -30.1065 11.9311 -0.1 + endloop + endfacet + facet normal 0.908198 0.418541 0 + outer loop + vertex -30.2115 12.0683 0 + vertex -30.2975 12.2549 -0.1 + vertex -30.2975 12.2549 0 + endloop + endfacet + facet normal 0.908198 0.418541 0 + outer loop + vertex -30.2975 12.2549 -0.1 + vertex -30.2115 12.0683 0 + vertex -30.2115 12.0683 -0.1 + endloop + endfacet + facet normal 0.964271 0.264918 0 + outer loop + vertex -30.2975 12.2549 0 + vertex -30.3556 12.4664 -0.1 + vertex -30.3556 12.4664 0 + endloop + endfacet + facet normal 0.964271 0.264918 0 + outer loop + vertex -30.3556 12.4664 -0.1 + vertex -30.2975 12.2549 0 + vertex -30.2975 12.2549 -0.1 + endloop + endfacet + facet normal 0.994966 0.10021 0 + outer loop + vertex -30.3556 12.4664 0 + vertex -30.377 12.6783 -0.1 + vertex -30.377 12.6783 0 + endloop + endfacet + facet normal 0.994966 0.10021 0 + outer loop + vertex -30.377 12.6783 -0.1 + vertex -30.3556 12.4664 0 + vertex -30.3556 12.4664 -0.1 + endloop + endfacet + facet normal 0.99734 -0.0728833 0 + outer loop + vertex -30.377 12.6783 0 + vertex -30.3621 12.8813 -0.1 + vertex -30.3621 12.8813 0 + endloop + endfacet + facet normal 0.99734 -0.0728833 0 + outer loop + vertex -30.3621 12.8813 -0.1 + vertex -30.377 12.6783 0 + vertex -30.377 12.6783 -0.1 + endloop + endfacet + facet normal 0.963268 -0.268541 0 + outer loop + vertex -30.3621 12.8813 0 + vertex -30.3387 12.9655 -0.1 + vertex -30.3387 12.9655 0 + endloop + endfacet + facet normal 0.963268 -0.268541 0 + outer loop + vertex -30.3387 12.9655 -0.1 + vertex -30.3621 12.8813 0 + vertex -30.3621 12.8813 -0.1 + endloop + endfacet + facet normal 0.886257 -0.463194 0 + outer loop + vertex -30.3387 12.9655 0 + vertex -30.3001 13.0393 -0.1 + vertex -30.3001 13.0393 0 + endloop + endfacet + facet normal 0.886257 -0.463194 0 + outer loop + vertex -30.3001 13.0393 -0.1 + vertex -30.3387 12.9655 0 + vertex -30.3387 12.9655 -0.1 + endloop + endfacet + facet normal 0.748065 -0.663625 0 + outer loop + vertex -30.3001 13.0393 0 + vertex -30.2432 13.1034 -0.1 + vertex -30.2432 13.1034 0 + endloop + endfacet + facet normal 0.748065 -0.663625 0 + outer loop + vertex -30.2432 13.1034 -0.1 + vertex -30.3001 13.0393 0 + vertex -30.3001 13.0393 -0.1 + endloop + endfacet + facet normal 0.576127 -0.81736 0 + outer loop + vertex -30.2432 13.1034 -0.1 + vertex -30.1646 13.1588 0 + vertex -30.2432 13.1034 0 + endloop + endfacet + facet normal 0.576127 -0.81736 0 + outer loop + vertex -30.1646 13.1588 0 + vertex -30.2432 13.1034 -0.1 + vertex -30.1646 13.1588 -0.1 + endloop + endfacet + facet normal 0.349457 -0.936953 0 + outer loop + vertex -30.1646 13.1588 -0.1 + vertex -29.9294 13.2465 0 + vertex -30.1646 13.1588 0 + endloop + endfacet + facet normal 0.349457 -0.936953 0 + outer loop + vertex -29.9294 13.2465 0 + vertex -30.1646 13.1588 -0.1 + vertex -29.9294 13.2465 -0.1 + endloop + endfacet + facet normal 0.170605 -0.985339 0 + outer loop + vertex -29.9294 13.2465 -0.1 + vertex -29.5683 13.309 0 + vertex -29.9294 13.2465 0 + endloop + endfacet + facet normal 0.170605 -0.985339 0 + outer loop + vertex -29.5683 13.309 0 + vertex -29.9294 13.2465 -0.1 + vertex -29.5683 13.309 -0.1 + endloop + endfacet + facet normal 0.0853267 -0.996353 0 + outer loop + vertex -29.5683 13.309 -0.1 + vertex -29.0548 13.353 0 + vertex -29.5683 13.309 0 + endloop + endfacet + facet normal 0.0853267 -0.996353 0 + outer loop + vertex -29.0548 13.353 0 + vertex -29.5683 13.309 -0.1 + vertex -29.0548 13.353 -0.1 + endloop + endfacet + facet normal 0.0369327 -0.999318 0 + outer loop + vertex -29.0548 13.353 -0.1 + vertex -27.4661 13.4117 0 + vertex -29.0548 13.353 0 + endloop + endfacet + facet normal 0.0369327 -0.999318 0 + outer loop + vertex -27.4661 13.4117 0 + vertex -29.0548 13.353 -0.1 + vertex -27.4661 13.4117 -0.1 + endloop + endfacet + facet normal 0.0488074 -0.998808 0 + outer loop + vertex -27.4661 13.4117 -0.1 + vertex -26.1544 13.4758 0 + vertex -27.4661 13.4117 0 + endloop + endfacet + facet normal 0.0488074 -0.998808 0 + outer loop + vertex -26.1544 13.4758 0 + vertex -27.4661 13.4117 -0.1 + vertex -26.1544 13.4758 -0.1 + endloop + endfacet + facet normal 0.0958463 -0.995396 0 + outer loop + vertex -26.1544 13.4758 -0.1 + vertex -24.8613 13.6003 0 + vertex -26.1544 13.4758 0 + endloop + endfacet + facet normal 0.0958463 -0.995396 0 + outer loop + vertex -24.8613 13.6003 0 + vertex -26.1544 13.4758 -0.1 + vertex -24.8613 13.6003 -0.1 + endloop + endfacet + facet normal 0.144031 -0.989573 0 + outer loop + vertex -24.8613 13.6003 -0.1 + vertex -23.579 13.787 0 + vertex -24.8613 13.6003 0 + endloop + endfacet + facet normal 0.144031 -0.989573 0 + outer loop + vertex -23.579 13.787 0 + vertex -24.8613 13.6003 -0.1 + vertex -23.579 13.787 -0.1 + endloop + endfacet + facet normal 0.192155 -0.981365 0 + outer loop + vertex -23.579 13.787 -0.1 + vertex -22.3001 14.0374 0 + vertex -23.579 13.787 0 + endloop + endfacet + facet normal 0.192155 -0.981365 0 + outer loop + vertex -22.3001 14.0374 0 + vertex -23.579 13.787 -0.1 + vertex -22.3001 14.0374 -0.1 + endloop + endfacet + facet normal 0.239032 -0.971012 0 + outer loop + vertex -22.3001 14.0374 -0.1 + vertex -21.0167 14.3533 0 + vertex -22.3001 14.0374 0 + endloop + endfacet + facet normal 0.239032 -0.971012 0 + outer loop + vertex -21.0167 14.3533 0 + vertex -22.3001 14.0374 -0.1 + vertex -21.0167 14.3533 -0.1 + endloop + endfacet + facet normal 0.283599 -0.958943 0 + outer loop + vertex -21.0167 14.3533 -0.1 + vertex -19.7213 14.7364 0 + vertex -21.0167 14.3533 0 + endloop + endfacet + facet normal 0.283599 -0.958943 0 + outer loop + vertex -19.7213 14.7364 0 + vertex -21.0167 14.3533 -0.1 + vertex -19.7213 14.7364 -0.1 + endloop + endfacet + facet normal 0.325025 -0.945706 0 + outer loop + vertex -19.7213 14.7364 -0.1 + vertex -18.4061 15.1884 0 + vertex -19.7213 14.7364 0 + endloop + endfacet + facet normal 0.325025 -0.945706 0 + outer loop + vertex -18.4061 15.1884 0 + vertex -19.7213 14.7364 -0.1 + vertex -18.4061 15.1884 -0.1 + endloop + endfacet + facet normal 0.362736 -0.931892 0 + outer loop + vertex -18.4061 15.1884 -0.1 + vertex -17.0637 15.711 0 + vertex -18.4061 15.1884 0 + endloop + endfacet + facet normal 0.362736 -0.931892 0 + outer loop + vertex -17.0637 15.711 0 + vertex -18.4061 15.1884 -0.1 + vertex -17.0637 15.711 -0.1 + endloop + endfacet + facet normal 0.385262 -0.922807 0 + outer loop + vertex -17.0637 15.711 -0.1 + vertex -16.4531 15.9659 0 + vertex -17.0637 15.711 0 + endloop + endfacet + facet normal 0.385262 -0.922807 0 + outer loop + vertex -16.4531 15.9659 0 + vertex -17.0637 15.711 -0.1 + vertex -16.4531 15.9659 -0.1 + endloop + endfacet + facet normal 0.409178 -0.912454 0 + outer loop + vertex -16.4531 15.9659 -0.1 + vertex -15.9397 16.1961 0 + vertex -16.4531 15.9659 0 + endloop + endfacet + facet normal 0.409178 -0.912454 0 + outer loop + vertex -15.9397 16.1961 0 + vertex -16.4531 15.9659 -0.1 + vertex -15.9397 16.1961 -0.1 + endloop + endfacet + facet normal 0.452989 -0.891516 0 + outer loop + vertex -15.9397 16.1961 -0.1 + vertex -15.4716 16.4339 0 + vertex -15.9397 16.1961 0 + endloop + endfacet + facet normal 0.452989 -0.891516 0 + outer loop + vertex -15.4716 16.4339 0 + vertex -15.9397 16.1961 -0.1 + vertex -15.4716 16.4339 -0.1 + endloop + endfacet + facet normal 0.505092 -0.863065 0 + outer loop + vertex -15.4716 16.4339 -0.1 + vertex -14.9972 16.7116 0 + vertex -15.4716 16.4339 0 + endloop + endfacet + facet normal 0.505092 -0.863065 0 + outer loop + vertex -14.9972 16.7116 0 + vertex -15.4716 16.4339 -0.1 + vertex -14.9972 16.7116 -0.1 + endloop + endfacet + facet normal 0.548914 -0.835879 0 + outer loop + vertex -14.9972 16.7116 -0.1 + vertex -14.4648 17.0612 0 + vertex -14.9972 16.7116 0 + endloop + endfacet + facet normal 0.548914 -0.835879 0 + outer loop + vertex -14.4648 17.0612 0 + vertex -14.9972 16.7116 -0.1 + vertex -14.4648 17.0612 -0.1 + endloop + endfacet + facet normal 0.577162 -0.81663 0 + outer loop + vertex -14.4648 17.0612 -0.1 + vertex -13.8225 17.5152 0 + vertex -14.4648 17.0612 0 + endloop + endfacet + facet normal 0.577162 -0.81663 0 + outer loop + vertex -13.8225 17.5152 0 + vertex -14.4648 17.0612 -0.1 + vertex -13.8225 17.5152 -0.1 + endloop + endfacet + facet normal 0.595448 -0.803394 0 + outer loop + vertex -13.8225 17.5152 -0.1 + vertex -12.0016 18.8648 0 + vertex -13.8225 17.5152 0 + endloop + endfacet + facet normal 0.595448 -0.803394 0 + outer loop + vertex -12.0016 18.8648 0 + vertex -13.8225 17.5152 -0.1 + vertex -12.0016 18.8648 -0.1 + endloop + endfacet + facet normal 0.610957 -0.791663 0 + outer loop + vertex -12.0016 18.8648 -0.1 + vertex -11.4702 19.2748 0 + vertex -12.0016 18.8648 0 + endloop + endfacet + facet normal 0.610957 -0.791663 0 + outer loop + vertex -11.4702 19.2748 0 + vertex -12.0016 18.8648 -0.1 + vertex -11.4702 19.2748 -0.1 + endloop + endfacet + facet normal 0.661597 -0.749859 0 + outer loop + vertex -11.4702 19.2748 -0.1 + vertex -11.1091 19.5935 0 + vertex -11.4702 19.2748 0 + endloop + endfacet + facet normal 0.661597 -0.749859 0 + outer loop + vertex -11.1091 19.5935 0 + vertex -11.4702 19.2748 -0.1 + vertex -11.1091 19.5935 -0.1 + endloop + endfacet + facet normal 0.747538 -0.664219 0 + outer loop + vertex -11.1091 19.5935 0 + vertex -10.9948 19.7221 -0.1 + vertex -10.9948 19.7221 0 + endloop + endfacet + facet normal 0.747538 -0.664219 0 + outer loop + vertex -10.9948 19.7221 -0.1 + vertex -11.1091 19.5935 0 + vertex -11.1091 19.5935 -0.1 + endloop + endfacet + facet normal 0.848145 -0.529765 0 + outer loop + vertex -10.9948 19.7221 0 + vertex -10.9261 19.832 -0.1 + vertex -10.9261 19.832 0 + endloop + endfacet + facet normal 0.848145 -0.529765 0 + outer loop + vertex -10.9261 19.832 -0.1 + vertex -10.9948 19.7221 0 + vertex -10.9948 19.7221 -0.1 + endloop + endfacet + facet normal 0.972725 -0.231962 0 + outer loop + vertex -10.9261 19.832 0 + vertex -10.904 19.9248 -0.1 + vertex -10.904 19.9248 0 + endloop + endfacet + facet normal 0.972725 -0.231962 0 + outer loop + vertex -10.904 19.9248 -0.1 + vertex -10.9261 19.832 0 + vertex -10.9261 19.832 -0.1 + endloop + endfacet + facet normal 0.949443 0.31394 0 + outer loop + vertex -10.904 19.9248 0 + vertex -10.9294 20.0018 -0.1 + vertex -10.9294 20.0018 0 + endloop + endfacet + facet normal 0.949443 0.31394 0 + outer loop + vertex -10.9294 20.0018 -0.1 + vertex -10.904 19.9248 0 + vertex -10.904 19.9248 -0.1 + endloop + endfacet + facet normal 0.645708 0.763585 -0 + outer loop + vertex -10.9294 20.0018 -0.1 + vertex -11.0035 20.0644 0 + vertex -10.9294 20.0018 0 + endloop + endfacet + facet normal 0.645708 0.763585 0 + outer loop + vertex -11.0035 20.0644 0 + vertex -10.9294 20.0018 -0.1 + vertex -11.0035 20.0644 -0.1 + endloop + endfacet + facet normal 0.372622 0.927983 -0 + outer loop + vertex -11.0035 20.0644 -0.1 + vertex -11.1271 20.114 0 + vertex -11.0035 20.0644 0 + endloop + endfacet + facet normal 0.372622 0.927983 0 + outer loop + vertex -11.1271 20.114 0 + vertex -11.0035 20.0644 -0.1 + vertex -11.1271 20.114 -0.1 + endloop + endfacet + facet normal 0.213569 0.976928 -0 + outer loop + vertex -11.1271 20.114 -0.1 + vertex -11.3013 20.1521 0 + vertex -11.1271 20.114 0 + endloop + endfacet + facet normal 0.213569 0.976928 0 + outer loop + vertex -11.3013 20.1521 0 + vertex -11.1271 20.114 -0.1 + vertex -11.3013 20.1521 -0.1 + endloop + endfacet + facet normal 0.122812 0.99243 -0 + outer loop + vertex -11.3013 20.1521 -0.1 + vertex -11.5271 20.1801 0 + vertex -11.3013 20.1521 0 + endloop + endfacet + facet normal 0.122812 0.99243 0 + outer loop + vertex -11.5271 20.1801 0 + vertex -11.3013 20.1521 -0.1 + vertex -11.5271 20.1801 -0.1 + endloop + endfacet + facet normal 0.050903 0.998704 -0 + outer loop + vertex -11.5271 20.1801 -0.1 + vertex -12.1376 20.2112 0 + vertex -11.5271 20.1801 0 + endloop + endfacet + facet normal 0.050903 0.998704 0 + outer loop + vertex -12.1376 20.2112 0 + vertex -11.5271 20.1801 -0.1 + vertex -12.1376 20.2112 -0.1 + endloop + endfacet + facet normal 0.00904467 0.999959 -0 + outer loop + vertex -12.1376 20.2112 -0.1 + vertex -12.9665 20.2187 0 + vertex -12.1376 20.2112 0 + endloop + endfacet + facet normal 0.00904467 0.999959 0 + outer loop + vertex -12.9665 20.2187 0 + vertex -12.1376 20.2112 -0.1 + vertex -12.9665 20.2187 -0.1 + endloop + endfacet + facet normal -0.0191031 0.999818 0 + outer loop + vertex -12.9665 20.2187 -0.1 + vertex -13.9037 20.2008 0 + vertex -12.9665 20.2187 0 + endloop + endfacet + facet normal -0.0191031 0.999818 0 + outer loop + vertex -13.9037 20.2008 0 + vertex -12.9665 20.2187 -0.1 + vertex -13.9037 20.2008 -0.1 + endloop + endfacet + facet normal -0.0506696 0.998715 0 + outer loop + vertex -13.9037 20.2008 -0.1 + vertex -14.8461 20.153 0 + vertex -13.9037 20.2008 0 + endloop + endfacet + facet normal -0.0506696 0.998715 0 + outer loop + vertex -14.8461 20.153 0 + vertex -13.9037 20.2008 -0.1 + vertex -14.8461 20.153 -0.1 + endloop + endfacet + facet normal -0.0837631 0.996486 0 + outer loop + vertex -14.8461 20.153 -0.1 + vertex -15.684 20.0825 0 + vertex -14.8461 20.153 0 + endloop + endfacet + facet normal -0.0837631 0.996486 0 + outer loop + vertex -15.684 20.0825 0 + vertex -14.8461 20.153 -0.1 + vertex -15.684 20.0825 -0.1 + endloop + endfacet + facet normal -0.136213 0.99068 0 + outer loop + vertex -15.684 20.0825 -0.1 + vertex -16.3079 19.9967 0 + vertex -15.684 20.0825 0 + endloop + endfacet + facet normal -0.136213 0.99068 0 + outer loop + vertex -16.3079 19.9967 0 + vertex -15.684 20.0825 -0.1 + vertex -16.3079 19.9967 -0.1 + endloop + endfacet + facet normal -0.175854 0.984416 0 + outer loop + vertex -16.3079 19.9967 -0.1 + vertex -17.2235 19.8332 0 + vertex -16.3079 19.9967 0 + endloop + endfacet + facet normal -0.175854 0.984416 0 + outer loop + vertex -17.2235 19.8332 0 + vertex -16.3079 19.9967 -0.1 + vertex -17.2235 19.8332 -0.1 + endloop + endfacet + facet normal -0.15721 0.987565 0 + outer loop + vertex -17.2235 19.8332 -0.1 + vertex -18.1791 19.6811 0 + vertex -17.2235 19.8332 0 + endloop + endfacet + facet normal -0.15721 0.987565 0 + outer loop + vertex -18.1791 19.6811 0 + vertex -17.2235 19.8332 -0.1 + vertex -18.1791 19.6811 -0.1 + endloop + endfacet + facet normal -0.133206 0.991088 0 + outer loop + vertex -18.1791 19.6811 -0.1 + vertex -20.1671 19.4139 0 + vertex -18.1791 19.6811 0 + endloop + endfacet + facet normal -0.133206 0.991088 0 + outer loop + vertex -20.1671 19.4139 0 + vertex -18.1791 19.6811 -0.1 + vertex -20.1671 19.4139 -0.1 + endloop + endfacet + facet normal -0.105044 0.994468 0 + outer loop + vertex -20.1671 19.4139 -0.1 + vertex -22.1849 19.2007 0 + vertex -20.1671 19.4139 0 + endloop + endfacet + facet normal -0.105044 0.994468 0 + outer loop + vertex -22.1849 19.2007 0 + vertex -20.1671 19.4139 -0.1 + vertex -22.1849 19.2007 -0.1 + endloop + endfacet + facet normal -0.0780607 0.996949 0 + outer loop + vertex -22.1849 19.2007 -0.1 + vertex -24.1455 19.0472 0 + vertex -22.1849 19.2007 0 + endloop + endfacet + facet normal -0.0780607 0.996949 0 + outer loop + vertex -24.1455 19.0472 0 + vertex -22.1849 19.2007 -0.1 + vertex -24.1455 19.0472 -0.1 + endloop + endfacet + facet normal -0.0485635 0.99882 0 + outer loop + vertex -24.1455 19.0472 -0.1 + vertex -25.9619 18.9589 0 + vertex -24.1455 19.0472 0 + endloop + endfacet + facet normal -0.0485635 0.99882 0 + outer loop + vertex -25.9619 18.9589 0 + vertex -24.1455 19.0472 -0.1 + vertex -25.9619 18.9589 -0.1 + endloop + endfacet + facet normal -0.0217214 0.999764 0 + outer loop + vertex -25.9619 18.9589 -0.1 + vertex -26.7887 18.9409 0 + vertex -25.9619 18.9589 0 + endloop + endfacet + facet normal -0.0217214 0.999764 0 + outer loop + vertex -26.7887 18.9409 0 + vertex -25.9619 18.9589 -0.1 + vertex -26.7887 18.9409 -0.1 + endloop + endfacet + facet normal 0.000558472 1 -0 + outer loop + vertex -26.7887 18.9409 -0.1 + vertex -27.5469 18.9414 0 + vertex -26.7887 18.9409 0 + endloop + endfacet + facet normal 0.000558472 1 0 + outer loop + vertex -27.5469 18.9414 0 + vertex -26.7887 18.9409 -0.1 + vertex -27.5469 18.9414 -0.1 + endloop + endfacet + facet normal 0.0287379 0.999587 -0 + outer loop + vertex -27.5469 18.9414 -0.1 + vertex -28.2256 18.9609 0 + vertex -27.5469 18.9414 0 + endloop + endfacet + facet normal 0.0287379 0.999587 0 + outer loop + vertex -28.2256 18.9609 0 + vertex -27.5469 18.9414 -0.1 + vertex -28.2256 18.9609 -0.1 + endloop + endfacet + facet normal 0.0666534 0.997776 -0 + outer loop + vertex -28.2256 18.9609 -0.1 + vertex -28.8137 19.0002 0 + vertex -28.2256 18.9609 0 + endloop + endfacet + facet normal 0.0666534 0.997776 0 + outer loop + vertex -28.8137 19.0002 0 + vertex -28.2256 18.9609 -0.1 + vertex -28.8137 19.0002 -0.1 + endloop + endfacet + facet normal 0.121854 0.992548 -0 + outer loop + vertex -28.8137 19.0002 -0.1 + vertex -29.3006 19.0599 0 + vertex -28.8137 19.0002 0 + endloop + endfacet + facet normal 0.121854 0.992548 0 + outer loop + vertex -29.3006 19.0599 0 + vertex -28.8137 19.0002 -0.1 + vertex -29.3006 19.0599 -0.1 + endloop + endfacet + facet normal 0.211179 0.977447 -0 + outer loop + vertex -29.3006 19.0599 -0.1 + vertex -29.6752 19.1409 0 + vertex -29.3006 19.0599 0 + endloop + endfacet + facet normal 0.211179 0.977447 0 + outer loop + vertex -29.6752 19.1409 0 + vertex -29.3006 19.0599 -0.1 + vertex -29.6752 19.1409 -0.1 + endloop + endfacet + facet normal 0.291073 0.956701 -0 + outer loop + vertex -29.6752 19.1409 -0.1 + vertex -30.5811 19.4165 0 + vertex -29.6752 19.1409 0 + endloop + endfacet + facet normal 0.291073 0.956701 0 + outer loop + vertex -30.5811 19.4165 0 + vertex -29.6752 19.1409 -0.1 + vertex -30.5811 19.4165 -0.1 + endloop + endfacet + facet normal 0.314696 0.949192 -0 + outer loop + vertex -30.5811 19.4165 -0.1 + vertex -31.4466 19.7034 0 + vertex -30.5811 19.4165 0 + endloop + endfacet + facet normal 0.314696 0.949192 0 + outer loop + vertex -31.4466 19.7034 0 + vertex -30.5811 19.4165 -0.1 + vertex -31.4466 19.7034 -0.1 + endloop + endfacet + facet normal 0.339748 0.940516 -0 + outer loop + vertex -31.4466 19.7034 -0.1 + vertex -32.271 20.0012 0 + vertex -31.4466 19.7034 0 + endloop + endfacet + facet normal 0.339748 0.940516 0 + outer loop + vertex -32.271 20.0012 0 + vertex -31.4466 19.7034 -0.1 + vertex -32.271 20.0012 -0.1 + endloop + endfacet + facet normal 0.366429 0.930446 -0 + outer loop + vertex -32.271 20.0012 -0.1 + vertex -33.0533 20.3093 0 + vertex -32.271 20.0012 0 + endloop + endfacet + facet normal 0.366429 0.930446 0 + outer loop + vertex -33.0533 20.3093 0 + vertex -32.271 20.0012 -0.1 + vertex -33.0533 20.3093 -0.1 + endloop + endfacet + facet normal 0.394948 0.918703 -0 + outer loop + vertex -33.0533 20.3093 -0.1 + vertex -33.7926 20.6272 0 + vertex -33.0533 20.3093 0 + endloop + endfacet + facet normal 0.394948 0.918703 0 + outer loop + vertex -33.7926 20.6272 0 + vertex -33.0533 20.3093 -0.1 + vertex -33.7926 20.6272 -0.1 + endloop + endfacet + facet normal 0.425556 0.904932 -0 + outer loop + vertex -33.7926 20.6272 -0.1 + vertex -34.4881 20.9542 0 + vertex -33.7926 20.6272 0 + endloop + endfacet + facet normal 0.425556 0.904932 0 + outer loop + vertex -34.4881 20.9542 0 + vertex -33.7926 20.6272 -0.1 + vertex -34.4881 20.9542 -0.1 + endloop + endfacet + facet normal 0.458522 0.888683 -0 + outer loop + vertex -34.4881 20.9542 -0.1 + vertex -35.1386 21.2899 0 + vertex -34.4881 20.9542 0 + endloop + endfacet + facet normal 0.458522 0.888683 0 + outer loop + vertex -35.1386 21.2899 0 + vertex -34.4881 20.9542 -0.1 + vertex -35.1386 21.2899 -0.1 + endloop + endfacet + facet normal 0.494132 0.869387 -0 + outer loop + vertex -35.1386 21.2899 -0.1 + vertex -35.7435 21.6336 0 + vertex -35.1386 21.2899 0 + endloop + endfacet + facet normal 0.494132 0.869387 0 + outer loop + vertex -35.7435 21.6336 0 + vertex -35.1386 21.2899 -0.1 + vertex -35.7435 21.6336 -0.1 + endloop + endfacet + facet normal 0.532679 0.846317 -0 + outer loop + vertex -35.7435 21.6336 -0.1 + vertex -36.3017 21.985 0 + vertex -35.7435 21.6336 0 + endloop + endfacet + facet normal 0.532679 0.846317 0 + outer loop + vertex -36.3017 21.985 0 + vertex -35.7435 21.6336 -0.1 + vertex -36.3017 21.985 -0.1 + endloop + endfacet + facet normal 0.574426 0.818556 -0 + outer loop + vertex -36.3017 21.985 -0.1 + vertex -36.8124 22.3433 0 + vertex -36.3017 21.985 0 + endloop + endfacet + facet normal 0.574426 0.818556 0 + outer loop + vertex -36.8124 22.3433 0 + vertex -36.3017 21.985 -0.1 + vertex -36.8124 22.3433 -0.1 + endloop + endfacet + facet normal 0.619583 0.784931 -0 + outer loop + vertex -36.8124 22.3433 -0.1 + vertex -37.2746 22.7082 0 + vertex -36.8124 22.3433 0 + endloop + endfacet + facet normal 0.619583 0.784931 0 + outer loop + vertex -37.2746 22.7082 0 + vertex -36.8124 22.3433 -0.1 + vertex -37.2746 22.7082 -0.1 + endloop + endfacet + facet normal 0.668193 0.743988 -0 + outer loop + vertex -37.2746 22.7082 -0.1 + vertex -37.6874 23.0789 0 + vertex -37.2746 22.7082 0 + endloop + endfacet + facet normal 0.668193 0.743988 0 + outer loop + vertex -37.6874 23.0789 0 + vertex -37.2746 22.7082 -0.1 + vertex -37.6874 23.0789 -0.1 + endloop + endfacet + facet normal 0.720024 0.69395 0 + outer loop + vertex -37.6874 23.0789 0 + vertex -38.0499 23.455 -0.1 + vertex -38.0499 23.455 0 + endloop + endfacet + facet normal 0.720024 0.69395 0 + outer loop + vertex -38.0499 23.455 -0.1 + vertex -37.6874 23.0789 0 + vertex -37.6874 23.0789 -0.1 + endloop + endfacet + facet normal 0.774355 0.632751 0 + outer loop + vertex -38.0499 23.455 0 + vertex -38.3611 23.836 -0.1 + vertex -38.3611 23.836 0 + endloop + endfacet + facet normal 0.774355 0.632751 0 + outer loop + vertex -38.3611 23.836 -0.1 + vertex -38.0499 23.455 0 + vertex -38.0499 23.455 -0.1 + endloop + endfacet + facet normal 0.829712 0.558192 0 + outer loop + vertex -38.3611 23.836 0 + vertex -38.6203 24.2212 -0.1 + vertex -38.6203 24.2212 0 + endloop + endfacet + facet normal 0.829712 0.558192 0 + outer loop + vertex -38.6203 24.2212 -0.1 + vertex -38.3611 23.836 0 + vertex -38.3611 23.836 -0.1 + endloop + endfacet + facet normal 0.883596 0.468251 0 + outer loop + vertex -38.6203 24.2212 0 + vertex -38.8265 24.6102 -0.1 + vertex -38.8265 24.6102 0 + endloop + endfacet + facet normal 0.883596 0.468251 0 + outer loop + vertex -38.8265 24.6102 -0.1 + vertex -38.6203 24.2212 0 + vertex -38.6203 24.2212 -0.1 + endloop + endfacet + facet normal 0.926216 0.376994 0 + outer loop + vertex -38.8265 24.6102 0 + vertex -39.0227 25.0923 -0.1 + vertex -39.0227 25.0923 0 + endloop + endfacet + facet normal 0.926216 0.376994 0 + outer loop + vertex -39.0227 25.0923 -0.1 + vertex -38.8265 24.6102 0 + vertex -38.8265 24.6102 -0.1 + endloop + endfacet + facet normal 0.967451 0.253059 0 + outer loop + vertex -39.0227 25.0923 0 + vertex -39.1186 25.4589 -0.1 + vertex -39.1186 25.4589 0 + endloop + endfacet + facet normal 0.967451 0.253059 0 + outer loop + vertex -39.1186 25.4589 -0.1 + vertex -39.0227 25.0923 0 + vertex -39.0227 25.0923 -0.1 + endloop + endfacet + facet normal 0.996684 0.0813708 0 + outer loop + vertex -39.1186 25.4589 0 + vertex -39.13 25.5984 -0.1 + vertex -39.13 25.5984 0 + endloop + endfacet + facet normal 0.996684 0.0813708 0 + outer loop + vertex -39.13 25.5984 -0.1 + vertex -39.1186 25.4589 0 + vertex -39.1186 25.4589 -0.1 + endloop + endfacet + facet normal 0.993685 -0.112203 0 + outer loop + vertex -39.13 25.5984 0 + vertex -39.1175 25.7085 -0.1 + vertex -39.1175 25.7085 0 + endloop + endfacet + facet normal 0.993685 -0.112203 0 + outer loop + vertex -39.1175 25.7085 -0.1 + vertex -39.13 25.5984 0 + vertex -39.13 25.5984 -0.1 + endloop + endfacet + facet normal 0.913337 -0.407205 0 + outer loop + vertex -39.1175 25.7085 0 + vertex -39.0817 25.7888 -0.1 + vertex -39.0817 25.7888 0 + endloop + endfacet + facet normal 0.913337 -0.407205 0 + outer loop + vertex -39.0817 25.7888 -0.1 + vertex -39.1175 25.7085 0 + vertex -39.1175 25.7085 -0.1 + endloop + endfacet + facet normal 0.651025 -0.759057 0 + outer loop + vertex -39.0817 25.7888 -0.1 + vertex -39.0229 25.8392 0 + vertex -39.0817 25.7888 0 + endloop + endfacet + facet normal 0.651025 -0.759057 0 + outer loop + vertex -39.0229 25.8392 0 + vertex -39.0817 25.7888 -0.1 + vertex -39.0229 25.8392 -0.1 + endloop + endfacet + facet normal 0.24215 -0.970239 0 + outer loop + vertex -39.0229 25.8392 -0.1 + vertex -38.9416 25.8595 0 + vertex -39.0229 25.8392 0 + endloop + endfacet + facet normal 0.24215 -0.970239 0 + outer loop + vertex -38.9416 25.8595 0 + vertex -39.0229 25.8392 -0.1 + vertex -38.9416 25.8595 -0.1 + endloop + endfacet + facet normal -0.0965024 -0.995333 0 + outer loop + vertex -38.9416 25.8595 -0.1 + vertex -38.8381 25.8495 0 + vertex -38.9416 25.8595 0 + endloop + endfacet + facet normal -0.0965024 -0.995333 -0 + outer loop + vertex -38.8381 25.8495 0 + vertex -38.9416 25.8595 -0.1 + vertex -38.8381 25.8495 -0.1 + endloop + endfacet + facet normal -0.308343 -0.951275 0 + outer loop + vertex -38.8381 25.8495 -0.1 + vertex -38.7129 25.8089 0 + vertex -38.8381 25.8495 0 + endloop + endfacet + facet normal -0.308343 -0.951275 -0 + outer loop + vertex -38.7129 25.8089 0 + vertex -38.8381 25.8495 -0.1 + vertex -38.7129 25.8089 -0.1 + endloop + endfacet + facet normal -0.437843 -0.899052 0 + outer loop + vertex -38.7129 25.8089 -0.1 + vertex -38.5664 25.7376 0 + vertex -38.7129 25.8089 0 + endloop + endfacet + facet normal -0.437843 -0.899052 -0 + outer loop + vertex -38.5664 25.7376 0 + vertex -38.7129 25.8089 -0.1 + vertex -38.5664 25.7376 -0.1 + endloop + endfacet + facet normal -0.553117 -0.833103 0 + outer loop + vertex -38.5664 25.7376 -0.1 + vertex -38.2113 25.5018 0 + vertex -38.5664 25.7376 0 + endloop + endfacet + facet normal -0.553117 -0.833103 -0 + outer loop + vertex -38.2113 25.5018 0 + vertex -38.5664 25.7376 -0.1 + vertex -38.2113 25.5018 -0.1 + endloop + endfacet + facet normal -0.638761 -0.769405 0 + outer loop + vertex -38.2113 25.5018 -0.1 + vertex -37.776 25.1404 0 + vertex -38.2113 25.5018 0 + endloop + endfacet + facet normal -0.638761 -0.769405 -0 + outer loop + vertex -37.776 25.1404 0 + vertex -38.2113 25.5018 -0.1 + vertex -37.776 25.1404 -0.1 + endloop + endfacet + facet normal -0.64475 -0.764393 0 + outer loop + vertex -37.776 25.1404 -0.1 + vertex -37.4147 24.8357 0 + vertex -37.776 25.1404 0 + endloop + endfacet + facet normal -0.64475 -0.764393 -0 + outer loop + vertex -37.4147 24.8357 0 + vertex -37.776 25.1404 -0.1 + vertex -37.4147 24.8357 -0.1 + endloop + endfacet + facet normal -0.602189 -0.798353 0 + outer loop + vertex -37.4147 24.8357 -0.1 + vertex -37.0225 24.5398 0 + vertex -37.4147 24.8357 0 + endloop + endfacet + facet normal -0.602189 -0.798353 -0 + outer loop + vertex -37.0225 24.5398 0 + vertex -37.4147 24.8357 -0.1 + vertex -37.0225 24.5398 -0.1 + endloop + endfacet + facet normal -0.562472 -0.826816 0 + outer loop + vertex -37.0225 24.5398 -0.1 + vertex -36.6025 24.2541 0 + vertex -37.0225 24.5398 0 + endloop + endfacet + facet normal -0.562472 -0.826816 -0 + outer loop + vertex -36.6025 24.2541 0 + vertex -37.0225 24.5398 -0.1 + vertex -36.6025 24.2541 -0.1 + endloop + endfacet + facet normal -0.525102 -0.851039 0 + outer loop + vertex -36.6025 24.2541 -0.1 + vertex -36.1579 23.9798 0 + vertex -36.6025 24.2541 0 + endloop + endfacet + facet normal -0.525102 -0.851039 -0 + outer loop + vertex -36.1579 23.9798 0 + vertex -36.6025 24.2541 -0.1 + vertex -36.1579 23.9798 -0.1 + endloop + endfacet + facet normal -0.489575 -0.871961 0 + outer loop + vertex -36.1579 23.9798 -0.1 + vertex -35.6921 23.7183 0 + vertex -36.1579 23.9798 0 + endloop + endfacet + facet normal -0.489575 -0.871961 -0 + outer loop + vertex -35.6921 23.7183 0 + vertex -36.1579 23.9798 -0.1 + vertex -35.6921 23.7183 -0.1 + endloop + endfacet + facet normal -0.455389 -0.890292 0 + outer loop + vertex -35.6921 23.7183 -0.1 + vertex -35.2082 23.4707 0 + vertex -35.6921 23.7183 0 + endloop + endfacet + facet normal -0.455389 -0.890292 -0 + outer loop + vertex -35.2082 23.4707 0 + vertex -35.6921 23.7183 -0.1 + vertex -35.2082 23.4707 -0.1 + endloop + endfacet + facet normal -0.422055 -0.90657 0 + outer loop + vertex -35.2082 23.4707 -0.1 + vertex -34.7094 23.2385 0 + vertex -35.2082 23.4707 0 + endloop + endfacet + facet normal -0.422055 -0.90657 -0 + outer loop + vertex -34.7094 23.2385 0 + vertex -35.2082 23.4707 -0.1 + vertex -34.7094 23.2385 -0.1 + endloop + endfacet + facet normal -0.389101 -0.921195 0 + outer loop + vertex -34.7094 23.2385 -0.1 + vertex -34.199 23.023 0 + vertex -34.7094 23.2385 0 + endloop + endfacet + facet normal -0.389101 -0.921195 -0 + outer loop + vertex -34.199 23.023 0 + vertex -34.7094 23.2385 -0.1 + vertex -34.199 23.023 -0.1 + endloop + endfacet + facet normal -0.356052 -0.934466 0 + outer loop + vertex -34.199 23.023 -0.1 + vertex -33.6803 22.8253 0 + vertex -34.199 23.023 0 + endloop + endfacet + facet normal -0.356052 -0.934466 -0 + outer loop + vertex -33.6803 22.8253 0 + vertex -34.199 23.023 -0.1 + vertex -33.6803 22.8253 -0.1 + endloop + endfacet + facet normal -0.3224 -0.946604 0 + outer loop + vertex -33.6803 22.8253 -0.1 + vertex -33.1564 22.6469 0 + vertex -33.6803 22.8253 0 + endloop + endfacet + facet normal -0.3224 -0.946604 -0 + outer loop + vertex -33.1564 22.6469 0 + vertex -33.6803 22.8253 -0.1 + vertex -33.1564 22.6469 -0.1 + endloop + endfacet + facet normal -0.287637 -0.95774 0 + outer loop + vertex -33.1564 22.6469 -0.1 + vertex -32.6306 22.489 0 + vertex -33.1564 22.6469 0 + endloop + endfacet + facet normal -0.287637 -0.95774 -0 + outer loop + vertex -32.6306 22.489 0 + vertex -33.1564 22.6469 -0.1 + vertex -32.6306 22.489 -0.1 + endloop + endfacet + facet normal -0.251171 -0.967943 0 + outer loop + vertex -32.6306 22.489 -0.1 + vertex -32.1061 22.3529 0 + vertex -32.6306 22.489 0 + endloop + endfacet + facet normal -0.251171 -0.967943 -0 + outer loop + vertex -32.1061 22.3529 0 + vertex -32.6306 22.489 -0.1 + vertex -32.1061 22.3529 -0.1 + endloop + endfacet + facet normal -0.212348 -0.977194 0 + outer loop + vertex -32.1061 22.3529 -0.1 + vertex -31.5861 22.2399 0 + vertex -32.1061 22.3529 0 + endloop + endfacet + facet normal -0.212348 -0.977194 -0 + outer loop + vertex -31.5861 22.2399 0 + vertex -32.1061 22.3529 -0.1 + vertex -31.5861 22.2399 -0.1 + endloop + endfacet + facet normal -0.170418 -0.985372 0 + outer loop + vertex -31.5861 22.2399 -0.1 + vertex -31.074 22.1513 0 + vertex -31.5861 22.2399 0 + endloop + endfacet + facet normal -0.170418 -0.985372 -0 + outer loop + vertex -31.074 22.1513 0 + vertex -31.5861 22.2399 -0.1 + vertex -31.074 22.1513 -0.1 + endloop + endfacet + facet normal -0.124476 -0.992223 0 + outer loop + vertex -31.074 22.1513 -0.1 + vertex -30.5728 22.0884 0 + vertex -31.074 22.1513 0 + endloop + endfacet + facet normal -0.124476 -0.992223 -0 + outer loop + vertex -30.5728 22.0884 0 + vertex -31.074 22.1513 -0.1 + vertex -30.5728 22.0884 -0.1 + endloop + endfacet + facet normal -0.0734593 -0.997298 0 + outer loop + vertex -30.5728 22.0884 -0.1 + vertex -30.0859 22.0525 0 + vertex -30.5728 22.0884 0 + endloop + endfacet + facet normal -0.0734593 -0.997298 -0 + outer loop + vertex -30.0859 22.0525 0 + vertex -30.5728 22.0884 -0.1 + vertex -30.0859 22.0525 -0.1 + endloop + endfacet + facet normal -0.0457633 -0.998952 0 + outer loop + vertex -30.0859 22.0525 -0.1 + vertex -28.3394 21.9725 0 + vertex -30.0859 22.0525 0 + endloop + endfacet + facet normal -0.0457633 -0.998952 -0 + outer loop + vertex -28.3394 21.9725 0 + vertex -30.0859 22.0525 -0.1 + vertex -28.3394 21.9725 -0.1 + endloop + endfacet + facet normal 0.491953 0.870622 -0 + outer loop + vertex -28.3394 21.9725 -0.1 + vertex -29.0186 22.3563 0 + vertex -28.3394 21.9725 0 + endloop + endfacet + facet normal 0.491953 0.870622 0 + outer loop + vertex -29.0186 22.3563 0 + vertex -28.3394 21.9725 -0.1 + vertex -29.0186 22.3563 -0.1 + endloop + endfacet + facet normal 0.506614 0.862173 -0 + outer loop + vertex -29.0186 22.3563 -0.1 + vertex -29.4321 22.5993 0 + vertex -29.0186 22.3563 0 + endloop + endfacet + facet normal 0.506614 0.862173 0 + outer loop + vertex -29.4321 22.5993 0 + vertex -29.0186 22.3563 -0.1 + vertex -29.4321 22.5993 -0.1 + endloop + endfacet + facet normal 0.54186 0.840469 -0 + outer loop + vertex -29.4321 22.5993 -0.1 + vertex -29.7937 22.8325 0 + vertex -29.4321 22.5993 0 + endloop + endfacet + facet normal 0.54186 0.840469 0 + outer loop + vertex -29.7937 22.8325 0 + vertex -29.4321 22.5993 -0.1 + vertex -29.7937 22.8325 -0.1 + endloop + endfacet + facet normal 0.585975 0.810329 -0 + outer loop + vertex -29.7937 22.8325 -0.1 + vertex -30.1071 23.0591 0 + vertex -29.7937 22.8325 0 + endloop + endfacet + facet normal 0.585975 0.810329 0 + outer loop + vertex -30.1071 23.0591 0 + vertex -29.7937 22.8325 -0.1 + vertex -30.1071 23.0591 -0.1 + endloop + endfacet + facet normal 0.639127 0.769101 -0 + outer loop + vertex -30.1071 23.0591 -0.1 + vertex -30.3761 23.2826 0 + vertex -30.1071 23.0591 0 + endloop + endfacet + facet normal 0.639127 0.769101 0 + outer loop + vertex -30.3761 23.2826 0 + vertex -30.1071 23.0591 -0.1 + vertex -30.3761 23.2826 -0.1 + endloop + endfacet + facet normal 0.700019 0.714124 -0 + outer loop + vertex -30.3761 23.2826 -0.1 + vertex -30.6044 23.5064 0 + vertex -30.3761 23.2826 0 + endloop + endfacet + facet normal 0.700019 0.714124 0 + outer loop + vertex -30.6044 23.5064 0 + vertex -30.3761 23.2826 -0.1 + vertex -30.6044 23.5064 -0.1 + endloop + endfacet + facet normal 0.765169 0.643829 0 + outer loop + vertex -30.6044 23.5064 0 + vertex -30.7957 23.7338 -0.1 + vertex -30.7957 23.7338 0 + endloop + endfacet + facet normal 0.765169 0.643829 0 + outer loop + vertex -30.7957 23.7338 -0.1 + vertex -30.6044 23.5064 0 + vertex -30.6044 23.5064 -0.1 + endloop + endfacet + facet normal 0.828969 0.559295 0 + outer loop + vertex -30.7957 23.7338 0 + vertex -30.9539 23.9682 -0.1 + vertex -30.9539 23.9682 0 + endloop + endfacet + facet normal 0.828969 0.559295 0 + outer loop + vertex -30.9539 23.9682 -0.1 + vertex -30.7957 23.7338 0 + vertex -30.7957 23.7338 -0.1 + endloop + endfacet + facet normal 0.885091 0.465418 0 + outer loop + vertex -30.9539 23.9682 0 + vertex -31.0826 24.213 -0.1 + vertex -31.0826 24.213 0 + endloop + endfacet + facet normal 0.885091 0.465418 0 + outer loop + vertex -31.0826 24.213 -0.1 + vertex -30.9539 23.9682 0 + vertex -30.9539 23.9682 -0.1 + endloop + endfacet + facet normal 0.929158 0.369682 0 + outer loop + vertex -31.0826 24.213 0 + vertex -31.2103 24.5339 -0.1 + vertex -31.2103 24.5339 0 + endloop + endfacet + facet normal 0.929158 0.369682 0 + outer loop + vertex -31.2103 24.5339 -0.1 + vertex -31.0826 24.213 0 + vertex -31.0826 24.213 -0.1 + endloop + endfacet + facet normal 0.975453 0.220208 0 + outer loop + vertex -31.2103 24.5339 0 + vertex -31.2656 24.779 -0.1 + vertex -31.2656 24.779 0 + endloop + endfacet + facet normal 0.975453 0.220208 0 + outer loop + vertex -31.2656 24.779 -0.1 + vertex -31.2103 24.5339 0 + vertex -31.2103 24.5339 -0.1 + endloop + endfacet + facet normal 0.99992 0.0126114 0 + outer loop + vertex -31.2656 24.779 0 + vertex -31.2668 24.8727 -0.1 + vertex -31.2668 24.8727 0 + endloop + endfacet + facet normal 0.99992 0.0126114 0 + outer loop + vertex -31.2668 24.8727 -0.1 + vertex -31.2656 24.779 0 + vertex -31.2656 24.779 -0.1 + endloop + endfacet + facet normal 0.977346 -0.211648 0 + outer loop + vertex -31.2668 24.8727 0 + vertex -31.2507 24.9472 -0.1 + vertex -31.2507 24.9472 0 + endloop + endfacet + facet normal 0.977346 -0.211648 0 + outer loop + vertex -31.2507 24.9472 -0.1 + vertex -31.2668 24.8727 0 + vertex -31.2668 24.8727 -0.1 + endloop + endfacet + facet normal 0.856395 -0.516321 0 + outer loop + vertex -31.2507 24.9472 0 + vertex -31.2175 25.0021 -0.1 + vertex -31.2175 25.0021 0 + endloop + endfacet + facet normal 0.856395 -0.516321 0 + outer loop + vertex -31.2175 25.0021 -0.1 + vertex -31.2507 24.9472 0 + vertex -31.2507 24.9472 -0.1 + endloop + endfacet + facet normal 0.578733 -0.815517 0 + outer loop + vertex -31.2175 25.0021 -0.1 + vertex -31.1676 25.0376 0 + vertex -31.2175 25.0021 0 + endloop + endfacet + facet normal 0.578733 -0.815517 0 + outer loop + vertex -31.1676 25.0376 0 + vertex -31.2175 25.0021 -0.1 + vertex -31.1676 25.0376 -0.1 + endloop + endfacet + facet normal 0.230651 -0.973037 0 + outer loop + vertex -31.1676 25.0376 -0.1 + vertex -31.1012 25.0533 0 + vertex -31.1676 25.0376 0 + endloop + endfacet + facet normal 0.230651 -0.973037 0 + outer loop + vertex -31.1012 25.0533 0 + vertex -31.1676 25.0376 -0.1 + vertex -31.1012 25.0533 -0.1 + endloop + endfacet + facet normal -0.0489514 -0.998801 0 + outer loop + vertex -31.1012 25.0533 -0.1 + vertex -31.0185 25.0493 0 + vertex -31.1012 25.0533 0 + endloop + endfacet + facet normal -0.0489514 -0.998801 -0 + outer loop + vertex -31.0185 25.0493 0 + vertex -31.1012 25.0533 -0.1 + vertex -31.0185 25.0493 -0.1 + endloop + endfacet + facet normal -0.303972 -0.952681 0 + outer loop + vertex -31.0185 25.0493 -0.1 + vertex -30.8055 24.9813 0 + vertex -31.0185 25.0493 0 + endloop + endfacet + facet normal -0.303972 -0.952681 -0 + outer loop + vertex -30.8055 24.9813 0 + vertex -31.0185 25.0493 -0.1 + vertex -30.8055 24.9813 -0.1 + endloop + endfacet + facet normal -0.475595 -0.879664 0 + outer loop + vertex -30.8055 24.9813 -0.1 + vertex -30.5308 24.8328 0 + vertex -30.8055 24.9813 0 + endloop + endfacet + facet normal -0.475595 -0.879664 -0 + outer loop + vertex -30.5308 24.8328 0 + vertex -30.8055 24.9813 -0.1 + vertex -30.5308 24.8328 -0.1 + endloop + endfacet + facet normal -0.566807 -0.82385 0 + outer loop + vertex -30.5308 24.8328 -0.1 + vertex -30.1964 24.6027 0 + vertex -30.5308 24.8328 0 + endloop + endfacet + facet normal -0.566807 -0.82385 -0 + outer loop + vertex -30.1964 24.6027 0 + vertex -30.5308 24.8328 -0.1 + vertex -30.1964 24.6027 -0.1 + endloop + endfacet + facet normal -0.552424 -0.833564 0 + outer loop + vertex -30.1964 24.6027 -0.1 + vertex -29.8023 24.3416 0 + vertex -30.1964 24.6027 0 + endloop + endfacet + facet normal -0.552424 -0.833564 -0 + outer loop + vertex -29.8023 24.3416 0 + vertex -30.1964 24.6027 -0.1 + vertex -29.8023 24.3416 -0.1 + endloop + endfacet + facet normal -0.451398 -0.892323 0 + outer loop + vertex -29.8023 24.3416 -0.1 + vertex -29.384 24.13 0 + vertex -29.8023 24.3416 0 + endloop + endfacet + facet normal -0.451398 -0.892323 -0 + outer loop + vertex -29.384 24.13 0 + vertex -29.8023 24.3416 -0.1 + vertex -29.384 24.13 -0.1 + endloop + endfacet + facet normal -0.34198 -0.939707 0 + outer loop + vertex -29.384 24.13 -0.1 + vertex -28.9359 23.9669 0 + vertex -29.384 24.13 0 + endloop + endfacet + facet normal -0.34198 -0.939707 -0 + outer loop + vertex -28.9359 23.9669 0 + vertex -29.384 24.13 -0.1 + vertex -28.9359 23.9669 -0.1 + endloop + endfacet + facet normal -0.232476 -0.972602 0 + outer loop + vertex -28.9359 23.9669 -0.1 + vertex -28.4524 23.8513 0 + vertex -28.9359 23.9669 0 + endloop + endfacet + facet normal -0.232476 -0.972602 -0 + outer loop + vertex -28.4524 23.8513 0 + vertex -28.9359 23.9669 -0.1 + vertex -28.4524 23.8513 -0.1 + endloop + endfacet + facet normal -0.130593 -0.991436 0 + outer loop + vertex -28.4524 23.8513 -0.1 + vertex -27.9279 23.7822 0 + vertex -28.4524 23.8513 0 + endloop + endfacet + facet normal -0.130593 -0.991436 -0 + outer loop + vertex -27.9279 23.7822 0 + vertex -28.4524 23.8513 -0.1 + vertex -27.9279 23.7822 -0.1 + endloop + endfacet + facet normal -0.0413274 -0.999146 0 + outer loop + vertex -27.9279 23.7822 -0.1 + vertex -27.3569 23.7586 0 + vertex -27.9279 23.7822 0 + endloop + endfacet + facet normal -0.0413274 -0.999146 -0 + outer loop + vertex -27.3569 23.7586 0 + vertex -27.9279 23.7822 -0.1 + vertex -27.3569 23.7586 -0.1 + endloop + endfacet + facet normal 0.0333972 -0.999442 0 + outer loop + vertex -27.3569 23.7586 -0.1 + vertex -26.7338 23.7794 0 + vertex -27.3569 23.7586 0 + endloop + endfacet + facet normal 0.0333972 -0.999442 0 + outer loop + vertex -26.7338 23.7794 0 + vertex -27.3569 23.7586 -0.1 + vertex -26.7338 23.7794 -0.1 + endloop + endfacet + facet normal 0.0939488 -0.995577 0 + outer loop + vertex -26.7338 23.7794 -0.1 + vertex -26.053 23.8437 0 + vertex -26.7338 23.7794 0 + endloop + endfacet + facet normal 0.0939488 -0.995577 0 + outer loop + vertex -26.053 23.8437 0 + vertex -26.7338 23.7794 -0.1 + vertex -26.053 23.8437 -0.1 + endloop + endfacet + facet normal 0.119464 -0.992839 0 + outer loop + vertex -26.053 23.8437 -0.1 + vertex -24.6523 24.0122 0 + vertex -26.053 23.8437 0 + endloop + endfacet + facet normal 0.119464 -0.992839 0 + outer loop + vertex -24.6523 24.0122 0 + vertex -26.053 23.8437 -0.1 + vertex -24.6523 24.0122 -0.1 + endloop + endfacet + facet normal 0.193693 0.981062 -0 + outer loop + vertex -24.6523 24.0122 -0.1 + vertex -26.0107 24.2804 0 + vertex -24.6523 24.0122 0 + endloop + endfacet + facet normal 0.193693 0.981062 0 + outer loop + vertex -26.0107 24.2804 0 + vertex -24.6523 24.0122 -0.1 + vertex -26.0107 24.2804 -0.1 + endloop + endfacet + facet normal 0.214134 0.976804 -0 + outer loop + vertex -26.0107 24.2804 -0.1 + vertex -26.5818 24.4056 0 + vertex -26.0107 24.2804 0 + endloop + endfacet + facet normal 0.214134 0.976804 0 + outer loop + vertex -26.5818 24.4056 0 + vertex -26.0107 24.2804 -0.1 + vertex -26.5818 24.4056 -0.1 + endloop + endfacet + facet normal 0.258173 0.966099 -0 + outer loop + vertex -26.5818 24.4056 -0.1 + vertex -27.1227 24.5501 0 + vertex -26.5818 24.4056 0 + endloop + endfacet + facet normal 0.258173 0.966099 0 + outer loop + vertex -27.1227 24.5501 0 + vertex -26.5818 24.4056 -0.1 + vertex -27.1227 24.5501 -0.1 + endloop + endfacet + facet normal 0.306051 0.952015 -0 + outer loop + vertex -27.1227 24.5501 -0.1 + vertex -27.636 24.7152 0 + vertex -27.1227 24.5501 0 + endloop + endfacet + facet normal 0.306051 0.952015 0 + outer loop + vertex -27.636 24.7152 0 + vertex -27.1227 24.5501 -0.1 + vertex -27.636 24.7152 -0.1 + endloop + endfacet + facet normal 0.356888 0.934147 -0 + outer loop + vertex -27.636 24.7152 -0.1 + vertex -28.1248 24.9019 0 + vertex -27.636 24.7152 0 + endloop + endfacet + facet normal 0.356888 0.934147 0 + outer loop + vertex -28.1248 24.9019 0 + vertex -27.636 24.7152 -0.1 + vertex -28.1248 24.9019 -0.1 + endloop + endfacet + facet normal 0.409468 0.912325 -0 + outer loop + vertex -28.1248 24.9019 -0.1 + vertex -28.5919 25.1115 0 + vertex -28.1248 24.9019 0 + endloop + endfacet + facet normal 0.409468 0.912325 0 + outer loop + vertex -28.5919 25.1115 0 + vertex -28.1248 24.9019 -0.1 + vertex -28.5919 25.1115 -0.1 + endloop + endfacet + facet normal 0.462329 0.886708 -0 + outer loop + vertex -28.5919 25.1115 -0.1 + vertex -29.0402 25.3453 0 + vertex -28.5919 25.1115 0 + endloop + endfacet + facet normal 0.462329 0.886708 0 + outer loop + vertex -29.0402 25.3453 0 + vertex -28.5919 25.1115 -0.1 + vertex -29.0402 25.3453 -0.1 + endloop + endfacet + facet normal 0.51393 0.857832 -0 + outer loop + vertex -29.0402 25.3453 -0.1 + vertex -29.4725 25.6043 0 + vertex -29.0402 25.3453 0 + endloop + endfacet + facet normal 0.51393 0.857832 0 + outer loop + vertex -29.4725 25.6043 0 + vertex -29.0402 25.3453 -0.1 + vertex -29.4725 25.6043 -0.1 + endloop + endfacet + facet normal 0.562822 0.826578 -0 + outer loop + vertex -29.4725 25.6043 -0.1 + vertex -29.8918 25.8898 0 + vertex -29.4725 25.6043 0 + endloop + endfacet + facet normal 0.562822 0.826578 0 + outer loop + vertex -29.8918 25.8898 0 + vertex -29.4725 25.6043 -0.1 + vertex -29.8918 25.8898 -0.1 + endloop + endfacet + facet normal 0.607723 0.794149 -0 + outer loop + vertex -29.8918 25.8898 -0.1 + vertex -30.6514 26.471 0 + vertex -29.8918 25.8898 0 + endloop + endfacet + facet normal 0.607723 0.794149 0 + outer loop + vertex -30.6514 26.471 0 + vertex -29.8918 25.8898 -0.1 + vertex -30.6514 26.471 -0.1 + endloop + endfacet + facet normal 0.662833 0.748767 -0 + outer loop + vertex -30.6514 26.471 -0.1 + vertex -30.9143 26.7038 0 + vertex -30.6514 26.471 0 + endloop + endfacet + facet normal 0.662833 0.748767 0 + outer loop + vertex -30.9143 26.7038 0 + vertex -30.6514 26.471 -0.1 + vertex -30.9143 26.7038 -0.1 + endloop + endfacet + facet normal 0.725171 0.688569 0 + outer loop + vertex -30.9143 26.7038 0 + vertex -31.1043 26.9038 -0.1 + vertex -31.1043 26.9038 0 + endloop + endfacet + facet normal 0.725171 0.688569 0 + outer loop + vertex -31.1043 26.9038 -0.1 + vertex -30.9143 26.7038 0 + vertex -30.9143 26.7038 -0.1 + endloop + endfacet + facet normal 0.818345 0.574727 0 + outer loop + vertex -31.1043 26.9038 0 + vertex -31.2248 27.0754 -0.1 + vertex -31.2248 27.0754 0 + endloop + endfacet + facet normal 0.818345 0.574727 0 + outer loop + vertex -31.2248 27.0754 -0.1 + vertex -31.1043 26.9038 0 + vertex -31.1043 26.9038 -0.1 + endloop + endfacet + facet normal 0.937593 0.347734 0 + outer loop + vertex -31.2248 27.0754 0 + vertex -31.2795 27.2229 -0.1 + vertex -31.2795 27.2229 0 + endloop + endfacet + facet normal 0.937593 0.347734 0 + outer loop + vertex -31.2795 27.2229 -0.1 + vertex -31.2248 27.0754 0 + vertex -31.2248 27.0754 -0.1 + endloop + endfacet + facet normal 0.99829 -0.0584589 0 + outer loop + vertex -31.2795 27.2229 0 + vertex -31.272 27.3506 -0.1 + vertex -31.272 27.3506 0 + endloop + endfacet + facet normal 0.99829 -0.0584589 0 + outer loop + vertex -31.272 27.3506 -0.1 + vertex -31.2795 27.2229 0 + vertex -31.2795 27.2229 -0.1 + endloop + endfacet + facet normal 0.861994 -0.506918 0 + outer loop + vertex -31.272 27.3506 0 + vertex -31.2059 27.4629 -0.1 + vertex -31.2059 27.4629 0 + endloop + endfacet + facet normal 0.861994 -0.506918 0 + outer loop + vertex -31.2059 27.4629 -0.1 + vertex -31.272 27.3506 0 + vertex -31.272 27.3506 -0.1 + endloop + endfacet + facet normal 0.566536 -0.824037 0 + outer loop + vertex -31.2059 27.4629 -0.1 + vertex -31.1289 27.5158 0 + vertex -31.2059 27.4629 0 + endloop + endfacet + facet normal 0.566536 -0.824037 0 + outer loop + vertex -31.1289 27.5158 0 + vertex -31.2059 27.4629 -0.1 + vertex -31.1289 27.5158 -0.1 + endloop + endfacet + facet normal 0.198224 -0.980157 0 + outer loop + vertex -31.1289 27.5158 -0.1 + vertex -31.0145 27.539 0 + vertex -31.1289 27.5158 0 + endloop + endfacet + facet normal 0.198224 -0.980157 0 + outer loop + vertex -31.0145 27.539 0 + vertex -31.1289 27.5158 -0.1 + vertex -31.0145 27.539 -0.1 + endloop + endfacet + facet normal -0.0498903 -0.998755 0 + outer loop + vertex -31.0145 27.539 -0.1 + vertex -30.8579 27.5312 0 + vertex -31.0145 27.539 0 + endloop + endfacet + facet normal -0.0498903 -0.998755 -0 + outer loop + vertex -30.8579 27.5312 0 + vertex -31.0145 27.539 -0.1 + vertex -30.8579 27.5312 -0.1 + endloop + endfacet + facet normal -0.192665 -0.981265 0 + outer loop + vertex -30.8579 27.5312 -0.1 + vertex -30.6543 27.4912 0 + vertex -30.8579 27.5312 0 + endloop + endfacet + facet normal -0.192665 -0.981265 -0 + outer loop + vertex -30.6543 27.4912 0 + vertex -30.8579 27.5312 -0.1 + vertex -30.6543 27.4912 -0.1 + endloop + endfacet + facet normal -0.304248 -0.952593 0 + outer loop + vertex -30.6543 27.4912 -0.1 + vertex -30.0875 27.3102 0 + vertex -30.6543 27.4912 0 + endloop + endfacet + facet normal -0.304248 -0.952593 -0 + outer loop + vertex -30.0875 27.3102 0 + vertex -30.6543 27.4912 -0.1 + vertex -30.0875 27.3102 -0.1 + endloop + endfacet + facet normal -0.370492 -0.928836 0 + outer loop + vertex -30.0875 27.3102 -0.1 + vertex -29.2762 26.9865 0 + vertex -30.0875 27.3102 0 + endloop + endfacet + facet normal -0.370492 -0.928836 -0 + outer loop + vertex -29.2762 26.9865 0 + vertex -30.0875 27.3102 -0.1 + vertex -29.2762 26.9865 -0.1 + endloop + endfacet + facet normal -0.380261 -0.924879 0 + outer loop + vertex -29.2762 26.9865 -0.1 + vertex -28.7314 26.7626 0 + vertex -29.2762 26.9865 0 + endloop + endfacet + facet normal -0.380261 -0.924879 -0 + outer loop + vertex -28.7314 26.7626 0 + vertex -29.2762 26.9865 -0.1 + vertex -28.7314 26.7626 -0.1 + endloop + endfacet + facet normal -0.349246 -0.937031 0 + outer loop + vertex -28.7314 26.7626 -0.1 + vertex -28.2663 26.5892 0 + vertex -28.7314 26.7626 0 + endloop + endfacet + facet normal -0.349246 -0.937031 -0 + outer loop + vertex -28.2663 26.5892 0 + vertex -28.7314 26.7626 -0.1 + vertex -28.2663 26.5892 -0.1 + endloop + endfacet + facet normal -0.29135 -0.956616 0 + outer loop + vertex -28.2663 26.5892 -0.1 + vertex -27.8395 26.4592 0 + vertex -28.2663 26.5892 0 + endloop + endfacet + facet normal -0.29135 -0.956616 -0 + outer loop + vertex -27.8395 26.4592 0 + vertex -28.2663 26.5892 -0.1 + vertex -27.8395 26.4592 -0.1 + endloop + endfacet + facet normal -0.213404 -0.976964 0 + outer loop + vertex -27.8395 26.4592 -0.1 + vertex -27.4097 26.3653 0 + vertex -27.8395 26.4592 0 + endloop + endfacet + facet normal -0.213404 -0.976964 -0 + outer loop + vertex -27.4097 26.3653 0 + vertex -27.8395 26.4592 -0.1 + vertex -27.4097 26.3653 -0.1 + endloop + endfacet + facet normal -0.13595 -0.990716 0 + outer loop + vertex -27.4097 26.3653 -0.1 + vertex -26.9353 26.3003 0 + vertex -27.4097 26.3653 0 + endloop + endfacet + facet normal -0.13595 -0.990716 -0 + outer loop + vertex -26.9353 26.3003 0 + vertex -27.4097 26.3653 -0.1 + vertex -26.9353 26.3003 -0.1 + endloop + endfacet + facet normal -0.077531 -0.99699 0 + outer loop + vertex -26.9353 26.3003 -0.1 + vertex -26.3751 26.2567 0 + vertex -26.9353 26.3003 0 + endloop + endfacet + facet normal -0.077531 -0.99699 -0 + outer loop + vertex -26.3751 26.2567 0 + vertex -26.9353 26.3003 -0.1 + vertex -26.3751 26.2567 -0.1 + endloop + endfacet + facet normal -0.0334453 -0.999441 0 + outer loop + vertex -26.3751 26.2567 -0.1 + vertex -24.8316 26.205 0 + vertex -26.3751 26.2567 0 + endloop + endfacet + facet normal -0.0334453 -0.999441 -0 + outer loop + vertex -24.8316 26.205 0 + vertex -26.3751 26.2567 -0.1 + vertex -24.8316 26.205 -0.1 + endloop + endfacet + facet normal -0.00940958 -0.999956 0 + outer loop + vertex -24.8316 26.205 -0.1 + vertex -23.1385 26.1891 0 + vertex -24.8316 26.205 0 + endloop + endfacet + facet normal -0.00940958 -0.999956 -0 + outer loop + vertex -23.1385 26.1891 0 + vertex -24.8316 26.205 -0.1 + vertex -23.1385 26.1891 -0.1 + endloop + endfacet + facet normal 0.0248422 -0.999691 0 + outer loop + vertex -23.1385 26.1891 -0.1 + vertex -22.5186 26.2045 0 + vertex -23.1385 26.1891 0 + endloop + endfacet + facet normal 0.0248422 -0.999691 0 + outer loop + vertex -22.5186 26.2045 0 + vertex -23.1385 26.1891 -0.1 + vertex -22.5186 26.2045 -0.1 + endloop + endfacet + facet normal 0.066912 -0.997759 0 + outer loop + vertex -22.5186 26.2045 -0.1 + vertex -22.0356 26.2369 0 + vertex -22.5186 26.2045 0 + endloop + endfacet + facet normal 0.066912 -0.997759 0 + outer loop + vertex -22.0356 26.2369 0 + vertex -22.5186 26.2045 -0.1 + vertex -22.0356 26.2369 -0.1 + endloop + endfacet + facet normal 0.139914 -0.990164 0 + outer loop + vertex -22.0356 26.2369 -0.1 + vertex -21.6785 26.2874 0 + vertex -22.0356 26.2369 0 + endloop + endfacet + facet normal 0.139914 -0.990164 0 + outer loop + vertex -21.6785 26.2874 0 + vertex -22.0356 26.2369 -0.1 + vertex -21.6785 26.2874 -0.1 + endloop + endfacet + facet normal 0.276553 -0.960999 0 + outer loop + vertex -21.6785 26.2874 -0.1 + vertex -21.4368 26.3569 0 + vertex -21.6785 26.2874 0 + endloop + endfacet + facet normal 0.276553 -0.960999 0 + outer loop + vertex -21.4368 26.3569 0 + vertex -21.6785 26.2874 -0.1 + vertex -21.4368 26.3569 -0.1 + endloop + endfacet + facet normal 0.462821 -0.886452 0 + outer loop + vertex -21.4368 26.3569 -0.1 + vertex -21.3558 26.3992 0 + vertex -21.4368 26.3569 0 + endloop + endfacet + facet normal 0.462821 -0.886452 0 + outer loop + vertex -21.3558 26.3992 0 + vertex -21.4368 26.3569 -0.1 + vertex -21.3558 26.3992 -0.1 + endloop + endfacet + facet normal 0.645311 -0.76392 0 + outer loop + vertex -21.3558 26.3992 -0.1 + vertex -21.2997 26.4466 0 + vertex -21.3558 26.3992 0 + endloop + endfacet + facet normal 0.645311 -0.76392 0 + outer loop + vertex -21.2997 26.4466 0 + vertex -21.3558 26.3992 -0.1 + vertex -21.2997 26.4466 -0.1 + endloop + endfacet + facet normal 0.84984 -0.527041 0 + outer loop + vertex -21.2997 26.4466 0 + vertex -21.2669 26.4994 -0.1 + vertex -21.2669 26.4994 0 + endloop + endfacet + facet normal 0.84984 -0.527041 0 + outer loop + vertex -21.2669 26.4994 -0.1 + vertex -21.2997 26.4466 0 + vertex -21.2997 26.4466 -0.1 + endloop + endfacet + facet normal 0.98379 -0.179322 0 + outer loop + vertex -21.2669 26.4994 0 + vertex -21.2563 26.5576 -0.1 + vertex -21.2563 26.5576 0 + endloop + endfacet + facet normal 0.98379 -0.179322 0 + outer loop + vertex -21.2563 26.5576 -0.1 + vertex -21.2669 26.4994 0 + vertex -21.2669 26.4994 -0.1 + endloop + endfacet + facet normal 0.837844 0.54591 0 + outer loop + vertex -21.2563 26.5576 0 + vertex -21.2799 26.5937 -0.1 + vertex -21.2799 26.5937 0 + endloop + endfacet + facet normal 0.837844 0.54591 0 + outer loop + vertex -21.2799 26.5937 -0.1 + vertex -21.2563 26.5576 0 + vertex -21.2563 26.5576 -0.1 + endloop + endfacet + facet normal 0.505324 0.86293 -0 + outer loop + vertex -21.2799 26.5937 -0.1 + vertex -21.3473 26.6332 0 + vertex -21.2799 26.5937 0 + endloop + endfacet + facet normal 0.505324 0.86293 0 + outer loop + vertex -21.3473 26.6332 0 + vertex -21.2799 26.5937 -0.1 + vertex -21.3473 26.6332 -0.1 + endloop + endfacet + facet normal 0.321132 0.947035 -0 + outer loop + vertex -21.3473 26.6332 -0.1 + vertex -21.5951 26.7172 0 + vertex -21.3473 26.6332 0 + endloop + endfacet + facet normal 0.321132 0.947035 0 + outer loop + vertex -21.5951 26.7172 0 + vertex -21.3473 26.6332 -0.1 + vertex -21.5951 26.7172 -0.1 + endloop + endfacet + facet normal 0.218663 0.9758 -0 + outer loop + vertex -21.5951 26.7172 -0.1 + vertex -21.9618 26.7994 0 + vertex -21.5951 26.7172 0 + endloop + endfacet + facet normal 0.218663 0.9758 0 + outer loop + vertex -21.9618 26.7994 0 + vertex -21.5951 26.7172 -0.1 + vertex -21.9618 26.7994 -0.1 + endloop + endfacet + facet normal 0.154639 0.987971 -0 + outer loop + vertex -21.9618 26.7994 -0.1 + vertex -22.4095 26.8695 0 + vertex -21.9618 26.7994 0 + endloop + endfacet + facet normal 0.154639 0.987971 0 + outer loop + vertex -22.4095 26.8695 0 + vertex -21.9618 26.7994 -0.1 + vertex -22.4095 26.8695 -0.1 + endloop + endfacet + facet normal 0.17991 0.983683 -0 + outer loop + vertex -22.4095 26.8695 -0.1 + vertex -22.8078 26.9423 0 + vertex -22.4095 26.8695 0 + endloop + endfacet + facet normal 0.17991 0.983683 0 + outer loop + vertex -22.8078 26.9423 0 + vertex -22.4095 26.8695 -0.1 + vertex -22.8078 26.9423 -0.1 + endloop + endfacet + facet normal 0.273496 0.961873 -0 + outer loop + vertex -22.8078 26.9423 -0.1 + vertex -23.1972 27.0531 0 + vertex -22.8078 26.9423 0 + endloop + endfacet + facet normal 0.273496 0.961873 0 + outer loop + vertex -23.1972 27.0531 0 + vertex -22.8078 26.9423 -0.1 + vertex -23.1972 27.0531 -0.1 + endloop + endfacet + facet normal 0.356994 0.934107 -0 + outer loop + vertex -23.1972 27.0531 -0.1 + vertex -23.56 27.1917 0 + vertex -23.1972 27.0531 0 + endloop + endfacet + facet normal 0.356994 0.934107 0 + outer loop + vertex -23.56 27.1917 0 + vertex -23.1972 27.0531 -0.1 + vertex -23.56 27.1917 -0.1 + endloop + endfacet + facet normal 0.441429 0.897296 -0 + outer loop + vertex -23.56 27.1917 -0.1 + vertex -23.8785 27.3484 0 + vertex -23.56 27.1917 0 + endloop + endfacet + facet normal 0.441429 0.897296 0 + outer loop + vertex -23.8785 27.3484 0 + vertex -23.56 27.1917 -0.1 + vertex -23.8785 27.3484 -0.1 + endloop + endfacet + facet normal 0.540697 0.841217 -0 + outer loop + vertex -23.8785 27.3484 -0.1 + vertex -24.1346 27.513 0 + vertex -23.8785 27.3484 0 + endloop + endfacet + facet normal 0.540697 0.841217 0 + outer loop + vertex -24.1346 27.513 0 + vertex -23.8785 27.3484 -0.1 + vertex -24.1346 27.513 -0.1 + endloop + endfacet + facet normal 0.678607 0.734501 -0 + outer loop + vertex -24.1346 27.513 -0.1 + vertex -24.3107 27.6757 0 + vertex -24.1346 27.513 0 + endloop + endfacet + facet normal 0.678607 0.734501 0 + outer loop + vertex -24.3107 27.6757 0 + vertex -24.1346 27.513 -0.1 + vertex -24.3107 27.6757 -0.1 + endloop + endfacet + facet normal 0.828129 0.560537 0 + outer loop + vertex -24.3107 27.6757 0 + vertex -24.3632 27.7532 -0.1 + vertex -24.3632 27.7532 0 + endloop + endfacet + facet normal 0.828129 0.560537 0 + outer loop + vertex -24.3632 27.7532 -0.1 + vertex -24.3107 27.6757 0 + vertex -24.3107 27.6757 -0.1 + endloop + endfacet + facet normal 0.943401 0.331655 0 + outer loop + vertex -24.3632 27.7532 0 + vertex -24.3889 27.8265 -0.1 + vertex -24.3889 27.8265 0 + endloop + endfacet + facet normal 0.943401 0.331655 0 + outer loop + vertex -24.3889 27.8265 -0.1 + vertex -24.3632 27.7532 0 + vertex -24.3632 27.7532 -0.1 + endloop + endfacet + facet normal 0.998917 -0.0465292 0 + outer loop + vertex -24.3889 27.8265 0 + vertex -24.3858 27.8943 -0.1 + vertex -24.3858 27.8943 0 + endloop + endfacet + facet normal 0.998917 -0.0465292 0 + outer loop + vertex -24.3858 27.8943 -0.1 + vertex -24.3889 27.8265 0 + vertex -24.3889 27.8265 -0.1 + endloop + endfacet + facet normal 0.871924 -0.489641 0 + outer loop + vertex -24.3858 27.8943 0 + vertex -24.3515 27.9554 -0.1 + vertex -24.3515 27.9554 0 + endloop + endfacet + facet normal 0.871924 -0.489641 0 + outer loop + vertex -24.3515 27.9554 -0.1 + vertex -24.3858 27.8943 0 + vertex -24.3858 27.8943 -0.1 + endloop + endfacet + facet normal 0.330372 -0.943851 0 + outer loop + vertex -24.3515 27.9554 -0.1 + vertex -24.2923 27.9761 0 + vertex -24.3515 27.9554 0 + endloop + endfacet + facet normal 0.330372 -0.943851 0 + outer loop + vertex -24.2923 27.9761 0 + vertex -24.3515 27.9554 -0.1 + vertex -24.2923 27.9761 -0.1 + endloop + endfacet + facet normal 0.0962711 -0.995355 0 + outer loop + vertex -24.2923 27.9761 -0.1 + vertex -24.1643 27.9885 0 + vertex -24.2923 27.9761 0 + endloop + endfacet + facet normal 0.0962711 -0.995355 0 + outer loop + vertex -24.1643 27.9885 0 + vertex -24.2923 27.9761 -0.1 + vertex -24.1643 27.9885 -0.1 + endloop + endfacet + facet normal 0.00166914 -0.999999 0 + outer loop + vertex -24.1643 27.9885 -0.1 + vertex -23.7335 27.9892 0 + vertex -24.1643 27.9885 0 + endloop + endfacet + facet normal 0.00166914 -0.999999 0 + outer loop + vertex -23.7335 27.9892 0 + vertex -24.1643 27.9885 -0.1 + vertex -23.7335 27.9892 -0.1 + endloop + endfacet + facet normal -0.048866 -0.998805 0 + outer loop + vertex -23.7335 27.9892 -0.1 + vertex -23.1232 27.9594 0 + vertex -23.7335 27.9892 0 + endloop + endfacet + facet normal -0.048866 -0.998805 -0 + outer loop + vertex -23.1232 27.9594 0 + vertex -23.7335 27.9892 -0.1 + vertex -23.1232 27.9594 -0.1 + endloop + endfacet + facet normal -0.0805478 -0.996751 0 + outer loop + vertex -23.1232 27.9594 -0.1 + vertex -22.3975 27.9007 0 + vertex -23.1232 27.9594 0 + endloop + endfacet + facet normal -0.0805478 -0.996751 -0 + outer loop + vertex -22.3975 27.9007 0 + vertex -23.1232 27.9594 -0.1 + vertex -22.3975 27.9007 -0.1 + endloop + endfacet + facet normal -0.115526 -0.993304 0 + outer loop + vertex -22.3975 27.9007 -0.1 + vertex -21.4599 27.7917 0 + vertex -22.3975 27.9007 0 + endloop + endfacet + facet normal -0.115526 -0.993304 -0 + outer loop + vertex -21.4599 27.7917 0 + vertex -22.3975 27.9007 -0.1 + vertex -21.4599 27.7917 -0.1 + endloop + endfacet + facet normal -0.170472 -0.985363 0 + outer loop + vertex -21.4599 27.7917 -0.1 + vertex -21.1001 27.7294 0 + vertex -21.4599 27.7917 0 + endloop + endfacet + facet normal -0.170472 -0.985363 -0 + outer loop + vertex -21.1001 27.7294 0 + vertex -21.4599 27.7917 -0.1 + vertex -21.1001 27.7294 -0.1 + endloop + endfacet + facet normal -0.23059 -0.973051 0 + outer loop + vertex -21.1001 27.7294 -0.1 + vertex -20.7979 27.6578 0 + vertex -21.1001 27.7294 0 + endloop + endfacet + facet normal -0.23059 -0.973051 -0 + outer loop + vertex -20.7979 27.6578 0 + vertex -21.1001 27.7294 -0.1 + vertex -20.7979 27.6578 -0.1 + endloop + endfacet + facet normal -0.312278 -0.949991 0 + outer loop + vertex -20.7979 27.6578 -0.1 + vertex -20.5419 27.5737 0 + vertex -20.7979 27.6578 0 + endloop + endfacet + facet normal -0.312278 -0.949991 -0 + outer loop + vertex -20.5419 27.5737 0 + vertex -20.7979 27.6578 -0.1 + vertex -20.5419 27.5737 -0.1 + endloop + endfacet + facet normal -0.411473 -0.911422 0 + outer loop + vertex -20.5419 27.5737 -0.1 + vertex -20.3206 27.4738 0 + vertex -20.5419 27.5737 0 + endloop + endfacet + facet normal -0.411473 -0.911422 -0 + outer loop + vertex -20.3206 27.4738 0 + vertex -20.5419 27.5737 -0.1 + vertex -20.3206 27.4738 -0.1 + endloop + endfacet + facet normal -0.51473 -0.857352 0 + outer loop + vertex -20.3206 27.4738 -0.1 + vertex -20.1227 27.3549 0 + vertex -20.3206 27.4738 0 + endloop + endfacet + facet normal -0.51473 -0.857352 -0 + outer loop + vertex -20.1227 27.3549 0 + vertex -20.3206 27.4738 -0.1 + vertex -20.1227 27.3549 -0.1 + endloop + endfacet + facet normal -0.604059 -0.79694 0 + outer loop + vertex -20.1227 27.3549 -0.1 + vertex -19.9368 27.2141 0 + vertex -20.1227 27.3549 0 + endloop + endfacet + facet normal -0.604059 -0.79694 -0 + outer loop + vertex -19.9368 27.2141 0 + vertex -20.1227 27.3549 -0.1 + vertex -19.9368 27.2141 -0.1 + endloop + endfacet + facet normal -0.64002 -0.768358 0 + outer loop + vertex -19.9368 27.2141 -0.1 + vertex -19.3233 26.703 0 + vertex -19.9368 27.2141 0 + endloop + endfacet + facet normal -0.64002 -0.768358 -0 + outer loop + vertex -19.3233 26.703 0 + vertex -19.9368 27.2141 -0.1 + vertex -19.3233 26.703 -0.1 + endloop + endfacet + facet normal 0.254038 -0.967194 0 + outer loop + vertex -19.3233 26.703 -0.1 + vertex -16.9758 27.3196 0 + vertex -19.3233 26.703 0 + endloop + endfacet + facet normal 0.254038 -0.967194 0 + outer loop + vertex -16.9758 27.3196 0 + vertex -19.3233 26.703 -0.1 + vertex -16.9758 27.3196 -0.1 + endloop + endfacet + facet normal 0.236306 -0.971679 0 + outer loop + vertex -16.9758 27.3196 -0.1 + vertex -16.0674 27.5405 0 + vertex -16.9758 27.3196 0 + endloop + endfacet + facet normal 0.236306 -0.971679 0 + outer loop + vertex -16.0674 27.5405 0 + vertex -16.9758 27.3196 -0.1 + vertex -16.0674 27.5405 -0.1 + endloop + endfacet + facet normal 0.186349 -0.982484 0 + outer loop + vertex -16.0674 27.5405 -0.1 + vertex -15.2259 27.7001 0 + vertex -16.0674 27.5405 0 + endloop + endfacet + facet normal 0.186349 -0.982484 0 + outer loop + vertex -15.2259 27.7001 0 + vertex -16.0674 27.5405 -0.1 + vertex -15.2259 27.7001 -0.1 + endloop + endfacet + facet normal 0.119004 -0.992894 0 + outer loop + vertex -15.2259 27.7001 -0.1 + vertex -14.4014 27.7989 0 + vertex -15.2259 27.7001 0 + endloop + endfacet + facet normal 0.119004 -0.992894 0 + outer loop + vertex -14.4014 27.7989 0 + vertex -15.2259 27.7001 -0.1 + vertex -14.4014 27.7989 -0.1 + endloop + endfacet + facet normal 0.0448493 -0.998994 0 + outer loop + vertex -14.4014 27.7989 -0.1 + vertex -13.5445 27.8374 0 + vertex -14.4014 27.7989 0 + endloop + endfacet + facet normal 0.0448493 -0.998994 0 + outer loop + vertex -13.5445 27.8374 0 + vertex -14.4014 27.7989 -0.1 + vertex -13.5445 27.8374 -0.1 + endloop + endfacet + facet normal -0.0227723 -0.999741 0 + outer loop + vertex -13.5445 27.8374 -0.1 + vertex -12.6053 27.816 0 + vertex -13.5445 27.8374 0 + endloop + endfacet + facet normal -0.0227723 -0.999741 -0 + outer loop + vertex -12.6053 27.816 0 + vertex -13.5445 27.8374 -0.1 + vertex -12.6053 27.816 -0.1 + endloop + endfacet + facet normal -0.0752121 -0.997168 0 + outer loop + vertex -12.6053 27.816 -0.1 + vertex -11.5342 27.7352 0 + vertex -12.6053 27.816 0 + endloop + endfacet + facet normal -0.0752121 -0.997168 -0 + outer loop + vertex -11.5342 27.7352 0 + vertex -12.6053 27.816 -0.1 + vertex -11.5342 27.7352 -0.1 + endloop + endfacet + facet normal -0.110844 -0.993838 0 + outer loop + vertex -11.5342 27.7352 -0.1 + vertex -10.2816 27.5955 0 + vertex -11.5342 27.7352 0 + endloop + endfacet + facet normal -0.110844 -0.993838 -0 + outer loop + vertex -10.2816 27.5955 0 + vertex -11.5342 27.7352 -0.1 + vertex -10.2816 27.5955 -0.1 + endloop + endfacet + facet normal -0.132367 -0.991201 0 + outer loop + vertex -10.2816 27.5955 -0.1 + vertex -8.79778 27.3973 0 + vertex -10.2816 27.5955 0 + endloop + endfacet + facet normal -0.132367 -0.991201 -0 + outer loop + vertex -8.79778 27.3973 0 + vertex -10.2816 27.5955 -0.1 + vertex -8.79778 27.3973 -0.1 + endloop + endfacet + facet normal -0.122316 -0.992491 0 + outer loop + vertex -8.79778 27.3973 -0.1 + vertex -7.89877 27.2865 0 + vertex -8.79778 27.3973 0 + endloop + endfacet + facet normal -0.122316 -0.992491 -0 + outer loop + vertex -7.89877 27.2865 0 + vertex -8.79778 27.3973 -0.1 + vertex -7.89877 27.2865 -0.1 + endloop + endfacet + facet normal -0.0652699 -0.997868 0 + outer loop + vertex -7.89877 27.2865 -0.1 + vertex -7.24334 27.2437 0 + vertex -7.89877 27.2865 0 + endloop + endfacet + facet normal -0.0652699 -0.997868 -0 + outer loop + vertex -7.24334 27.2437 0 + vertex -7.89877 27.2865 -0.1 + vertex -7.24334 27.2437 -0.1 + endloop + endfacet + facet normal 0.0157984 -0.999875 0 + outer loop + vertex -7.24334 27.2437 -0.1 + vertex -6.99768 27.2475 0 + vertex -7.24334 27.2437 0 + endloop + endfacet + facet normal 0.0157984 -0.999875 0 + outer loop + vertex -6.99768 27.2475 0 + vertex -7.24334 27.2437 -0.1 + vertex -6.99768 27.2475 -0.1 + endloop + endfacet + facet normal 0.104958 -0.994477 0 + outer loop + vertex -6.99768 27.2475 -0.1 + vertex -6.80178 27.2682 0 + vertex -6.99768 27.2475 0 + endloop + endfacet + facet normal 0.104958 -0.994477 0 + outer loop + vertex -6.80178 27.2682 0 + vertex -6.99768 27.2475 -0.1 + vertex -6.80178 27.2682 -0.1 + endloop + endfacet + facet normal 0.242196 -0.970227 0 + outer loop + vertex -6.80178 27.2682 -0.1 + vertex -6.65192 27.3056 0 + vertex -6.80178 27.2682 0 + endloop + endfacet + facet normal 0.242196 -0.970227 0 + outer loop + vertex -6.65192 27.3056 0 + vertex -6.80178 27.2682 -0.1 + vertex -6.65192 27.3056 -0.1 + endloop + endfacet + facet normal 0.449315 -0.893373 0 + outer loop + vertex -6.65192 27.3056 -0.1 + vertex -6.54439 27.3597 0 + vertex -6.65192 27.3056 0 + endloop + endfacet + facet normal 0.449315 -0.893373 0 + outer loop + vertex -6.54439 27.3597 0 + vertex -6.65192 27.3056 -0.1 + vertex -6.54439 27.3597 -0.1 + endloop + endfacet + facet normal 0.709468 -0.704738 0 + outer loop + vertex -6.54439 27.3597 0 + vertex -6.44763 27.4571 -0.1 + vertex -6.44763 27.4571 0 + endloop + endfacet + facet normal 0.709468 -0.704738 0 + outer loop + vertex -6.44763 27.4571 -0.1 + vertex -6.54439 27.3597 0 + vertex -6.54439 27.3597 -0.1 + endloop + endfacet + facet normal 0.90334 -0.428926 0 + outer loop + vertex -6.44763 27.4571 0 + vertex -6.37156 27.6173 -0.1 + vertex -6.37156 27.6173 0 + endloop + endfacet + facet normal 0.90334 -0.428926 0 + outer loop + vertex -6.37156 27.6173 -0.1 + vertex -6.44763 27.4571 0 + vertex -6.44763 27.4571 -0.1 + endloop + endfacet + facet normal 0.975305 -0.220862 0 + outer loop + vertex -6.37156 27.6173 0 + vertex -6.31368 27.8729 -0.1 + vertex -6.31368 27.8729 0 + endloop + endfacet + facet normal 0.975305 -0.220862 0 + outer loop + vertex -6.31368 27.8729 -0.1 + vertex -6.37156 27.6173 0 + vertex -6.37156 27.6173 -0.1 + endloop + endfacet + facet normal 0.994005 -0.109334 0 + outer loop + vertex -6.31368 27.8729 0 + vertex -6.27149 28.2565 -0.1 + vertex -6.27149 28.2565 0 + endloop + endfacet + facet normal 0.994005 -0.109334 0 + outer loop + vertex -6.27149 28.2565 -0.1 + vertex -6.31368 27.8729 0 + vertex -6.31368 27.8729 -0.1 + endloop + endfacet + facet normal 0.998582 -0.0532268 0 + outer loop + vertex -6.27149 28.2565 0 + vertex -6.24249 28.8007 -0.1 + vertex -6.24249 28.8007 0 + endloop + endfacet + facet normal 0.998582 -0.0532268 0 + outer loop + vertex -6.24249 28.8007 -0.1 + vertex -6.27149 28.2565 0 + vertex -6.27149 28.2565 -0.1 + endloop + endfacet + facet normal 0.999691 -0.0248385 0 + outer loop + vertex -6.24249 28.8007 0 + vertex -6.22417 29.538 -0.1 + vertex -6.22417 29.538 0 + endloop + endfacet + facet normal 0.999691 -0.0248385 0 + outer loop + vertex -6.22417 29.538 -0.1 + vertex -6.24249 28.8007 0 + vertex -6.24249 28.8007 -0.1 + endloop + endfacet + facet normal 0.999978 -0.00667916 0 + outer loop + vertex -6.22417 29.538 0 + vertex -6.20957 31.7226 -0.1 + vertex -6.20957 31.7226 0 + endloop + endfacet + facet normal 0.999978 -0.00667916 0 + outer loop + vertex -6.20957 31.7226 -0.1 + vertex -6.22417 29.538 0 + vertex -6.22417 29.538 -0.1 + endloop + endfacet + facet normal 0.999955 -0.00944041 0 + outer loop + vertex -6.20957 31.7226 0 + vertex -6.19415 33.3563 -0.1 + vertex -6.19415 33.3563 0 + endloop + endfacet + facet normal 0.999955 -0.00944041 0 + outer loop + vertex -6.19415 33.3563 -0.1 + vertex -6.20957 31.7226 0 + vertex -6.20957 31.7226 -0.1 + endloop + endfacet + facet normal 0.999658 -0.0261462 0 + outer loop + vertex -6.19415 33.3563 0 + vertex -6.15766 34.7516 -0.1 + vertex -6.15766 34.7516 0 + endloop + endfacet + facet normal 0.999658 -0.0261462 0 + outer loop + vertex -6.15766 34.7516 -0.1 + vertex -6.19415 33.3563 0 + vertex -6.19415 33.3563 -0.1 + endloop + endfacet + facet normal 0.998669 -0.0515827 0 + outer loop + vertex -6.15766 34.7516 0 + vertex -6.10555 35.7605 -0.1 + vertex -6.10555 35.7605 0 + endloop + endfacet + facet normal 0.998669 -0.0515827 0 + outer loop + vertex -6.10555 35.7605 -0.1 + vertex -6.15766 34.7516 0 + vertex -6.15766 34.7516 -0.1 + endloop + endfacet + facet normal 0.995383 -0.0959818 0 + outer loop + vertex -6.10555 35.7605 0 + vertex -6.07534 36.0738 -0.1 + vertex -6.07534 36.0738 0 + endloop + endfacet + facet normal 0.995383 -0.0959818 0 + outer loop + vertex -6.07534 36.0738 -0.1 + vertex -6.10555 35.7605 0 + vertex -6.10555 35.7605 -0.1 + endloop + endfacet + facet normal 0.980771 -0.195161 0 + outer loop + vertex -6.07534 36.0738 0 + vertex -6.04327 36.2349 -0.1 + vertex -6.04327 36.2349 0 + endloop + endfacet + facet normal 0.980771 -0.195161 0 + outer loop + vertex -6.04327 36.2349 -0.1 + vertex -6.07534 36.0738 0 + vertex -6.07534 36.0738 -0.1 + endloop + endfacet + facet normal 0.887411 -0.460979 0 + outer loop + vertex -6.04327 36.2349 0 + vertex -5.92579 36.4611 -0.1 + vertex -5.92579 36.4611 0 + endloop + endfacet + facet normal 0.887411 -0.460979 0 + outer loop + vertex -5.92579 36.4611 -0.1 + vertex -6.04327 36.2349 0 + vertex -6.04327 36.2349 -0.1 + endloop + endfacet + facet normal 0.77348 -0.633821 0 + outer loop + vertex -5.92579 36.4611 0 + vertex -5.86569 36.5344 -0.1 + vertex -5.86569 36.5344 0 + endloop + endfacet + facet normal 0.77348 -0.633821 0 + outer loop + vertex -5.86569 36.5344 -0.1 + vertex -5.92579 36.4611 0 + vertex -5.92579 36.4611 -0.1 + endloop + endfacet + facet normal 0.607425 -0.794377 0 + outer loop + vertex -5.86569 36.5344 -0.1 + vertex -5.80457 36.5812 0 + vertex -5.86569 36.5344 0 + endloop + endfacet + facet normal 0.607425 -0.794377 0 + outer loop + vertex -5.80457 36.5812 0 + vertex -5.86569 36.5344 -0.1 + vertex -5.80457 36.5812 -0.1 + endloop + endfacet + facet normal 0.306429 -0.951894 0 + outer loop + vertex -5.80457 36.5812 -0.1 + vertex -5.74234 36.6012 0 + vertex -5.80457 36.5812 0 + endloop + endfacet + facet normal 0.306429 -0.951894 0 + outer loop + vertex -5.74234 36.6012 0 + vertex -5.80457 36.5812 -0.1 + vertex -5.74234 36.6012 -0.1 + endloop + endfacet + facet normal -0.106116 -0.994354 0 + outer loop + vertex -5.74234 36.6012 -0.1 + vertex -5.67893 36.5944 0 + vertex -5.74234 36.6012 0 + endloop + endfacet + facet normal -0.106116 -0.994354 -0 + outer loop + vertex -5.67893 36.5944 0 + vertex -5.74234 36.6012 -0.1 + vertex -5.67893 36.5944 -0.1 + endloop + endfacet + facet normal -0.461592 -0.887092 0 + outer loop + vertex -5.67893 36.5944 -0.1 + vertex -5.61425 36.5608 0 + vertex -5.67893 36.5944 0 + endloop + endfacet + facet normal -0.461592 -0.887092 -0 + outer loop + vertex -5.61425 36.5608 0 + vertex -5.67893 36.5944 -0.1 + vertex -5.61425 36.5608 -0.1 + endloop + endfacet + facet normal -0.67638 -0.736553 0 + outer loop + vertex -5.61425 36.5608 -0.1 + vertex -5.54821 36.5001 0 + vertex -5.61425 36.5608 0 + endloop + endfacet + facet normal -0.67638 -0.736553 -0 + outer loop + vertex -5.54821 36.5001 0 + vertex -5.61425 36.5608 -0.1 + vertex -5.54821 36.5001 -0.1 + endloop + endfacet + facet normal -0.829388 -0.558673 0 + outer loop + vertex -5.41174 36.2975 -0.1 + vertex -5.54821 36.5001 0 + vertex -5.54821 36.5001 -0.1 + endloop + endfacet + facet normal -0.829388 -0.558673 0 + outer loop + vertex -5.54821 36.5001 0 + vertex -5.41174 36.2975 -0.1 + vertex -5.41174 36.2975 0 + endloop + endfacet + facet normal -0.909006 -0.416783 0 + outer loop + vertex -5.26884 35.9859 -0.1 + vertex -5.41174 36.2975 0 + vertex -5.41174 36.2975 -0.1 + endloop + endfacet + facet normal -0.909006 -0.416783 0 + outer loop + vertex -5.41174 36.2975 0 + vertex -5.26884 35.9859 -0.1 + vertex -5.26884 35.9859 0 + endloop + endfacet + facet normal -0.942118 -0.335281 0 + outer loop + vertex -5.11886 35.5644 -0.1 + vertex -5.26884 35.9859 0 + vertex -5.26884 35.9859 -0.1 + endloop + endfacet + facet normal -0.942118 -0.335281 0 + outer loop + vertex -5.26884 35.9859 0 + vertex -5.11886 35.5644 -0.1 + vertex -5.11886 35.5644 0 + endloop + endfacet + facet normal -0.958738 -0.28429 0 + outer loop + vertex -4.96111 35.0324 -0.1 + vertex -5.11886 35.5644 0 + vertex -5.11886 35.5644 -0.1 + endloop + endfacet + facet normal -0.958738 -0.28429 0 + outer loop + vertex -5.11886 35.5644 0 + vertex -4.96111 35.0324 -0.1 + vertex -4.96111 35.0324 0 + endloop + endfacet + facet normal -0.959965 -0.280118 0 + outer loop + vertex -4.73722 34.2652 -0.1 + vertex -4.96111 35.0324 0 + vertex -4.96111 35.0324 -0.1 + endloop + endfacet + facet normal -0.959965 -0.280118 0 + outer loop + vertex -4.96111 35.0324 0 + vertex -4.73722 34.2652 -0.1 + vertex -4.73722 34.2652 0 + endloop + endfacet + facet normal -0.950901 -0.309494 0 + outer loop + vertex -4.49616 33.5245 -0.1 + vertex -4.73722 34.2652 0 + vertex -4.73722 34.2652 -0.1 + endloop + endfacet + facet normal -0.950901 -0.309494 0 + outer loop + vertex -4.73722 34.2652 0 + vertex -4.49616 33.5245 -0.1 + vertex -4.49616 33.5245 0 + endloop + endfacet + facet normal -0.940636 -0.339418 0 + outer loop + vertex -4.23933 32.8128 -0.1 + vertex -4.49616 33.5245 0 + vertex -4.49616 33.5245 -0.1 + endloop + endfacet + facet normal -0.940636 -0.339418 0 + outer loop + vertex -4.49616 33.5245 0 + vertex -4.23933 32.8128 -0.1 + vertex -4.23933 32.8128 0 + endloop + endfacet + facet normal -0.928971 -0.370153 0 + outer loop + vertex -3.96814 32.1322 -0.1 + vertex -4.23933 32.8128 0 + vertex -4.23933 32.8128 -0.1 + endloop + endfacet + facet normal -0.928971 -0.370153 0 + outer loop + vertex -4.23933 32.8128 0 + vertex -3.96814 32.1322 -0.1 + vertex -3.96814 32.1322 0 + endloop + endfacet + facet normal -0.915636 -0.402008 0 + outer loop + vertex -3.68399 31.485 -0.1 + vertex -3.96814 32.1322 0 + vertex -3.96814 32.1322 -0.1 + endloop + endfacet + facet normal -0.915636 -0.402008 0 + outer loop + vertex -3.96814 32.1322 0 + vertex -3.68399 31.485 -0.1 + vertex -3.68399 31.485 0 + endloop + endfacet + facet normal -0.900273 -0.435326 0 + outer loop + vertex -3.38828 30.8734 -0.1 + vertex -3.68399 31.485 0 + vertex -3.68399 31.485 -0.1 + endloop + endfacet + facet normal -0.900273 -0.435326 0 + outer loop + vertex -3.68399 31.485 0 + vertex -3.38828 30.8734 -0.1 + vertex -3.38828 30.8734 0 + endloop + endfacet + facet normal -0.882395 -0.47051 0 + outer loop + vertex -3.08241 30.2998 -0.1 + vertex -3.38828 30.8734 0 + vertex -3.38828 30.8734 -0.1 + endloop + endfacet + facet normal -0.882395 -0.47051 0 + outer loop + vertex -3.38828 30.8734 0 + vertex -3.08241 30.2998 -0.1 + vertex -3.08241 30.2998 0 + endloop + endfacet + facet normal -0.861349 -0.508014 0 + outer loop + vertex -2.7678 29.7664 -0.1 + vertex -3.08241 30.2998 0 + vertex -3.08241 30.2998 -0.1 + endloop + endfacet + facet normal -0.861349 -0.508014 0 + outer loop + vertex -3.08241 30.2998 0 + vertex -2.7678 29.7664 -0.1 + vertex -2.7678 29.7664 0 + endloop + endfacet + facet normal -0.83625 -0.548349 0 + outer loop + vertex -2.44583 29.2754 -0.1 + vertex -2.7678 29.7664 0 + vertex -2.7678 29.7664 -0.1 + endloop + endfacet + facet normal -0.83625 -0.548349 0 + outer loop + vertex -2.7678 29.7664 0 + vertex -2.44583 29.2754 -0.1 + vertex -2.44583 29.2754 0 + endloop + endfacet + facet normal -0.805875 -0.592086 0 + outer loop + vertex -2.11792 28.8291 -0.1 + vertex -2.44583 29.2754 0 + vertex -2.44583 29.2754 -0.1 + endloop + endfacet + facet normal -0.805875 -0.592086 0 + outer loop + vertex -2.44583 29.2754 0 + vertex -2.11792 28.8291 -0.1 + vertex -2.11792 28.8291 0 + endloop + endfacet + facet normal -0.768548 -0.639792 0 + outer loop + vertex -1.78547 28.4297 -0.1 + vertex -2.11792 28.8291 0 + vertex -2.11792 28.8291 -0.1 + endloop + endfacet + facet normal -0.768548 -0.639792 0 + outer loop + vertex -2.11792 28.8291 0 + vertex -1.78547 28.4297 -0.1 + vertex -1.78547 28.4297 0 + endloop + endfacet + facet normal -0.721954 -0.691941 0 + outer loop + vertex -1.44988 28.0795 -0.1 + vertex -1.78547 28.4297 0 + vertex -1.78547 28.4297 -0.1 + endloop + endfacet + facet normal -0.721954 -0.691941 0 + outer loop + vertex -1.78547 28.4297 0 + vertex -1.44988 28.0795 -0.1 + vertex -1.44988 28.0795 0 + endloop + endfacet + facet normal -0.662916 -0.748694 0 + outer loop + vertex -1.44988 28.0795 -0.1 + vertex -1.11256 27.7809 0 + vertex -1.44988 28.0795 0 + endloop + endfacet + facet normal -0.662916 -0.748694 -0 + outer loop + vertex -1.11256 27.7809 0 + vertex -1.44988 28.0795 -0.1 + vertex -1.11256 27.7809 -0.1 + endloop + endfacet + facet normal -0.5872 -0.809442 0 + outer loop + vertex -1.11256 27.7809 -0.1 + vertex -0.7749 27.5359 0 + vertex -1.11256 27.7809 0 + endloop + endfacet + facet normal -0.5872 -0.809442 -0 + outer loop + vertex -0.7749 27.5359 0 + vertex -1.11256 27.7809 -0.1 + vertex -0.7749 27.5359 -0.1 + endloop + endfacet + facet normal -0.48954 -0.871981 0 + outer loop + vertex -0.7749 27.5359 -0.1 + vertex -0.438314 27.347 0 + vertex -0.7749 27.5359 0 + endloop + endfacet + facet normal -0.48954 -0.871981 -0 + outer loop + vertex -0.438314 27.347 0 + vertex -0.7749 27.5359 -0.1 + vertex -0.438314 27.347 -0.1 + endloop + endfacet + facet normal -0.364353 -0.931261 0 + outer loop + vertex -0.438314 27.347 -0.1 + vertex -0.104203 27.2162 0 + vertex -0.438314 27.347 0 + endloop + endfacet + facet normal -0.364353 -0.931261 -0 + outer loop + vertex -0.104203 27.2162 0 + vertex -0.438314 27.347 -0.1 + vertex -0.104203 27.2162 -0.1 + endloop + endfacet + facet normal -0.248562 -0.968616 0 + outer loop + vertex -0.104203 27.2162 -0.1 + vertex 0.215611 27.1342 0 + vertex -0.104203 27.2162 0 + endloop + endfacet + facet normal -0.248562 -0.968616 -0 + outer loop + vertex 0.215611 27.1342 0 + vertex -0.104203 27.2162 -0.1 + vertex 0.215611 27.1342 -0.1 + endloop + endfacet + facet normal -0.161031 -0.986949 0 + outer loop + vertex 0.215611 27.1342 -0.1 + vertex 0.505992 27.0868 0 + vertex 0.215611 27.1342 0 + endloop + endfacet + facet normal -0.161031 -0.986949 -0 + outer loop + vertex 0.505992 27.0868 0 + vertex 0.215611 27.1342 -0.1 + vertex 0.505992 27.0868 -0.1 + endloop + endfacet + facet normal -0.0401535 -0.999194 0 + outer loop + vertex 0.505992 27.0868 -0.1 + vertex 0.734953 27.0776 0 + vertex 0.505992 27.0868 0 + endloop + endfacet + facet normal -0.0401535 -0.999194 -0 + outer loop + vertex 0.734953 27.0776 0 + vertex 0.505992 27.0868 -0.1 + vertex 0.734953 27.0776 -0.1 + endloop + endfacet + facet normal 0.1315 -0.991316 0 + outer loop + vertex 0.734953 27.0776 -0.1 + vertex 0.816408 27.0884 0 + vertex 0.734953 27.0776 0 + endloop + endfacet + facet normal 0.1315 -0.991316 0 + outer loop + vertex 0.816408 27.0884 0 + vertex 0.734953 27.0776 -0.1 + vertex 0.816408 27.0884 -0.1 + endloop + endfacet + facet normal 0.371587 -0.928398 0 + outer loop + vertex 0.816408 27.0884 -0.1 + vertex 0.870515 27.1101 0 + vertex 0.816408 27.0884 0 + endloop + endfacet + facet normal 0.371587 -0.928398 0 + outer loop + vertex 0.870515 27.1101 0 + vertex 0.816408 27.0884 -0.1 + vertex 0.870515 27.1101 -0.1 + endloop + endfacet + facet normal 0.819454 -0.573145 0 + outer loop + vertex 0.870515 27.1101 0 + vertex 0.908598 27.1645 -0.1 + vertex 0.908598 27.1645 0 + endloop + endfacet + facet normal 0.819454 -0.573145 0 + outer loop + vertex 0.908598 27.1645 -0.1 + vertex 0.870515 27.1101 0 + vertex 0.870515 27.1101 -0.1 + endloop + endfacet + facet normal 0.947054 -0.321074 0 + outer loop + vertex 0.908598 27.1645 0 + vertex 0.944126 27.2693 -0.1 + vertex 0.944126 27.2693 0 + endloop + endfacet + facet normal 0.947054 -0.321074 0 + outer loop + vertex 0.944126 27.2693 -0.1 + vertex 0.908598 27.1645 0 + vertex 0.908598 27.1645 -0.1 + endloop + endfacet + facet normal 0.984285 -0.17659 0 + outer loop + vertex 0.944126 27.2693 0 + vertex 1.00441 27.6053 -0.1 + vertex 1.00441 27.6053 0 + endloop + endfacet + facet normal 0.984285 -0.17659 0 + outer loop + vertex 1.00441 27.6053 -0.1 + vertex 0.944126 27.2693 0 + vertex 0.944126 27.2693 -0.1 + endloop + endfacet + facet normal 0.996161 -0.0875344 0 + outer loop + vertex 1.00441 27.6053 0 + vertex 1.04514 28.0688 -0.1 + vertex 1.04514 28.0688 0 + endloop + endfacet + facet normal 0.996161 -0.0875344 0 + outer loop + vertex 1.04514 28.0688 -0.1 + vertex 1.00441 27.6053 0 + vertex 1.00441 27.6053 -0.1 + endloop + endfacet + facet normal 0.999619 -0.0276007 0 + outer loop + vertex 1.04514 28.0688 0 + vertex 1.0601 28.6106 -0.1 + vertex 1.0601 28.6106 0 + endloop + endfacet + facet normal 0.999619 -0.0276007 0 + outer loop + vertex 1.0601 28.6106 -0.1 + vertex 1.04514 28.0688 0 + vertex 1.04514 28.0688 -0.1 + endloop + endfacet + facet normal 0.999546 -0.0301211 0 + outer loop + vertex 1.0601 28.6106 0 + vertex 1.07949 29.2543 -0.1 + vertex 1.07949 29.2543 0 + endloop + endfacet + facet normal 0.999546 -0.0301211 0 + outer loop + vertex 1.07949 29.2543 -0.1 + vertex 1.0601 28.6106 0 + vertex 1.0601 28.6106 -0.1 + endloop + endfacet + facet normal 0.995652 -0.0931476 0 + outer loop + vertex 1.07949 29.2543 0 + vertex 1.13903 29.8907 -0.1 + vertex 1.13903 29.8907 0 + endloop + endfacet + facet normal 0.995652 -0.0931476 0 + outer loop + vertex 1.13903 29.8907 -0.1 + vertex 1.07949 29.2543 0 + vertex 1.07949 29.2543 -0.1 + endloop + endfacet + facet normal 0.987491 -0.157674 0 + outer loop + vertex 1.13903 29.8907 0 + vertex 1.24074 30.5277 -0.1 + vertex 1.24074 30.5277 0 + endloop + endfacet + facet normal 0.987491 -0.157674 0 + outer loop + vertex 1.24074 30.5277 -0.1 + vertex 1.13903 29.8907 0 + vertex 1.13903 29.8907 -0.1 + endloop + endfacet + facet normal 0.975385 -0.220507 0 + outer loop + vertex 1.24074 30.5277 0 + vertex 1.38662 31.173 -0.1 + vertex 1.38662 31.173 0 + endloop + endfacet + facet normal 0.975385 -0.220507 0 + outer loop + vertex 1.38662 31.173 -0.1 + vertex 1.24074 30.5277 0 + vertex 1.24074 30.5277 -0.1 + endloop + endfacet + facet normal 0.960327 -0.278878 0 + outer loop + vertex 1.38662 31.173 0 + vertex 1.57871 31.8344 -0.1 + vertex 1.57871 31.8344 0 + endloop + endfacet + facet normal 0.960327 -0.278878 0 + outer loop + vertex 1.57871 31.8344 -0.1 + vertex 1.38662 31.173 0 + vertex 1.38662 31.173 -0.1 + endloop + endfacet + facet normal 0.943682 -0.330853 0 + outer loop + vertex 1.57871 31.8344 0 + vertex 1.81903 32.5199 -0.1 + vertex 1.81903 32.5199 0 + endloop + endfacet + facet normal 0.943682 -0.330853 0 + outer loop + vertex 1.81903 32.5199 -0.1 + vertex 1.57871 31.8344 0 + vertex 1.57871 31.8344 -0.1 + endloop + endfacet + facet normal 0.926833 -0.375474 0 + outer loop + vertex 1.81903 32.5199 0 + vertex 2.10958 33.2371 -0.1 + vertex 2.10958 33.2371 0 + endloop + endfacet + facet normal 0.926833 -0.375474 0 + outer loop + vertex 2.10958 33.2371 -0.1 + vertex 1.81903 32.5199 0 + vertex 1.81903 32.5199 -0.1 + endloop + endfacet + facet normal 0.910903 -0.412619 0 + outer loop + vertex 2.10958 33.2371 0 + vertex 2.4524 33.9939 -0.1 + vertex 2.4524 33.9939 0 + endloop + endfacet + facet normal 0.910903 -0.412619 0 + outer loop + vertex 2.4524 33.9939 -0.1 + vertex 2.10958 33.2371 0 + vertex 2.10958 33.2371 -0.1 + endloop + endfacet + facet normal 0.897899 -0.440202 0 + outer loop + vertex 2.4524 33.9939 0 + vertex 2.84738 34.7996 -0.1 + vertex 2.84738 34.7996 0 + endloop + endfacet + facet normal 0.897899 -0.440202 0 + outer loop + vertex 2.84738 34.7996 -0.1 + vertex 2.4524 33.9939 0 + vertex 2.4524 33.9939 -0.1 + endloop + endfacet + facet normal 0.887623 -0.460571 0 + outer loop + vertex 2.84738 34.7996 0 + vertex 3.26543 35.6052 -0.1 + vertex 3.26543 35.6052 0 + endloop + endfacet + facet normal 0.887623 -0.460571 0 + outer loop + vertex 3.26543 35.6052 -0.1 + vertex 2.84738 34.7996 0 + vertex 2.84738 34.7996 -0.1 + endloop + endfacet + facet normal 0.877821 -0.478989 0 + outer loop + vertex 3.26543 35.6052 0 + vertex 3.68699 36.3778 -0.1 + vertex 3.68699 36.3778 0 + endloop + endfacet + facet normal 0.877821 -0.478989 0 + outer loop + vertex 3.68699 36.3778 -0.1 + vertex 3.26543 35.6052 0 + vertex 3.26543 35.6052 -0.1 + endloop + endfacet + facet normal 0.867241 -0.497888 0 + outer loop + vertex 3.68699 36.3778 0 + vertex 4.09252 37.0842 -0.1 + vertex 4.09252 37.0842 0 + endloop + endfacet + facet normal 0.867241 -0.497888 0 + outer loop + vertex 4.09252 37.0842 -0.1 + vertex 3.68699 36.3778 0 + vertex 3.68699 36.3778 -0.1 + endloop + endfacet + facet normal 0.853923 -0.520399 0 + outer loop + vertex 4.09252 37.0842 0 + vertex 4.46246 37.6912 -0.1 + vertex 4.46246 37.6912 0 + endloop + endfacet + facet normal 0.853923 -0.520399 0 + outer loop + vertex 4.46246 37.6912 -0.1 + vertex 4.09252 37.0842 0 + vertex 4.09252 37.0842 -0.1 + endloop + endfacet + facet normal 0.833342 -0.552757 0 + outer loop + vertex 4.46246 37.6912 0 + vertex 4.77727 38.1658 -0.1 + vertex 4.77727 38.1658 0 + endloop + endfacet + facet normal 0.833342 -0.552757 0 + outer loop + vertex 4.77727 38.1658 -0.1 + vertex 4.46246 37.6912 0 + vertex 4.46246 37.6912 -0.1 + endloop + endfacet + facet normal 0.789667 -0.613535 0 + outer loop + vertex 4.77727 38.1658 0 + vertex 5.01738 38.4749 -0.1 + vertex 5.01738 38.4749 0 + endloop + endfacet + facet normal 0.789667 -0.613535 0 + outer loop + vertex 5.01738 38.4749 -0.1 + vertex 4.77727 38.1658 0 + vertex 4.77727 38.1658 -0.1 + endloop + endfacet + facet normal 0.690746 -0.723097 0 + outer loop + vertex 5.01738 38.4749 -0.1 + vertex 5.10332 38.557 0 + vertex 5.01738 38.4749 0 + endloop + endfacet + facet normal 0.690746 -0.723097 0 + outer loop + vertex 5.10332 38.557 0 + vertex 5.01738 38.4749 -0.1 + vertex 5.10332 38.557 -0.1 + endloop + endfacet + facet normal 0.426773 -0.904359 0 + outer loop + vertex 5.10332 38.557 -0.1 + vertex 5.16325 38.5852 0 + vertex 5.10332 38.557 0 + endloop + endfacet + facet normal 0.426773 -0.904359 0 + outer loop + vertex 5.16325 38.5852 0 + vertex 5.10332 38.557 -0.1 + vertex 5.16325 38.5852 -0.1 + endloop + endfacet + facet normal -0.22248 -0.974937 0 + outer loop + vertex 5.16325 38.5852 -0.1 + vertex 5.20457 38.5758 0 + vertex 5.16325 38.5852 0 + endloop + endfacet + facet normal -0.22248 -0.974937 -0 + outer loop + vertex 5.20457 38.5758 0 + vertex 5.16325 38.5852 -0.1 + vertex 5.20457 38.5758 -0.1 + endloop + endfacet + facet normal -0.944948 0.327219 0 + outer loop + vertex 7.1242 19.0144 -0.1 + vertex 7.15267 19.0966 0 + vertex 7.15267 19.0966 -0.1 + endloop + endfacet + facet normal -0.944948 0.327219 0 + outer loop + vertex 7.15267 19.0966 0 + vertex 7.1242 19.0144 -0.1 + vertex 7.1242 19.0144 0 + endloop + endfacet + facet normal -0.999677 -0.0254292 0 + outer loop + vertex 7.1273 18.8927 -0.1 + vertex 7.1242 19.0144 0 + vertex 7.1242 19.0144 -0.1 + endloop + endfacet + facet normal -0.999677 -0.0254292 0 + outer loop + vertex 7.1242 19.0144 0 + vertex 7.1273 18.8927 -0.1 + vertex 7.1273 18.8927 0 + endloop + endfacet + facet normal -0.971548 -0.236844 0 + outer loop + vertex 7.16351 18.7442 -0.1 + vertex 7.1273 18.8927 0 + vertex 7.1273 18.8927 -0.1 + endloop + endfacet + facet normal -0.971548 -0.236844 0 + outer loop + vertex 7.1273 18.8927 0 + vertex 7.16351 18.7442 -0.1 + vertex 7.16351 18.7442 0 + endloop + endfacet + facet normal -0.922269 -0.38655 0 + outer loop + vertex 7.29207 18.4374 -0.1 + vertex 7.16351 18.7442 0 + vertex 7.16351 18.7442 -0.1 + endloop + endfacet + facet normal -0.922269 -0.38655 0 + outer loop + vertex 7.16351 18.7442 0 + vertex 7.29207 18.4374 -0.1 + vertex 7.29207 18.4374 0 + endloop + endfacet + facet normal -0.894309 -0.44745 0 + outer loop + vertex 7.49889 18.0241 -0.1 + vertex 7.29207 18.4374 0 + vertex 7.29207 18.4374 -0.1 + endloop + endfacet + facet normal -0.894309 -0.44745 0 + outer loop + vertex 7.29207 18.4374 0 + vertex 7.49889 18.0241 -0.1 + vertex 7.49889 18.0241 0 + endloop + endfacet + facet normal -0.872312 -0.488949 0 + outer loop + vertex 8.03973 17.0592 -0.1 + vertex 7.49889 18.0241 0 + vertex 7.49889 18.0241 -0.1 + endloop + endfacet + facet normal -0.872312 -0.488949 0 + outer loop + vertex 7.49889 18.0241 0 + vertex 8.03973 17.0592 -0.1 + vertex 8.03973 17.0592 0 + endloop + endfacet + facet normal -0.84697 -0.53164 0 + outer loop + vertex 8.57086 16.213 -0.1 + vertex 8.03973 17.0592 0 + vertex 8.03973 17.0592 -0.1 + endloop + endfacet + facet normal -0.84697 -0.53164 0 + outer loop + vertex 8.03973 17.0592 0 + vertex 8.57086 16.213 -0.1 + vertex 8.57086 16.213 0 + endloop + endfacet + facet normal -0.805848 -0.592122 0 + outer loop + vertex 8.76553 15.9481 -0.1 + vertex 8.57086 16.213 0 + vertex 8.57086 16.213 -0.1 + endloop + endfacet + facet normal -0.805848 -0.592122 0 + outer loop + vertex 8.57086 16.213 0 + vertex 8.76553 15.9481 -0.1 + vertex 8.76553 15.9481 0 + endloop + endfacet + facet normal -0.732738 -0.680511 0 + outer loop + vertex 8.83337 15.875 -0.1 + vertex 8.76553 15.9481 0 + vertex 8.76553 15.9481 -0.1 + endloop + endfacet + facet normal -0.732738 -0.680511 0 + outer loop + vertex 8.76553 15.9481 0 + vertex 8.83337 15.875 -0.1 + vertex 8.83337 15.875 0 + endloop + endfacet + facet normal -0.509392 -0.860535 0 + outer loop + vertex 8.83337 15.875 -0.1 + vertex 8.87708 15.8492 0 + vertex 8.83337 15.875 0 + endloop + endfacet + facet normal -0.509392 -0.860535 -0 + outer loop + vertex 8.87708 15.8492 0 + vertex 8.83337 15.875 -0.1 + vertex 8.87708 15.8492 -0.1 + endloop + endfacet + facet normal 0.216566 -0.976268 0 + outer loop + vertex 8.87708 15.8492 -0.1 + vertex 8.99158 15.8746 0 + vertex 8.87708 15.8492 0 + endloop + endfacet + facet normal 0.216566 -0.976268 0 + outer loop + vertex 8.99158 15.8746 0 + vertex 8.87708 15.8492 -0.1 + vertex 8.99158 15.8746 -0.1 + endloop + endfacet + facet normal 0.333607 -0.942712 0 + outer loop + vertex 8.99158 15.8746 -0.1 + vertex 9.19116 15.9452 0 + vertex 8.99158 15.8746 0 + endloop + endfacet + facet normal 0.333607 -0.942712 0 + outer loop + vertex 9.19116 15.9452 0 + vertex 8.99158 15.8746 -0.1 + vertex 9.19116 15.9452 -0.1 + endloop + endfacet + facet normal 0.395815 -0.91833 0 + outer loop + vertex 9.19116 15.9452 -0.1 + vertex 9.73318 16.1788 0 + vertex 9.19116 15.9452 0 + endloop + endfacet + facet normal 0.395815 -0.91833 0 + outer loop + vertex 9.73318 16.1788 0 + vertex 9.19116 15.9452 -0.1 + vertex 9.73318 16.1788 -0.1 + endloop + endfacet + facet normal 0.425917 -0.904762 0 + outer loop + vertex 9.73318 16.1788 -0.1 + vertex 10.4375 16.5104 0 + vertex 9.73318 16.1788 0 + endloop + endfacet + facet normal 0.425917 -0.904762 0 + outer loop + vertex 10.4375 16.5104 0 + vertex 9.73318 16.1788 -0.1 + vertex 10.4375 16.5104 -0.1 + endloop + endfacet + facet normal 0.716732 0.697349 0 + outer loop + vertex 10.4375 16.5104 0 + vertex 9.77546 17.1908 -0.1 + vertex 9.77546 17.1908 0 + endloop + endfacet + facet normal 0.716732 0.697349 0 + outer loop + vertex 9.77546 17.1908 -0.1 + vertex 10.4375 16.5104 0 + vertex 10.4375 16.5104 -0.1 + endloop + endfacet + facet normal 0.695522 0.718505 -0 + outer loop + vertex 9.77546 17.1908 -0.1 + vertex 9.46246 17.4938 0 + vertex 9.77546 17.1908 0 + endloop + endfacet + facet normal 0.695522 0.718505 0 + outer loop + vertex 9.46246 17.4938 0 + vertex 9.77546 17.1908 -0.1 + vertex 9.46246 17.4938 -0.1 + endloop + endfacet + facet normal 0.663067 0.74856 -0 + outer loop + vertex 9.46246 17.4938 -0.1 + vertex 9.09841 17.8163 0 + vertex 9.46246 17.4938 0 + endloop + endfacet + facet normal 0.663067 0.74856 0 + outer loop + vertex 9.09841 17.8163 0 + vertex 9.46246 17.4938 -0.1 + vertex 9.09841 17.8163 -0.1 + endloop + endfacet + facet normal 0.6264 0.779502 -0 + outer loop + vertex 9.09841 17.8163 -0.1 + vertex 8.31493 18.4459 0 + vertex 9.09841 17.8163 0 + endloop + endfacet + facet normal 0.6264 0.779502 0 + outer loop + vertex 8.31493 18.4459 0 + vertex 9.09841 17.8163 -0.1 + vertex 8.31493 18.4459 -0.1 + endloop + endfacet + facet normal 0.58921 0.80798 -0 + outer loop + vertex 8.31493 18.4459 -0.1 + vertex 7.9444 18.7161 0 + vertex 8.31493 18.4459 0 + endloop + endfacet + facet normal 0.58921 0.80798 0 + outer loop + vertex 7.9444 18.7161 0 + vertex 8.31493 18.4459 -0.1 + vertex 7.9444 18.7161 -0.1 + endloop + endfacet + facet normal 0.554709 0.832044 -0 + outer loop + vertex 7.9444 18.7161 -0.1 + vertex 7.62063 18.9319 0 + vertex 7.9444 18.7161 0 + endloop + endfacet + facet normal 0.554709 0.832044 0 + outer loop + vertex 7.62063 18.9319 0 + vertex 7.9444 18.7161 -0.1 + vertex 7.62063 18.9319 -0.1 + endloop + endfacet + facet normal 0.492817 0.870133 -0 + outer loop + vertex 7.62063 18.9319 -0.1 + vertex 7.36805 19.075 0 + vertex 7.62063 18.9319 0 + endloop + endfacet + facet normal 0.492817 0.870133 0 + outer loop + vertex 7.36805 19.075 0 + vertex 7.62063 18.9319 -0.1 + vertex 7.36805 19.075 -0.1 + endloop + endfacet + facet normal 0.313373 0.94963 -0 + outer loop + vertex 7.36805 19.075 -0.1 + vertex 7.21113 19.1268 0 + vertex 7.36805 19.075 0 + endloop + endfacet + facet normal 0.313373 0.94963 0 + outer loop + vertex 7.21113 19.1268 0 + vertex 7.36805 19.075 -0.1 + vertex 7.21113 19.1268 -0.1 + endloop + endfacet + facet normal -0.458832 0.888523 0 + outer loop + vertex 7.21113 19.1268 -0.1 + vertex 7.15267 19.0966 0 + vertex 7.21113 19.1268 0 + endloop + endfacet + facet normal -0.458832 0.888523 0 + outer loop + vertex 7.15267 19.0966 0 + vertex 7.21113 19.1268 -0.1 + vertex 7.15267 19.0966 -0.1 + endloop + endfacet + facet normal -0.0478819 0.998853 0 + outer loop + vertex -14.6988 24.986 -0.1 + vertex -15.4289 24.9511 0 + vertex -14.6988 24.986 0 + endloop + endfacet + facet normal -0.0478819 0.998853 0 + outer loop + vertex -15.4289 24.9511 0 + vertex -14.6988 24.986 -0.1 + vertex -15.4289 24.9511 -0.1 + endloop + endfacet + facet normal -0.102501 0.994733 0 + outer loop + vertex -15.4289 24.9511 -0.1 + vertex -16.0762 24.8844 0 + vertex -15.4289 24.9511 0 + endloop + endfacet + facet normal -0.102501 0.994733 0 + outer loop + vertex -16.0762 24.8844 0 + vertex -15.4289 24.9511 -0.1 + vertex -16.0762 24.8844 -0.1 + endloop + endfacet + facet normal -0.186067 0.982537 0 + outer loop + vertex -16.0762 24.8844 -0.1 + vertex -16.599 24.7853 0 + vertex -16.0762 24.8844 0 + endloop + endfacet + facet normal -0.186067 0.982537 0 + outer loop + vertex -16.599 24.7853 0 + vertex -16.0762 24.8844 -0.1 + vertex -16.599 24.7853 -0.1 + endloop + endfacet + facet normal -0.197458 0.980311 0 + outer loop + vertex -16.599 24.7853 -0.1 + vertex -17.1707 24.6702 0 + vertex -16.599 24.7853 0 + endloop + endfacet + facet normal -0.197458 0.980311 0 + outer loop + vertex -17.1707 24.6702 0 + vertex -16.599 24.7853 -0.1 + vertex -17.1707 24.6702 -0.1 + endloop + endfacet + facet normal -0.159115 0.98726 0 + outer loop + vertex -17.1707 24.6702 -0.1 + vertex -18.0818 24.5233 0 + vertex -17.1707 24.6702 0 + endloop + endfacet + facet normal -0.159115 0.98726 0 + outer loop + vertex -18.0818 24.5233 0 + vertex -17.1707 24.6702 -0.1 + vertex -18.0818 24.5233 -0.1 + endloop + endfacet + facet normal -0.140489 0.990082 0 + outer loop + vertex -18.0818 24.5233 -0.1 + vertex -19.207 24.3637 0 + vertex -18.0818 24.5233 0 + endloop + endfacet + facet normal -0.140489 0.990082 0 + outer loop + vertex -19.207 24.3637 0 + vertex -18.0818 24.5233 -0.1 + vertex -19.207 24.3637 -0.1 + endloop + endfacet + facet normal -0.125539 0.992089 0 + outer loop + vertex -19.207 24.3637 -0.1 + vertex -20.4207 24.2101 0 + vertex -19.207 24.3637 0 + endloop + endfacet + facet normal -0.125539 0.992089 0 + outer loop + vertex -20.4207 24.2101 0 + vertex -19.207 24.3637 -0.1 + vertex -20.4207 24.2101 -0.1 + endloop + endfacet + facet normal -0.117788 0.993039 0 + outer loop + vertex -20.4207 24.2101 -0.1 + vertex -23.3692 23.8604 0 + vertex -20.4207 24.2101 0 + endloop + endfacet + facet normal -0.117788 0.993039 0 + outer loop + vertex -23.3692 23.8604 0 + vertex -20.4207 24.2101 -0.1 + vertex -23.3692 23.8604 -0.1 + endloop + endfacet + facet normal -0.645441 -0.76381 0 + outer loop + vertex -23.3692 23.8604 -0.1 + vertex -22.6524 23.2546 0 + vertex -23.3692 23.8604 0 + endloop + endfacet + facet normal -0.645441 -0.76381 -0 + outer loop + vertex -22.6524 23.2546 0 + vertex -23.3692 23.8604 -0.1 + vertex -22.6524 23.2546 -0.1 + endloop + endfacet + facet normal -0.595678 -0.803224 0 + outer loop + vertex -22.6524 23.2546 -0.1 + vertex -22.3422 23.0246 0 + vertex -22.6524 23.2546 0 + endloop + endfacet + facet normal -0.595678 -0.803224 -0 + outer loop + vertex -22.3422 23.0246 0 + vertex -22.6524 23.2546 -0.1 + vertex -22.3422 23.0246 -0.1 + endloop + endfacet + facet normal -0.490603 -0.871383 0 + outer loop + vertex -22.3422 23.0246 -0.1 + vertex -22.0315 22.8497 0 + vertex -22.3422 23.0246 0 + endloop + endfacet + facet normal -0.490603 -0.871383 -0 + outer loop + vertex -22.0315 22.8497 0 + vertex -22.3422 23.0246 -0.1 + vertex -22.0315 22.8497 -0.1 + endloop + endfacet + facet normal -0.350196 -0.936677 0 + outer loop + vertex -22.0315 22.8497 -0.1 + vertex -21.755 22.7463 0 + vertex -22.0315 22.8497 0 + endloop + endfacet + facet normal -0.350196 -0.936677 -0 + outer loop + vertex -21.755 22.7463 0 + vertex -22.0315 22.8497 -0.1 + vertex -21.755 22.7463 -0.1 + endloop + endfacet + facet normal -0.169545 -0.985522 0 + outer loop + vertex -21.755 22.7463 -0.1 + vertex -21.6404 22.7266 0 + vertex -21.755 22.7463 0 + endloop + endfacet + facet normal -0.169545 -0.985522 -0 + outer loop + vertex -21.6404 22.7266 0 + vertex -21.755 22.7463 -0.1 + vertex -21.6404 22.7266 -0.1 + endloop + endfacet + facet normal 0.0467747 -0.998905 0 + outer loop + vertex -21.6404 22.7266 -0.1 + vertex -21.5474 22.7309 0 + vertex -21.6404 22.7266 0 + endloop + endfacet + facet normal 0.0467747 -0.998905 0 + outer loop + vertex -21.5474 22.7309 0 + vertex -21.6404 22.7266 -0.1 + vertex -21.5474 22.7309 -0.1 + endloop + endfacet + facet normal 0.160131 -0.987096 0 + outer loop + vertex -21.5474 22.7309 -0.1 + vertex -20.7318 22.8633 0 + vertex -21.5474 22.7309 0 + endloop + endfacet + facet normal 0.160131 -0.987096 0 + outer loop + vertex -20.7318 22.8633 0 + vertex -21.5474 22.7309 -0.1 + vertex -20.7318 22.8633 -0.1 + endloop + endfacet + facet normal 0.141843 -0.989889 0 + outer loop + vertex -20.7318 22.8633 -0.1 + vertex -19.3158 23.0662 0 + vertex -20.7318 22.8633 0 + endloop + endfacet + facet normal 0.141843 -0.989889 0 + outer loop + vertex -19.3158 23.0662 0 + vertex -20.7318 22.8633 -0.1 + vertex -19.3158 23.0662 -0.1 + endloop + endfacet + facet normal 0.145154 -0.989409 0 + outer loop + vertex -19.3158 23.0662 -0.1 + vertex -17.0412 23.3999 0 + vertex -19.3158 23.0662 0 + endloop + endfacet + facet normal 0.145154 -0.989409 0 + outer loop + vertex -17.0412 23.3999 0 + vertex -19.3158 23.0662 -0.1 + vertex -17.0412 23.3999 -0.1 + endloop + endfacet + facet normal 0.153306 -0.988179 0 + outer loop + vertex -17.0412 23.3999 -0.1 + vertex -14.1612 23.8467 0 + vertex -17.0412 23.3999 0 + endloop + endfacet + facet normal 0.153306 -0.988179 0 + outer loop + vertex -14.1612 23.8467 0 + vertex -17.0412 23.3999 -0.1 + vertex -14.1612 23.8467 -0.1 + endloop + endfacet + facet normal 0.152324 -0.988331 0 + outer loop + vertex -14.1612 23.8467 -0.1 + vertex -10.5711 24.4 0 + vertex -14.1612 23.8467 0 + endloop + endfacet + facet normal 0.152324 -0.988331 0 + outer loop + vertex -10.5711 24.4 0 + vertex -14.1612 23.8467 -0.1 + vertex -10.5711 24.4 -0.1 + endloop + endfacet + facet normal 0.28937 -0.957217 0 + outer loop + vertex -10.5711 24.4 -0.1 + vertex -10.5349 24.4109 0 + vertex -10.5711 24.4 0 + endloop + endfacet + facet normal 0.28937 -0.957217 0 + outer loop + vertex -10.5349 24.4109 0 + vertex -10.5711 24.4 -0.1 + vertex -10.5349 24.4109 -0.1 + endloop + endfacet + facet normal 0.978613 0.20571 0 + outer loop + vertex -10.5349 24.4109 0 + vertex -10.5394 24.4322 -0.1 + vertex -10.5394 24.4322 0 + endloop + endfacet + facet normal 0.978613 0.20571 0 + outer loop + vertex -10.5394 24.4322 -0.1 + vertex -10.5349 24.4109 0 + vertex -10.5349 24.4109 -0.1 + endloop + endfacet + facet normal 0.497201 0.867635 -0 + outer loop + vertex -10.5394 24.4322 -0.1 + vertex -10.6591 24.5009 0 + vertex -10.5394 24.4322 0 + endloop + endfacet + facet normal 0.497201 0.867635 0 + outer loop + vertex -10.6591 24.5009 0 + vertex -10.5394 24.4322 -0.1 + vertex -10.6591 24.5009 -0.1 + endloop + endfacet + facet normal 0.356744 0.934202 -0 + outer loop + vertex -10.6591 24.5009 -0.1 + vertex -10.9077 24.5958 0 + vertex -10.6591 24.5009 0 + endloop + endfacet + facet normal 0.356744 0.934202 0 + outer loop + vertex -10.9077 24.5958 0 + vertex -10.6591 24.5009 -0.1 + vertex -10.9077 24.5958 -0.1 + endloop + endfacet + facet normal 0.299009 0.95425 -0 + outer loop + vertex -10.9077 24.5958 -0.1 + vertex -11.2625 24.7069 0 + vertex -10.9077 24.5958 0 + endloop + endfacet + facet normal 0.299009 0.95425 0 + outer loop + vertex -11.2625 24.7069 0 + vertex -10.9077 24.5958 -0.1 + vertex -11.2625 24.7069 -0.1 + endloop + endfacet + facet normal 0.214726 0.976674 -0 + outer loop + vertex -11.2625 24.7069 -0.1 + vertex -11.7825 24.8213 0 + vertex -11.2625 24.7069 0 + endloop + endfacet + facet normal 0.214726 0.976674 0 + outer loop + vertex -11.7825 24.8213 0 + vertex -11.2625 24.7069 -0.1 + vertex -11.7825 24.8213 -0.1 + endloop + endfacet + facet normal 0.131639 0.991298 -0 + outer loop + vertex -11.7825 24.8213 -0.1 + vertex -12.4277 24.907 0 + vertex -11.7825 24.8213 0 + endloop + endfacet + facet normal 0.131639 0.991298 0 + outer loop + vertex -12.4277 24.907 0 + vertex -11.7825 24.8213 -0.1 + vertex -12.4277 24.907 -0.1 + endloop + endfacet + facet normal 0.0771921 0.997016 -0 + outer loop + vertex -12.4277 24.907 -0.1 + vertex -13.1566 24.9634 0 + vertex -12.4277 24.907 0 + endloop + endfacet + facet normal 0.0771921 0.997016 0 + outer loop + vertex -13.1566 24.9634 0 + vertex -12.4277 24.907 -0.1 + vertex -13.1566 24.9634 -0.1 + endloop + endfacet + facet normal 0.0344425 0.999407 -0 + outer loop + vertex -13.1566 24.9634 -0.1 + vertex -13.9275 24.99 0 + vertex -13.1566 24.9634 0 + endloop + endfacet + facet normal 0.0344425 0.999407 0 + outer loop + vertex -13.9275 24.99 0 + vertex -13.1566 24.9634 -0.1 + vertex -13.9275 24.99 -0.1 + endloop + endfacet + facet normal -0.00506693 0.999987 0 + outer loop + vertex -13.9275 24.99 -0.1 + vertex -14.6988 24.986 0 + vertex -13.9275 24.99 0 + endloop + endfacet + facet normal -0.00506693 0.999987 0 + outer loop + vertex -14.6988 24.986 0 + vertex -13.9275 24.99 -0.1 + vertex -14.6988 24.986 -0.1 + endloop + endfacet + facet normal -1 0 0 + outer loop + vertex -110 -110 -3 + vertex -110 110 0 + vertex -110 110 -3 + endloop + endfacet + facet normal -1 -0 0 + outer loop + vertex -110 110 0 + vertex -110 -110 -3 + vertex -110 -110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.0919 -25.8829 0 + vertex -27.8988 -26.2055 0 + vertex -27.9236 -26.0946 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.8988 -26.2055 0 + vertex -28.2888 -25.7968 0 + vertex -27.8924 -26.5154 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.0919 -25.8829 0 + vertex -27.9236 -26.0946 0 + vertex -27.9636 -26.0069 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.0919 -25.8829 0 + vertex -27.9636 -26.0069 0 + vertex -28.0195 -25.9379 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.8988 -26.2055 0 + vertex -28.0919 -25.8829 0 + vertex -28.2888 -25.7968 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.5596 -25.7117 0 + vertex -27.8924 -26.5154 0 + vertex -28.2888 -25.7968 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.8924 -26.5154 0 + vertex -28.5596 -25.7117 0 + vertex -27.9393 -26.9734 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.7678 -25.6646 0 + vertex -27.9393 -26.9734 0 + vertex -28.5596 -25.7117 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.9103 -14.3386 0 + vertex -21.5729 -16.4428 0 + vertex -21.5693 -15.5508 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.1296 -14.5577 0 + vertex -21.5693 -15.5508 0 + vertex -21.5879 -15.2616 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.8956 -13.512 0 + vertex -35.4754 -14.1281 0 + vertex -35.4904 -13.894 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.6956 -13.593 0 + vertex -35.4904 -13.894 0 + vertex -35.5189 -13.7992 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.6956 -13.593 0 + vertex -35.5189 -13.7992 0 + vertex -35.5622 -13.718 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.1669 -13.4677 0 + vertex -35.4754 -14.1281 0 + vertex -35.8956 -13.512 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.6956 -13.593 0 + vertex -35.5622 -13.718 0 + vertex -35.6209 -13.6496 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.4904 -13.894 0 + vertex -35.6956 -13.593 0 + vertex -35.8956 -13.512 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.4754 -14.1281 0 + vertex -36.1669 -13.4677 0 + vertex -35.5123 -14.4274 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.5145 -13.4531 0 + vertex -35.5123 -14.4274 0 + vertex -36.1669 -13.4677 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.5123 -14.4274 0 + vertex -36.5145 -13.4531 0 + vertex -35.5964 -14.799 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.7305 -13.4387 0 + vertex -35.5964 -14.799 0 + vertex -36.5145 -13.4531 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.5964 -14.799 0 + vertex -36.7305 -13.4387 0 + vertex -35.7796 -15.3934 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.9216 -13.3997 0 + vertex -35.7796 -15.3934 0 + vertex -36.7305 -13.4387 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.0874 -13.3385 0 + vertex -35.7796 -15.3934 0 + vertex -36.9216 -13.3997 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.7796 -15.3934 0 + vertex -37.0874 -13.3385 0 + vertex -36.0907 -16.2655 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.2276 -13.2576 0 + vertex -36.0907 -16.2655 0 + vertex -37.0874 -13.3385 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.0907 -16.2655 0 + vertex -37.2276 -13.2576 0 + vertex -36.5163 -17.3821 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.3418 -13.1594 0 + vertex -36.5163 -17.3821 0 + vertex -37.2276 -13.2576 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.4296 -13.0463 0 + vertex -36.5163 -17.3821 0 + vertex -37.3418 -13.1594 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.5163 -17.3821 0 + vertex -37.4296 -13.0463 0 + vertex -37.0431 -18.7102 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.4908 -12.9209 0 + vertex -37.0431 -18.7102 0 + vertex -37.4296 -13.0463 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.3469 -21.8682 0 + vertex -37.4908 -12.9209 0 + vertex -37.5249 -12.7854 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.3834 -12.1929 0 + vertex -38.6203 24.2212 0 + vertex -37.4611 -12.3438 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.4908 -12.9209 0 + vertex -38.3469 -21.8682 0 + vertex -37.0431 -18.7102 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.8955 -25.4747 0 + vertex -37.5249 -12.7854 0 + vertex -37.5315 -12.6425 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.8265 24.6102 0 + vertex -37.4611 -12.3438 0 + vertex -38.6203 24.2212 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.4611 -12.3438 0 + vertex -38.8265 24.6102 0 + vertex -37.5104 -12.4945 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.0227 25.0923 0 + vertex -37.5104 -12.4945 0 + vertex -38.8265 24.6102 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.846 -36.863 0 + vertex -37.5104 -12.4945 0 + vertex -39.0227 25.0923 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -47.7274 -36.6957 0 + vertex -37.5104 -12.4945 0 + vertex -47.846 -36.863 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.846 -36.863 0 + vertex -39.0227 25.0923 0 + vertex -39.1186 25.4589 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 110 0 + vertex -39.1186 25.4589 0 + vertex -39.13 25.5984 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -47.5785 -36.5332 0 + vertex -37.5315 -12.6425 0 + vertex -47.7274 -36.6957 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.0107 24.2804 0 + vertex -26.053 23.8437 0 + vertex -24.6523 24.0122 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.5818 24.4056 0 + vertex -26.053 23.8437 0 + vertex -26.0107 24.2804 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.5818 24.4056 0 + vertex -26.7338 23.7794 0 + vertex -26.053 23.8437 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.1227 24.5501 0 + vertex -26.7338 23.7794 0 + vertex -26.5818 24.4056 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.1227 24.5501 0 + vertex -27.3569 23.7586 0 + vertex -26.7338 23.7794 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.636 24.7152 0 + vertex -27.3569 23.7586 0 + vertex -27.1227 24.5501 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.636 24.7152 0 + vertex -27.9279 23.7822 0 + vertex -27.3569 23.7586 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.1248 24.9019 0 + vertex -27.9279 23.7822 0 + vertex -27.636 24.7152 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.1248 24.9019 0 + vertex -28.4524 23.8513 0 + vertex -27.9279 23.7822 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.9359 23.9669 0 + vertex -28.1248 24.9019 0 + vertex -28.5919 25.1115 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.1248 24.9019 0 + vertex -28.9359 23.9669 0 + vertex -28.4524 23.8513 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.384 24.13 0 + vertex -28.5919 25.1115 0 + vertex -29.0402 25.3453 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.5919 25.1115 0 + vertex -29.384 24.13 0 + vertex -28.9359 23.9669 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.8023 24.3416 0 + vertex -29.0402 25.3453 0 + vertex -29.4725 25.6043 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.0402 25.3453 0 + vertex -29.8023 24.3416 0 + vertex -29.384 24.13 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.5308 24.8328 0 + vertex -29.4725 25.6043 0 + vertex -29.8918 25.8898 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.4725 25.6043 0 + vertex -30.1964 24.6027 0 + vertex -29.8023 24.3416 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.4725 25.6043 0 + vertex -30.5308 24.8328 0 + vertex -30.1964 24.6027 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.8055 24.9813 0 + vertex -29.8918 25.8898 0 + vertex -30.6514 26.471 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.8918 25.8898 0 + vertex -30.8055 24.9813 0 + vertex -30.5308 24.8328 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.1676 25.0376 0 + vertex -30.6514 26.471 0 + vertex -30.9143 26.7038 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.6514 26.471 0 + vertex -31.0185 25.0493 0 + vertex -30.8055 24.9813 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.6514 26.471 0 + vertex -31.1012 25.0533 0 + vertex -31.0185 25.0493 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.1676 25.0376 0 + vertex -30.9143 26.7038 0 + vertex -31.1043 26.9038 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.6514 26.471 0 + vertex -31.1676 25.0376 0 + vertex -31.1012 25.0533 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.1043 26.9038 0 + vertex -31.2175 25.0021 0 + vertex -31.1676 25.0376 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2248 27.0754 0 + vertex -31.2175 25.0021 0 + vertex -31.1043 26.9038 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2248 27.0754 0 + vertex -31.2507 24.9472 0 + vertex -31.2175 25.0021 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.2082 23.4707 0 + vertex -31.2507 24.9472 0 + vertex -31.2248 27.0754 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.2082 23.4707 0 + vertex -31.2248 27.0754 0 + vertex -31.2795 27.2229 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.9294 20.0018 0 + vertex -10.9261 19.832 0 + vertex -10.904 19.9248 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.0035 20.0644 0 + vertex -10.9261 19.832 0 + vertex -10.9294 20.0018 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.9261 19.832 0 + vertex -11.0035 20.0644 0 + vertex -10.9948 19.7221 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.1271 20.114 0 + vertex -10.9948 19.7221 0 + vertex -11.0035 20.0644 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.9948 19.7221 0 + vertex -11.1271 20.114 0 + vertex -11.1091 19.5935 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.3013 20.1521 0 + vertex -11.1091 19.5935 0 + vertex -11.1271 20.114 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.5271 20.1801 0 + vertex -11.1091 19.5935 0 + vertex -11.3013 20.1521 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.1091 19.5935 0 + vertex -11.5271 20.1801 0 + vertex -11.4702 19.2748 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.1376 20.2112 0 + vertex -11.4702 19.2748 0 + vertex -11.5271 20.1801 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.4702 19.2748 0 + vertex -12.1376 20.2112 0 + vertex -12.0016 18.8648 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.9665 20.2187 0 + vertex -12.0016 18.8648 0 + vertex -12.1376 20.2112 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.9665 20.2187 0 + vertex -13.8225 17.5152 0 + vertex -12.0016 18.8648 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.9037 20.2008 0 + vertex -13.8225 17.5152 0 + vertex -12.9665 20.2187 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.8461 20.153 0 + vertex -13.8225 17.5152 0 + vertex -13.9037 20.2008 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.8225 17.5152 0 + vertex -14.8461 20.153 0 + vertex -14.4648 17.0612 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.684 20.0825 0 + vertex -14.4648 17.0612 0 + vertex -14.8461 20.153 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.4648 17.0612 0 + vertex -15.684 20.0825 0 + vertex -14.9972 16.7116 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.3079 19.9967 0 + vertex -14.9972 16.7116 0 + vertex -15.684 20.0825 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.9972 16.7116 0 + vertex -16.3079 19.9967 0 + vertex -15.4716 16.4339 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.2235 19.8332 0 + vertex -15.4716 16.4339 0 + vertex -16.3079 19.9967 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.4716 16.4339 0 + vertex -17.2235 19.8332 0 + vertex -15.9397 16.1961 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.9397 16.1961 0 + vertex -17.2235 19.8332 0 + vertex -16.4531 15.9659 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.1791 19.6811 0 + vertex -16.4531 15.9659 0 + vertex -17.2235 19.8332 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.4531 15.9659 0 + vertex -18.1791 19.6811 0 + vertex -17.0637 15.711 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.1791 19.6811 0 + vertex -18.4061 15.1884 0 + vertex -17.0637 15.711 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.1671 19.4139 0 + vertex -18.4061 15.1884 0 + vertex -18.1791 19.6811 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.4061 15.1884 0 + vertex -20.1671 19.4139 0 + vertex -19.7213 14.7364 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.1849 19.2007 0 + vertex -19.7213 14.7364 0 + vertex -20.1671 19.4139 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.7213 14.7364 0 + vertex -22.1849 19.2007 0 + vertex -21.0167 14.3533 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.1849 19.2007 0 + vertex -22.3001 14.0374 0 + vertex -21.0167 14.3533 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.1455 19.0472 0 + vertex -22.3001 14.0374 0 + vertex -22.1849 19.2007 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.3001 14.0374 0 + vertex -24.1455 19.0472 0 + vertex -23.579 13.787 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.1455 19.0472 0 + vertex -24.8613 13.6003 0 + vertex -23.579 13.787 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.9619 18.9589 0 + vertex -24.8613 13.6003 0 + vertex -24.1455 19.0472 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.9619 18.9589 0 + vertex -26.1544 13.4758 0 + vertex -24.8613 13.6003 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.7887 18.9409 0 + vertex -26.1544 13.4758 0 + vertex -25.9619 18.9589 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.7887 18.9409 0 + vertex -27.4661 13.4117 0 + vertex -26.1544 13.4758 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.5469 18.9414 0 + vertex -27.4661 13.4117 0 + vertex -26.7887 18.9409 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2256 18.9609 0 + vertex -27.4661 13.4117 0 + vertex -27.5469 18.9414 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.0548 13.353 0 + vertex -28.2256 18.9609 0 + vertex -28.8137 19.0002 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2256 18.9609 0 + vertex -29.0548 13.353 0 + vertex -27.4661 13.4117 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.3006 19.0599 0 + vertex -29.0548 13.353 0 + vertex -28.8137 19.0002 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.3006 19.0599 0 + vertex -29.5683 13.309 0 + vertex -29.0548 13.353 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.6752 19.1409 0 + vertex -29.5683 13.309 0 + vertex -29.3006 19.0599 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.6752 19.1409 0 + vertex -29.9294 13.2465 0 + vertex -29.5683 13.309 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.5811 19.4165 0 + vertex -29.9294 13.2465 0 + vertex -29.6752 19.1409 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.9294 13.2465 0 + vertex -30.5811 19.4165 0 + vertex -30.1646 13.1588 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.4466 19.7034 0 + vertex -30.1646 13.1588 0 + vertex -30.5811 19.4165 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1646 13.1588 0 + vertex -31.4466 19.7034 0 + vertex -30.2432 13.1034 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.271 20.0012 0 + vertex -30.2432 13.1034 0 + vertex -31.4466 19.7034 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.0533 20.3093 0 + vertex -30.3001 13.0393 0 + vertex -32.271 20.0012 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2432 13.1034 0 + vertex -32.271 20.0012 0 + vertex -30.3001 13.0393 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.6083 4.95794 0 + vertex 23.6129 4.5634 0 + vertex 23.6192 4.7586 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.6083 4.95794 0 + vertex 23.5897 4.3717 0 + vertex 23.6129 4.5634 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.6083 4.95794 0 + vertex 23.5494 4.18291 0 + vertex 23.5897 4.3717 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.4183 3.81156 0 + vertex 23.6083 4.95794 0 + vertex 23.5351 5.37146 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.6083 4.95794 0 + vertex 23.4183 3.81156 0 + vertex 23.5494 4.18291 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.22 3.44442 0 + vertex 23.5351 5.37146 0 + vertex 23.3929 5.8089 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.5351 5.37146 0 + vertex 23.22 3.44442 0 + vertex 23.4183 3.81156 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.1811 6.27516 0 + vertex 23.22 3.44442 0 + vertex 23.3929 5.8089 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.1811 6.27516 0 + vertex 23.0427 3.12896 0 + vertex 23.22 3.44442 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.8992 6.77518 0 + vertex 23.0427 3.12896 0 + vertex 23.1811 6.27516 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.6639 4.10009 0 + vertex 23.0427 3.12896 0 + vertex 22.8992 6.77518 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 16.0356 2.90743 0 + vertex 23.0427 3.12896 0 + vertex 15.6639 4.10009 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0427 3.12896 0 + vertex 16.0356 2.90743 0 + vertex 22.9115 2.82433 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6639 4.10009 0 + vertex 22.8992 6.77518 0 + vertex 22.6364 7.18064 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4871 9.26334 0 + vertex 26.9615 2.94949 0 + vertex 26.9647 2.16551 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9103 6.51977 0 + vertex 27.0158 7.30485 0 + vertex 26.9517 6.92758 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2208 8.08714 0 + vertex 26.9294 3.98634 0 + vertex 26.9615 2.94949 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.0158 7.30485 0 + vertex 26.9103 6.51977 0 + vertex 26.8894 6.05157 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2208 8.08714 0 + vertex 26.8894 6.05157 0 + vertex 26.8871 5.49316 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2208 8.08714 0 + vertex 26.8871 5.49316 0 + vertex 26.9294 3.98634 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.8032 1.21715 0 + vertex 41.156 -19.2119 0 + vertex 26.8581 1.29842 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.156 -19.2119 0 + vertex 26.8032 1.21715 0 + vertex 40.4513 -19.4233 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 40.4513 -19.4233 0 + vertex 26.8032 1.21715 0 + vertex 39.5298 -19.7361 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9647 2.16551 0 + vertex 27.5397 9.70386 0 + vertex 27.4871 9.26334 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9615 2.94949 0 + vertex 27.4871 9.26334 0 + vertex 27.4176 8.86037 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9615 2.94949 0 + vertex 27.4176 8.86037 0 + vertex 27.3295 8.47496 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.9615 2.94949 0 + vertex 27.3295 8.47496 0 + vertex 27.2208 8.08714 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 39.5298 -19.7361 0 + vertex 26.8032 1.21715 0 + vertex 29.9546 -19.4981 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.8894 6.05157 0 + vertex 27.1048 7.68143 0 + vertex 27.0158 7.30485 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.1048 7.68143 0 + vertex 26.8894 6.05157 0 + vertex 27.2208 8.08714 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.9546 -19.4981 0 + vertex 26.8032 1.21715 0 + vertex 29.5013 -19.3404 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.5013 -19.3404 0 + vertex 26.8032 1.21715 0 + vertex 29.0007 -19.2301 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.7352 1.18648 0 + vertex 29.0007 -19.2301 0 + vertex 26.8032 1.21715 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.0007 -19.2301 0 + vertex 26.7352 1.18648 0 + vertex 28.4483 -19.1654 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.6819 -11.0243 0 + vertex 28.4483 -19.1654 0 + vertex 26.7352 1.18648 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.4483 -19.1654 0 + vertex 19.6819 -11.0243 0 + vertex 27.8398 -19.1444 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9199 -2.19366 0 + vertex 26.7352 1.18648 0 + vertex 26.6535 1.20459 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1085 -1.15452 0 + vertex 26.6535 1.20459 0 + vertex 26.5572 1.2697 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 19.6895 -11.13 0 + vertex 27.8398 -19.1444 0 + vertex 19.6819 -11.0243 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.9975 2.16372 0 + vertex 26.5572 1.2697 0 + vertex 26.4455 1.37999 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2201 2.19262 0 + vertex 26.4455 1.37999 0 + vertex 26.3175 1.53367 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.4388 2.25734 0 + vertex 26.3175 1.53367 0 + vertex 26.0094 1.96397 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.8398 -19.1444 0 + vertex 19.6895 -11.13 0 + vertex 27.1629 -19.1581 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6285 2.34829 0 + vertex 26.0094 1.96397 0 + vertex 25.8138 2.23679 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.764 2.4559 0 + vertex 25.8138 2.23679 0 + vertex 25.6376 2.44612 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.764 2.4559 0 + vertex 25.6376 2.44612 0 + vertex 25.4766 2.59351 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7352 1.18648 0 + vertex 20.8331 -2.41014 0 + vertex 20.7245 -2.61588 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.9074 2.59483 0 + vertex 25.4766 2.59351 0 + vertex 25.3271 2.68052 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.0464 2.67962 0 + vertex 25.3271 2.68052 0 + vertex 25.185 2.7087 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3271 2.68052 0 + vertex 25.0464 2.67962 0 + vertex 24.9074 2.59483 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.8138 2.23679 0 + vertex 24.764 2.4559 0 + vertex 24.6285 2.34829 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.4766 2.59351 0 + vertex 24.9074 2.59483 0 + vertex 24.764 2.4559 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0094 1.96397 0 + vertex 24.6285 2.34829 0 + vertex 24.4388 2.25734 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.1629 -19.1581 0 + vertex 19.6895 -11.13 0 + vertex 26.5531 -19.2026 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.3175 1.53367 0 + vertex 24.4388 2.25734 0 + vertex 24.2201 2.19262 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.5531 -19.2026 0 + vertex 19.6598 -11.2975 0 + vertex 25.9886 -19.284 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.4455 1.37999 0 + vertex 24.2201 2.19262 0 + vertex 23.9975 2.16372 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.5572 1.2697 0 + vertex 23.9975 2.16372 0 + vertex 21.1355 -0.658014 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0469 1.94283 0 + vertex 23.9975 2.16372 0 + vertex 23.7673 2.14309 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.6598 -11.2975 0 + vertex 26.5531 -19.2026 0 + vertex 19.6895 -11.13 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0469 1.94283 0 + vertex 23.7673 2.14309 0 + vertex 23.5277 2.10089 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0469 1.94283 0 + vertex 23.5277 2.10089 0 + vertex 23.3072 2.04326 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7352 1.18648 0 + vertex 20.9199 -2.19366 0 + vertex 20.8331 -2.41014 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.9975 2.16372 0 + vertex 23.0469 1.94283 0 + vertex 21.1355 -0.658014 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1316 -0.233279 0 + vertex 23.0469 1.94283 0 + vertex 22.9727 1.93385 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.099 0.0745682 0 + vertex 22.9727 1.93385 0 + vertex 22.9112 1.94773 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0726 0.170561 0 + vertex 22.9112 1.94773 0 + vertex 22.8622 1.9828 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0399 0.220413 0 + vertex 22.8622 1.9828 0 + vertex 22.8257 2.03737 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0399 0.220413 0 + vertex 22.8257 2.03737 0 + vertex 22.8016 2.10976 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9772 0.235111 0 + vertex 22.8016 2.10976 0 + vertex 22.7901 2.30129 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.9115 2.82433 0 + vertex 16.2363 2.34533 0 + vertex 22.827 2.54396 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6639 4.10009 0 + vertex 22.6364 7.18064 0 + vertex 22.3621 7.54907 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.6535 1.20459 0 + vertex 21.1085 -1.15452 0 + vertex 21.0399 -1.71534 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6639 4.10009 0 + vertex 22.3621 7.54907 0 + vertex 22.0631 7.89267 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6639 4.10009 0 + vertex 22.0631 7.89267 0 + vertex 21.7259 8.22365 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.5572 1.2697 0 + vertex 21.1355 -0.658014 0 + vertex 21.1085 -1.15452 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.498 4.716 0 + vertex 21.7259 8.22365 0 + vertex 21.3371 8.55423 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.6535 1.20459 0 + vertex 21.0399 -1.71534 0 + vertex 20.9878 -1.96317 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.6535 1.20459 0 + vertex 20.9878 -1.96317 0 + vertex 20.9199 -2.19366 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.5653 -11.6083 0 + vertex 25.9886 -19.284 0 + vertex 19.6598 -11.2975 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.1479 -12.7477 0 + vertex 25.4477 -19.4082 0 + vertex 19.5653 -11.6083 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.9086 -19.5812 0 + vertex 18.3699 -14.7241 0 + vertex 24.3497 -19.8089 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.3699 -14.7241 0 + vertex 24.9086 -19.5812 0 + vertex 19.1479 -12.7477 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.9886 -19.284 0 + vertex 19.5653 -11.6083 0 + vertex 25.4477 -19.4082 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7352 1.18648 0 + vertex 20.7245 -2.61588 0 + vertex 19.6583 -10.9333 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6583 -10.9333 0 + vertex 20.7245 -2.61588 0 + vertex 20.591 -2.8142 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6583 -10.9333 0 + vertex 20.591 -2.8142 0 + vertex 20.4297 -3.0084 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.3497 -19.8089 0 + vertex 18.3699 -14.7241 0 + vertex 23.7493 -20.0973 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6172 -10.8571 0 + vertex 20.4297 -3.0084 0 + vertex 20.2374 -3.20177 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6172 -10.8571 0 + vertex 20.2374 -3.20177 0 + vertex 20.0112 -3.39762 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.7493 -20.0973 0 + vertex 18.3699 -14.7241 0 + vertex 23.0854 -20.4525 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 17.1638 -17.7131 0 + vertex 23.0854 -20.4525 0 + vertex 18.3699 -14.7241 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0854 -20.4525 0 + vertex 17.1638 -17.7131 0 + vertex 22.3543 -20.8886 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.3543 -20.8886 0 + vertex 17.1638 -17.7131 0 + vertex 21.6485 -21.3703 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.6485 -21.3703 0 + vertex 17.1638 -17.7131 0 + vertex 20.9665 -21.899 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9665 -21.899 0 + vertex 17.1638 -17.7131 0 + vertex 20.3071 -22.4759 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3071 -22.4759 0 + vertex 17.1638 -17.7131 0 + vertex 19.6689 -23.1024 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6689 -23.1024 0 + vertex 17.1638 -17.7131 0 + vertex 19.0503 -23.7798 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.5952 -23.8342 0 + vertex 19.0503 -23.7798 0 + vertex 17.1638 -17.7131 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.0503 -23.7798 0 + vertex 14.5952 -23.8342 0 + vertex 18.4501 -24.5093 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4501 -24.5093 0 + vertex 14.5952 -23.8342 0 + vertex 17.8667 -25.2923 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.8667 -25.2923 0 + vertex 14.5952 -23.8342 0 + vertex 17.4656 -25.8764 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.4656 -25.8764 0 + vertex 14.5952 -23.8342 0 + vertex 17.0901 -26.4624 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.0901 -26.4624 0 + vertex 14.5952 -23.8342 0 + vertex 16.7406 -27.0496 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.7406 -27.0496 0 + vertex 14.5952 -23.8342 0 + vertex 16.4172 -27.6373 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.8097 -28.1484 0 + vertex 16.4172 -27.6373 0 + vertex 14.5952 -23.8342 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.4172 -27.6373 0 + vertex 12.8097 -28.1484 0 + vertex 16.1203 -28.2246 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.1203 -28.2246 0 + vertex 12.8097 -28.1484 0 + vertex 15.8502 -28.8109 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.8502 -28.8109 0 + vertex 12.8097 -28.1484 0 + vertex 15.6071 -29.3953 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6071 -29.3953 0 + vertex 12.8097 -28.1484 0 + vertex 15.3912 -29.9771 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0447 -30.0547 0 + vertex 15.3912 -29.9771 0 + vertex 12.8097 -28.1484 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.3912 -29.9771 0 + vertex 12.0447 -30.0547 0 + vertex 15.2028 -30.5555 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9098 -31.6993 0 + vertex 11.5005 -31.4602 0 + vertex 14.8056 -32.2631 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.5005 -31.4602 0 + vertex 14.9098 -31.6993 0 + vertex 12.0447 -30.0547 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0423 -31.1299 0 + vertex 12.0447 -30.0547 0 + vertex 14.9098 -31.6993 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2028 -30.5555 0 + vertex 12.0447 -30.0547 0 + vertex 15.0423 -31.1299 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.0186 22.3563 0 + vertex -30.0859 22.0525 0 + vertex -28.3394 21.9725 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.4321 22.5993 0 + vertex -30.0859 22.0525 0 + vertex -29.0186 22.3563 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.7937 22.8325 0 + vertex -30.0859 22.0525 0 + vertex -29.4321 22.5993 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1071 23.0591 0 + vertex -30.0859 22.0525 0 + vertex -29.7937 22.8325 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.5728 22.0884 0 + vertex -30.1071 23.0591 0 + vertex -30.3761 23.2826 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1071 23.0591 0 + vertex -30.5728 22.0884 0 + vertex -30.0859 22.0525 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.074 22.1513 0 + vertex -30.3761 23.2826 0 + vertex -30.6044 23.5064 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.5861 22.2399 0 + vertex -30.6044 23.5064 0 + vertex -30.7957 23.7338 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.1061 22.3529 0 + vertex -30.7957 23.7338 0 + vertex -30.9539 23.9682 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3761 23.2826 0 + vertex -31.074 22.1513 0 + vertex -30.5728 22.0884 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.1061 22.3529 0 + vertex -30.9539 23.9682 0 + vertex -31.0826 24.213 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.6306 22.489 0 + vertex -31.0826 24.213 0 + vertex -31.2103 24.5339 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.1564 22.6469 0 + vertex -31.2103 24.5339 0 + vertex -31.2656 24.779 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.6044 23.5064 0 + vertex -31.5861 22.2399 0 + vertex -31.074 22.1513 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.199 23.023 0 + vertex -31.2656 24.779 0 + vertex -31.2668 24.8727 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -34.7094 23.2385 0 + vertex -31.2507 24.9472 0 + vertex -35.2082 23.4707 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.06691 -19.2358 0 + vertex -17.4002 -11.6639 0 + vertex -17.3941 -11.77 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9775 12.4282 0 + vertex -17.4268 -11.5861 0 + vertex -17.4002 -11.6639 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9775 12.4282 0 + vertex -17.4764 -11.5321 0 + vertex -17.4268 -11.5861 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5514 -11.4978 0 + vertex -17.3003 12.3696 0 + vertex -17.5181 12.3491 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9775 12.4282 0 + vertex -17.5514 -11.4978 0 + vertex -17.4764 -11.5321 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5181 12.3491 0 + vertex -17.7876 -11.4712 0 + vertex -17.5514 -11.4978 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5728 12.2484 0 + vertex -17.5181 12.3491 0 + vertex -17.9556 12.3221 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5181 12.3491 0 + vertex -18.5728 12.2484 0 + vertex -17.7876 -11.4712 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -19.2876 12.1394 0 + vertex -17.7876 -11.4712 0 + vertex -18.5728 12.2484 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.0181 12.0063 0 + vertex -17.7876 -11.4712 0 + vertex -19.2876 12.1394 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.4772 11.9313 0 + vertex -17.7876 -11.4712 0 + vertex -20.0181 12.0063 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -21.0446 11.8651 0 + vertex -17.7876 -11.4712 0 + vertex -20.4772 11.9313 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.4311 11.7593 0 + vertex -17.7876 -11.4712 0 + vertex -21.0446 11.8651 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.175 -11.3523 0 + vertex -22.4311 11.7593 0 + vertex -24.031 11.6901 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.175 -11.3523 0 + vertex -24.031 11.6901 0 + vertex -25.698 11.6586 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.4311 11.7593 0 + vertex -27.175 -11.3523 0 + vertex -17.7876 -11.4712 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.2855 11.6658 0 + vertex -27.175 -11.3523 0 + vertex -25.698 11.6586 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.647 11.7129 0 + vertex -27.175 -11.3523 0 + vertex -27.2855 11.6658 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.0944 -11.3029 0 + vertex -28.647 11.7129 0 + vertex -29.1973 11.7518 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.0944 -11.3029 0 + vertex -29.1973 11.7518 0 + vertex -29.6362 11.801 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.0944 -11.3029 0 + vertex -29.6362 11.801 0 + vertex -29.9453 11.8607 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.7011 -11.3017 0 + vertex -29.9453 11.8607 0 + vertex -30.0456 11.8946 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.6555 -11.3595 0 + vertex -30.0456 11.8946 0 + vertex -30.1065 11.9311 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.527 -11.5152 0 + vertex -30.1065 11.9311 0 + vertex -30.2115 12.0683 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.9755 -11.7636 0 + vertex -30.2115 12.0683 0 + vertex -30.2975 12.2549 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.2746 22.7082 0 + vertex -30.2975 12.2549 0 + vertex -30.3556 12.4664 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3001 13.0393 0 + vertex -33.0533 20.3093 0 + vertex -30.3387 12.9655 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.7926 20.6272 0 + vertex -30.3387 12.9655 0 + vertex -33.0533 20.3093 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3387 12.9655 0 + vertex -33.7926 20.6272 0 + vertex -30.3621 12.8813 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.647 11.7129 0 + vertex -32.0944 -11.3029 0 + vertex -27.175 -11.3523 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -34.4881 20.9542 0 + vertex -30.3621 12.8813 0 + vertex -33.7926 20.6272 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.1386 21.2899 0 + vertex -30.3621 12.8813 0 + vertex -34.4881 20.9542 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.9453 11.8607 0 + vertex -33.7011 -11.3017 0 + vertex -32.0944 -11.3029 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.3621 12.8813 0 + vertex -35.1386 21.2899 0 + vertex -30.377 12.6783 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.7435 21.6336 0 + vertex -30.377 12.6783 0 + vertex -35.1386 21.2899 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.0456 11.8946 0 + vertex -34.8583 -11.3197 0 + vertex -33.7011 -11.3017 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.3017 21.985 0 + vertex -30.377 12.6783 0 + vertex -35.7435 21.6336 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.0456 11.8946 0 + vertex -35.6555 -11.3595 0 + vertex -34.8583 -11.3197 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.377 12.6783 0 + vertex -36.3017 21.985 0 + vertex -30.3556 12.4664 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1065 11.9311 0 + vertex -36.1819 -11.4238 0 + vertex -35.6555 -11.3595 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.8124 22.3433 0 + vertex -30.3556 12.4664 0 + vertex -36.3017 21.985 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.1065 11.9311 0 + vertex -36.527 -11.5152 0 + vertex -36.1819 -11.4238 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2115 12.0683 0 + vertex -36.7802 -11.6364 0 + vertex -36.527 -11.5152 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.2746 22.7082 0 + vertex -30.3556 12.4664 0 + vertex -36.8124 22.3433 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2115 12.0683 0 + vertex -36.9755 -11.7636 0 + vertex -36.7802 -11.6364 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2975 12.2549 0 + vertex -37.2746 22.7082 0 + vertex -37.1409 -11.9004 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2975 12.2549 0 + vertex -37.1409 -11.9004 0 + vertex -36.9755 -11.7636 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.6874 23.0789 0 + vertex -37.1409 -11.9004 0 + vertex -37.2746 22.7082 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.1409 -11.9004 0 + vertex -37.6874 23.0789 0 + vertex -37.2767 -12.0443 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.0499 23.455 0 + vertex -37.2767 -12.0443 0 + vertex -37.6874 23.0789 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.3611 23.836 0 + vertex -37.2767 -12.0443 0 + vertex -38.0499 23.455 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.2767 -12.0443 0 + vertex -38.3611 23.836 0 + vertex -37.3834 -12.1929 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.6203 24.2212 0 + vertex -37.3834 -12.1929 0 + vertex -38.3611 23.836 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.15561 -22.5851 0 + vertex -8.45645 -23.4267 0 + vertex -8.48242 -23.1923 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.39946 -22.5595 0 + vertex -8.45645 -23.4267 0 + vertex -9.15561 -22.5851 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.94827 -22.6394 0 + vertex -8.48242 -23.1923 0 + vertex -8.54451 -22.9989 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.45645 -23.4267 0 + vertex -9.39946 -22.5595 0 + vertex -8.46654 -23.7044 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.77736 -22.7249 0 + vertex -8.54451 -22.9989 0 + vertex -8.64279 -22.8439 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -9.67988 -22.56 0 + vertex -8.46654 -23.7044 0 + vertex -9.39946 -22.5595 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.54451 -22.9989 0 + vertex -8.77736 -22.7249 0 + vertex -8.94827 -22.6394 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.48242 -23.1923 0 + vertex -8.94827 -22.6394 0 + vertex -9.15561 -22.5851 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.46654 -23.7044 0 + vertex -9.67988 -22.56 0 + vertex -8.51259 -24.0278 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -10.0796 -22.6123 0 + vertex -8.51259 -24.0278 0 + vertex -9.67988 -22.56 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.51259 -24.0278 0 + vertex -10.0796 -22.6123 0 + vertex -8.59455 -24.3995 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -10.5344 -22.7271 0 + vertex -8.59455 -24.3995 0 + vertex -10.0796 -22.6123 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.59455 -24.3995 0 + vertex -10.5344 -22.7271 0 + vertex -8.71232 -24.8218 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -10.9881 -22.8877 0 + vertex -8.71232 -24.8218 0 + vertex -10.5344 -22.7271 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.3849 -23.0769 0 + vertex -8.71232 -24.8218 0 + vertex -10.9881 -22.8877 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.71232 -24.8218 0 + vertex -11.3849 -23.0769 0 + vertex -9.05502 -25.8283 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.9359 -23.4045 0 + vertex -9.05502 -25.8283 0 + vertex -11.3849 -23.0769 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -12.4007 -23.7203 0 + vertex -9.05502 -25.8283 0 + vertex -11.9359 -23.4045 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -12.7941 -24.0414 0 + vertex -9.05502 -25.8283 0 + vertex -12.4007 -23.7203 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.2098 -26.3227 0 + vertex -9.5401 -27.0667 0 + vertex -13.9508 -25.7195 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.3777 -29.1914 0 + vertex -9.5401 -27.0667 0 + vertex -14.2098 -26.3227 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.05502 -25.8283 0 + vertex -12.7941 -24.0414 0 + vertex -9.5401 -27.0667 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.5815 -32.143 0 + vertex -15.3777 -29.1914 0 + vertex -11.9595 -33.0513 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.131 -24.3848 0 + vertex -9.5401 -27.0667 0 + vertex -12.7941 -24.0414 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.8163 -32.7116 0 + vertex -11.9595 -33.0513 0 + vertex -15.3777 -29.1914 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.4262 -24.7676 0 + vertex -9.5401 -27.0667 0 + vertex -13.131 -24.3848 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.9595 -33.0513 0 + vertex -16.8163 -32.7116 0 + vertex -12.3268 -33.8339 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.3268 -33.8339 0 + vertex -16.8163 -32.7116 0 + vertex -12.6843 -34.4922 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.5401 -27.0667 0 + vertex -13.4262 -24.7676 0 + vertex -13.6945 -25.2068 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.6843 -34.4922 0 + vertex -16.8163 -32.7116 0 + vertex -13.0331 -35.0276 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.5401 -27.0667 0 + vertex -13.6945 -25.2068 0 + vertex -13.9508 -25.7195 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.5401 -27.0667 0 + vertex -15.3777 -29.1914 0 + vertex -11.5815 -32.143 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.0331 -35.0276 0 + vertex -16.8163 -32.7116 0 + vertex -13.2045 -35.2497 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -14.4713 -35.9816 0 + vertex -13.2045 -35.2497 0 + vertex -16.8163 -32.7116 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.2045 -35.2497 0 + vertex -14.4713 -35.9816 0 + vertex -13.3741 -35.4417 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.3741 -35.4417 0 + vertex -14.4713 -35.9816 0 + vertex -13.5421 -35.6036 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -14.3614 -35.9691 0 + vertex -13.5421 -35.6036 0 + vertex -14.4713 -35.9816 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.5421 -35.6036 0 + vertex -14.3614 -35.9691 0 + vertex -13.7085 -35.7356 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.8736 -35.838 0 + vertex -14.3614 -35.9691 0 + vertex -14.0373 -35.911 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.0373 -35.911 0 + vertex -14.3614 -35.9691 0 + vertex -14.1999 -35.9546 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.7085 -35.7356 0 + vertex -14.3614 -35.9691 0 + vertex -13.8736 -35.838 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.1674 -33.591 0 + vertex -14.4713 -35.9816 0 + vertex -16.8163 -32.7116 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.4713 -35.9816 0 + vertex -17.1674 -33.591 0 + vertex -14.5979 -36.0176 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.5979 -36.0176 0 + vertex -17.1674 -33.591 0 + vertex -14.8831 -36.1495 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.4329 -34.3072 0 + vertex -14.8831 -36.1495 0 + vertex -17.1674 -33.591 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -16.5729 -36.2152 0 + vertex -14.8831 -36.1495 0 + vertex -17.4329 -34.3072 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -16.3106 -36.4662 0 + vertex -15.4564 -36.5832 0 + vertex -16.4249 -36.334 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.4564 -36.5832 0 + vertex -16.237 -36.6071 0 + vertex -15.7439 -36.902 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.2485 -36.9225 0 + vertex -15.8411 -37.0399 0 + vertex -16.2109 -36.752 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.8411 -37.0399 0 + vertex -16.2485 -36.9225 0 + vertex -15.9096 -37.1689 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.3508 -37.1428 0 + vertex -15.9096 -37.1689 0 + vertex -16.2485 -36.9225 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.7439 -36.902 0 + vertex -16.2109 -36.752 0 + vertex -15.8411 -37.0399 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -16.2109 -36.752 0 + vertex -15.7439 -36.902 0 + vertex -16.237 -36.6071 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -16.237 -36.6071 0 + vertex -15.4564 -36.5832 0 + vertex -16.3106 -36.4662 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -16.4249 -36.334 0 + vertex -15.1813 -36.3448 0 + vertex -16.5729 -36.2152 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.1813 -36.3448 0 + vertex -16.4249 -36.334 0 + vertex -15.4564 -36.5832 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.8831 -36.1495 0 + vertex -16.5729 -36.2152 0 + vertex -15.1813 -36.3448 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.5729 -36.2152 0 + vertex -17.4329 -34.3072 0 + vertex -16.7476 -36.1146 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.7476 -36.1146 0 + vertex -17.4329 -34.3072 0 + vertex -16.942 -36.0369 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.6153 -34.8741 0 + vertex -16.942 -36.0369 0 + vertex -17.4329 -34.3072 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.942 -36.0369 0 + vertex -17.6153 -34.8741 0 + vertex -17.1493 -35.9869 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.7168 -35.3062 0 + vertex -17.1493 -35.9869 0 + vertex -17.6153 -34.8741 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.738 -35.4761 0 + vertex -17.1493 -35.9869 0 + vertex -17.7168 -35.3062 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.1493 -35.9869 0 + vertex -17.738 -35.4761 0 + vertex -17.3625 -35.9691 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.7399 -35.6175 0 + vertex -17.3625 -35.9691 0 + vertex -17.738 -35.4761 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.3625 -35.9691 0 + vertex -17.7399 -35.6175 0 + vertex -17.4702 -35.9608 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -17.7228 -35.7323 0 + vertex -17.4702 -35.9608 0 + vertex -17.7399 -35.6175 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4702 -35.9608 0 + vertex -17.7228 -35.7323 0 + vertex -17.5603 -35.9348 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -17.6869 -35.8223 0 + vertex -17.5603 -35.9348 0 + vertex -17.7228 -35.7323 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5603 -35.9348 0 + vertex -17.6869 -35.8223 0 + vertex -17.6327 -35.8892 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.56309 -35.9367 0 + vertex -7.30266 -36.7536 0 + vertex -7.29619 -36.8569 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97004 -33.2395 0 + vertex -7.32635 -36.6539 0 + vertex -7.30266 -36.7536 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.13453 -33.8652 0 + vertex -3.97004 -33.2395 0 + vertex -7.70823 -32.8163 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97004 -33.2395 0 + vertex -7.36727 -36.5579 0 + vertex -7.32635 -36.6539 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97004 -33.2395 0 + vertex -7.50076 -36.3769 0 + vertex -7.36727 -36.5579 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97004 -33.2395 0 + vertex -8.13453 -33.8652 0 + vertex -7.50076 -36.3769 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.50076 -36.3769 0 + vertex -8.13453 -33.8652 0 + vertex -7.70312 -36.2106 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.32474 -34.384 0 + vertex -7.70312 -36.2106 0 + vertex -8.13453 -33.8652 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.70312 -36.2106 0 + vertex -8.32474 -34.384 0 + vertex -7.97432 -36.0592 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.55649 -35.3052 0 + vertex -7.97432 -36.0592 0 + vertex -8.32474 -34.384 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.97432 -36.0592 0 + vertex -8.55649 -35.3052 0 + vertex -8.30497 -35.8814 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.30497 -35.8814 0 + vertex -8.55649 -35.3052 0 + vertex -8.41808 -35.7975 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.57785 -35.4236 0 + vertex -8.41808 -35.7975 0 + vertex -8.55649 -35.3052 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.41808 -35.7975 0 + vertex -8.57785 -35.4236 0 + vertex -8.49955 -35.7129 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -8.57707 -35.529 0 + vertex -8.49955 -35.7129 0 + vertex -8.57785 -35.4236 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.49955 -35.7129 0 + vertex -8.57707 -35.529 0 + vertex -8.55176 -35.6244 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.88346 12.344 0 + vertex 1.92323 12.5289 0 + vertex 1.90284 12.6291 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.92323 12.5289 0 + vertex 1.88346 12.344 0 + vertex 1.91748 12.4352 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.81906 12.2515 0 + vertex 1.90284 12.6291 0 + vertex 1.85843 12.7398 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.90284 12.6291 0 + vertex 1.81906 12.2515 0 + vertex 1.88346 12.344 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.85843 12.7398 0 + vertex 1.72214 12.1537 0 + vertex 1.81906 12.2515 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.7147 12.9716 0 + vertex 1.72214 12.1537 0 + vertex 1.85843 12.7398 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.42228 11.926 0 + vertex 1.7147 12.9716 0 + vertex 1.51175 13.1874 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.7147 12.9716 0 + vertex 1.42228 11.926 0 + vertex 1.72214 12.1537 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.25015 13.3869 0 + vertex 1.42228 11.926 0 + vertex 1.51175 13.1874 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.25015 13.3869 0 + vertex 0.986004 11.656 0 + vertex 1.42228 11.926 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.930489 13.5702 0 + vertex 0.986004 11.656 0 + vertex 1.25015 13.3869 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.55335 13.737 0 + vertex 0.986004 11.656 0 + vertex 0.930489 13.5702 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.55335 13.737 0 + vertex 0.546849 11.4454 0 + vertex 0.986004 11.656 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.119316 13.8873 0 + vertex 0.546849 11.4454 0 + vertex 0.55335 13.737 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.119316 13.8873 0 + vertex 0.0942225 11.293 0 + vertex 0.546849 11.4454 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.382462 11.1972 0 + vertex 0.119316 13.8873 0 + vertex -0.371032 14.021 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.119316 13.8873 0 + vertex -0.382462 11.1972 0 + vertex 0.0942225 11.293 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.371032 14.021 0 + vertex -0.893798 11.1566 0 + vertex -0.382462 11.1972 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.917111 14.138 0 + vertex -0.893798 11.1566 0 + vertex -0.371032 14.021 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.917111 14.138 0 + vertex -1.45038 11.1697 0 + vertex -0.893798 11.1566 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.51834 14.2381 0 + vertex -1.45038 11.1697 0 + vertex -0.917111 14.138 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.51834 14.2381 0 + vertex -2.06279 11.235 0 + vertex -1.45038 11.1697 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.17413 14.3212 0 + vertex -2.06279 11.235 0 + vertex -1.51834 14.2381 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.17413 14.3212 0 + vertex -2.74162 11.3511 0 + vertex -2.06279 11.235 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.8839 14.3873 0 + vertex -2.74162 11.3511 0 + vertex -2.17413 14.3212 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.8839 14.3873 0 + vertex -3.43924 11.4799 0 + vertex -2.74162 11.3511 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.64708 14.4362 0 + vertex -3.43924 11.4799 0 + vertex -2.8839 14.3873 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.64708 14.4362 0 + vertex -4.06319 11.5774 0 + vertex -3.43924 11.4799 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.46307 14.4678 0 + vertex -4.06319 11.5774 0 + vertex -3.64708 14.4362 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.46307 14.4678 0 + vertex -4.60751 11.6434 0 + vertex -4.06319 11.5774 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.46307 14.4678 0 + vertex -5.06624 11.6776 0 + vertex -4.60751 11.6434 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.33129 14.482 0 + vertex -5.06624 11.6776 0 + vertex -4.46307 14.4678 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.33129 14.482 0 + vertex -5.4334 11.6797 0 + vertex -5.06624 11.6776 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.33129 14.482 0 + vertex -5.70304 11.6495 0 + vertex -5.4334 11.6797 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.25117 14.4787 0 + vertex -5.70304 11.6495 0 + vertex -5.33129 14.482 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.70304 11.6495 0 + vertex -6.25117 14.4787 0 + vertex -5.79943 11.6221 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.79943 11.6221 0 + vertex -6.25117 14.4787 0 + vertex -5.8692 11.5867 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -7.22211 14.4578 0 + vertex -5.8692 11.5867 0 + vertex -6.25117 14.4787 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.8692 11.5867 0 + vertex -7.22211 14.4578 0 + vertex -5.91161 11.5429 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -9.25643 14.3812 0 + vertex -5.91161 11.5429 0 + vertex -7.22211 14.4578 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -17.4002 -11.6639 0 + vertex -6.14058 -19.1411 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.91161 11.5429 0 + vertex -9.25643 14.3812 0 + vertex -5.92592 11.491 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 0 + vertex -7.11547 -19.1706 0 + vertex -6.14058 -19.1411 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 0 + vertex -7.63584 -19.198 0 + vertex -7.11547 -19.1706 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 0 + vertex -8.06691 -19.2358 0 + vertex -7.63584 -19.198 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.06691 -19.2358 0 + vertex -17.3941 -11.77 0 + vertex -8.43701 -19.2929 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -12.0792 -19.1571 0 + vertex -8.43701 -19.2929 0 + vertex -17.3941 -11.77 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -9.98725 14.3241 0 + vertex -5.92592 11.491 0 + vertex -9.25643 14.3812 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.43701 -19.2929 0 + vertex -12.0792 -19.1571 0 + vertex -8.77447 -19.378 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -11.9023 -19.2259 0 + vertex -8.77447 -19.378 0 + vertex -12.0792 -19.1571 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -10.6249 14.238 0 + vertex -5.92592 11.491 0 + vertex -9.98725 14.3241 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.77447 -19.378 0 + vertex -11.9023 -19.2259 0 + vertex -9.10766 -19.4997 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.2428 14.1101 0 + vertex -5.92592 11.491 0 + vertex -10.6249 14.238 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.92592 11.491 0 + vertex -11.2428 14.1101 0 + vertex -11.9142 13.9281 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -11.7723 -19.3375 0 + vertex -9.46489 -19.667 0 + vertex -11.9023 -19.2259 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.6707 -19.9072 0 + vertex -10.3649 -20.1728 0 + vertex -11.6557 -19.6804 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.3649 -20.1728 0 + vertex -11.6899 -19.4898 0 + vertex -11.6557 -19.6804 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.87453 -19.8884 0 + vertex -11.6899 -19.4898 0 + vertex -10.3649 -20.1728 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -11.6899 -19.4898 0 + vertex -9.87453 -19.8884 0 + vertex -11.7723 -19.3375 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.92592 11.491 0 + vertex -11.9142 13.9281 0 + vertex -12.7125 13.6795 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.46489 -19.667 0 + vertex -11.7723 -19.3375 0 + vertex -9.87453 -19.8884 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.10766 -19.4997 0 + vertex -11.9023 -19.2259 0 + vertex -9.46489 -19.667 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.4339 -12.0833 0 + vertex -12.0792 -19.1571 0 + vertex -17.3941 -11.77 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -13.7109 13.3517 0 + vertex -5.92592 11.491 0 + vertex -12.7125 13.6795 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0792 -19.1571 0 + vertex -17.4339 -12.0833 0 + vertex -12.302 -19.1333 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.949 12.9624 0 + vertex -5.92592 11.491 0 + vertex -13.7109 13.3517 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.5116 -12.3759 0 + vertex -12.302 -19.1333 0 + vertex -17.4339 -12.0833 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.0795 12.6436 0 + vertex -5.92592 11.491 0 + vertex -14.949 12.9624 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.6664 -12.8441 0 + vertex -12.302 -19.1333 0 + vertex -17.5116 -12.3759 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 0 + vertex -5.92592 11.491 0 + vertex -16.0795 12.6436 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.302 -19.1333 0 + vertex -17.6664 -12.8441 0 + vertex -12.6849 -19.1929 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 0 + vertex -16.0795 12.6436 0 + vertex -16.9775 12.4282 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.5514 -11.4978 0 + vertex -16.9775 12.4282 0 + vertex -17.3003 12.3696 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.1466 -14.1495 0 + vertex -12.6849 -19.1929 0 + vertex -17.6664 -12.8441 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.6849 -19.1929 0 + vertex -18.1466 -14.1495 0 + vertex -13.3483 -19.3556 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.3483 -19.3556 0 + vertex -18.1466 -14.1495 0 + vertex -14.1989 -19.5967 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.7537 -15.6836 0 + vertex -14.1989 -19.5967 0 + vertex -18.1466 -14.1495 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1989 -19.5967 0 + vertex -18.7537 -15.6836 0 + vertex -15.1436 -19.8912 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -19.3667 -17.1305 0 + vertex -15.1436 -19.8912 0 + vertex -18.7537 -15.6836 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.1436 -19.8912 0 + vertex -19.3667 -17.1305 0 + vertex -16.9393 -20.461 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -19.4996 -17.3696 0 + vertex -16.9393 -20.461 0 + vertex -19.3667 -17.1305 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9393 -20.461 0 + vertex -19.4996 -17.3696 0 + vertex -17.9865 -20.7653 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -19.6713 -17.584 0 + vertex -17.9865 -20.7653 0 + vertex -19.4996 -17.3696 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -19.8743 -17.7693 0 + vertex -17.9865 -20.7653 0 + vertex -19.6713 -17.584 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.9865 -20.7653 0 + vertex -19.8743 -17.7693 0 + vertex -18.1109 -20.8023 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.1109 -20.8023 0 + vertex -19.8743 -17.7693 0 + vertex -18.2248 -20.8552 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.1009 -17.9213 0 + vertex -18.2248 -20.8552 0 + vertex -19.8743 -17.7693 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.2248 -20.8552 0 + vertex -20.1009 -17.9213 0 + vertex -18.3284 -20.924 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.3435 -18.0357 0 + vertex -18.3284 -20.924 0 + vertex -20.1009 -17.9213 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.3284 -20.924 0 + vertex -20.3435 -18.0357 0 + vertex -18.4218 -21.0091 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.7355 -20.1677 0 + vertex -10.3649 -20.1728 0 + vertex -11.6707 -19.9072 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.3649 -20.1728 0 + vertex -11.7355 -20.1677 0 + vertex -11.5073 -20.829 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -11.851 -20.4599 0 + vertex -11.5073 -20.829 0 + vertex -11.7355 -20.1677 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0288 -20.9134 0 + vertex -11.5073 -20.829 0 + vertex -11.851 -20.4599 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.5073 -20.829 0 + vertex -12.0288 -20.9134 0 + vertex -11.8784 -21.0286 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0594 -21.0513 0 + vertex -11.8784 -21.0286 0 + vertex -12.0288 -20.9134 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.8784 -21.0286 0 + vertex -12.0594 -21.0513 0 + vertex -12.0427 -21.102 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.0427 -21.102 0 + vertex -12.0594 -21.0513 0 + vertex -12.0573 -21.0889 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.3267 -22.6747 0 + vertex -17.2249 -22.8126 0 + vertex -17.2578 -22.7276 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4374 -22.6462 0 + vertex -17.2249 -22.8126 0 + vertex -17.3267 -22.6747 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.2249 -22.8126 0 + vertex -17.4374 -22.6462 0 + vertex -17.2226 -22.9371 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.8061 -22.6324 0 + vertex -17.2226 -22.9371 0 + vertex -17.4374 -22.6462 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.2226 -22.9371 0 + vertex -17.8061 -22.6324 0 + vertex -17.2873 -23.335 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.1091 -22.6172 0 + vertex -17.2873 -23.335 0 + vertex -17.8061 -22.6324 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.2873 -23.335 0 + vertex -18.1091 -22.6172 0 + vertex -17.4084 -23.7485 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.3541 -22.5704 0 + vertex -17.4084 -23.7485 0 + vertex -18.1091 -22.6172 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4084 -23.7485 0 + vertex -18.3541 -22.5704 0 + vertex -17.6656 -24.469 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5429 -22.4899 0 + vertex -17.6656 -24.469 0 + vertex -18.3541 -22.5704 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.6769 -22.3738 0 + vertex -17.6656 -24.469 0 + vertex -18.5429 -22.4899 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.6656 -24.469 0 + vertex -18.6769 -22.3738 0 + vertex -18.5311 -26.6889 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.116 -21.2395 0 + vertex -18.6769 -22.3738 0 + vertex -18.7577 -22.2202 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.116 -21.2395 0 + vertex -18.7577 -22.2202 0 + vertex -18.7869 -22.0269 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.4218 -21.0091 0 + vertex -20.3435 -18.0357 0 + vertex -18.5053 -21.1105 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.5945 -18.108 0 + vertex -18.5053 -21.1105 0 + vertex -20.3435 -18.0357 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5053 -21.1105 0 + vertex -20.5945 -18.108 0 + vertex -18.5788 -21.2283 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.8463 -18.1339 0 + vertex -18.5788 -21.2283 0 + vertex -20.5945 -18.108 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.6874 -20.0641 0 + vertex -18.5788 -21.2283 0 + vertex -22.5978 -19.6581 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.8608 -20.5868 0 + vertex -18.6967 -21.5139 0 + vertex -22.6874 -20.0641 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -23.116 -21.2395 0 + vertex -18.7869 -22.0269 0 + vertex -22.8608 -20.5868 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.6967 -21.5139 0 + vertex -22.8608 -20.5868 0 + vertex -18.766 -21.7922 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5788 -21.2283 0 + vertex -20.8463 -18.1339 0 + vertex -22.5978 -19.6581 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.585 -19.4947 0 + vertex -20.8463 -18.1339 0 + vertex -21.0912 -18.1093 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.594 -19.3555 0 + vertex -21.0912 -18.1093 0 + vertex -21.2545 -18.0693 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.6769 -22.3738 0 + vertex -23.116 -21.2395 0 + vertex -24.3958 -24.3815 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.625 -19.2389 0 + vertex -21.2545 -18.0693 0 + vertex -21.378 -18.0171 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.6782 -19.1432 0 + vertex -21.378 -18.0171 0 + vertex -21.4669 -17.9347 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.7539 -19.0668 0 + vertex -21.4669 -17.9347 0 + vertex -21.5263 -17.8042 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.9739 -18.9651 0 + vertex -21.5263 -17.8042 0 + vertex -21.5614 -17.6077 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.1186 -18.9365 0 + vertex -21.5614 -17.6077 0 + vertex -21.5774 -17.3273 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.766 -21.7922 0 + vertex -22.8608 -20.5868 0 + vertex -18.7869 -22.0269 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5729 -16.4428 0 + vertex -22.9103 -14.3386 0 + vertex -23.3301 -14.2877 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.9412 -14.6683 0 + vertex -21.5879 -15.2616 0 + vertex -21.6284 -15.0493 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.7989 -14.7733 0 + vertex -21.6284 -15.0493 0 + vertex -21.6966 -14.8935 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.6284 -15.0493 0 + vertex -21.7989 -14.7733 0 + vertex -21.9412 -14.6683 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5788 -21.2283 0 + vertex -22.6874 -20.0641 0 + vertex -18.6967 -21.5139 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5879 -15.2616 0 + vertex -21.9412 -14.6683 0 + vertex -22.1296 -14.5577 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5693 -15.5508 0 + vertex -22.1296 -14.5577 0 + vertex -22.3213 -14.4724 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.8463 -18.1339 0 + vertex -22.585 -19.4947 0 + vertex -22.5978 -19.6581 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5693 -15.5508 0 + vertex -22.3213 -14.4724 0 + vertex -22.5778 -14.3998 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.6769 -22.3738 0 + vertex -24.3958 -24.3815 0 + vertex -18.5311 -26.6889 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5693 -15.5508 0 + vertex -22.5778 -14.3998 0 + vertex -22.9103 -14.3386 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.9793 -25.8003 0 + vertex -18.5311 -26.6889 0 + vertex -24.3958 -24.3815 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.5311 -26.6889 0 + vertex -24.9793 -25.8003 0 + vertex -19.7699 -29.7113 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.0912 -18.1093 0 + vertex -22.594 -19.3555 0 + vertex -22.585 -19.4947 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2545 -18.0693 0 + vertex -22.625 -19.2389 0 + vertex -22.594 -19.3555 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.378 -18.0171 0 + vertex -22.6782 -19.1432 0 + vertex -22.625 -19.2389 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.4669 -17.9347 0 + vertex -22.7539 -19.0668 0 + vertex -22.6782 -19.1432 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5263 -17.8042 0 + vertex -22.8524 -19.008 0 + vertex -22.7539 -19.0668 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.6632 -18.9241 0 + vertex -21.5729 -16.4428 0 + vertex -23.3301 -14.2877 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5263 -17.8042 0 + vertex -22.9739 -18.9651 0 + vertex -22.8524 -19.008 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5614 -17.6077 0 + vertex -23.1186 -18.9365 0 + vertex -22.9739 -18.9651 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -23.4791 -18.9156 0 + vertex -21.5729 -16.4428 0 + vertex -23.6632 -18.9241 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5774 -17.3273 0 + vertex -23.4791 -18.9156 0 + vertex -23.1186 -18.9365 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5729 -16.4428 0 + vertex -23.4791 -18.9156 0 + vertex -21.5774 -17.3273 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.4767 -14.2125 0 + vertex -23.6632 -18.9241 0 + vertex -23.3301 -14.2877 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.6632 -18.9241 0 + vertex -24.4767 -14.2125 0 + vertex -23.8226 -18.954 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.8226 -18.954 0 + vertex -24.4767 -14.2125 0 + vertex -23.9653 -19.0124 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.1077 -14.1654 0 + vertex -23.9653 -19.0124 0 + vertex -24.4767 -14.2125 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.9653 -19.0124 0 + vertex -26.1077 -14.1654 0 + vertex -24.0993 -19.1062 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.0993 -19.1062 0 + vertex -26.1077 -14.1654 0 + vertex -24.2328 -19.2424 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.2328 -19.2424 0 + vertex -26.1077 -14.1654 0 + vertex -24.3738 -19.4278 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2448 -14.1442 0 + vertex -24.3738 -19.4278 0 + vertex -26.1077 -14.1654 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3738 -19.4278 0 + vertex -28.2448 -14.1442 0 + vertex -24.7108 -19.9745 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -31.1223 -16.1487 0 + vertex -24.7108 -19.9745 0 + vertex -28.2448 -14.1442 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -31.4477 -16.8607 0 + vertex -24.7108 -19.9745 0 + vertex -31.1223 -16.1487 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.7108 -19.9745 0 + vertex -31.4477 -16.8607 0 + vertex -24.9407 -20.3516 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.9407 -20.3516 0 + vertex -31.4477 -16.8607 0 + vertex -25.1784 -20.695 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.1784 -20.695 0 + vertex -31.4477 -16.8607 0 + vertex -25.4267 -21.0057 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.4267 -21.0057 0 + vertex -31.4477 -16.8607 0 + vertex -25.6884 -21.2849 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.6884 -21.2849 0 + vertex -31.4477 -16.8607 0 + vertex -25.9661 -21.5339 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.9661 -21.5339 0 + vertex -31.4477 -16.8607 0 + vertex -26.2627 -21.7538 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.2627 -21.7538 0 + vertex -31.4477 -16.8607 0 + vertex -26.5809 -21.9457 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.5809 -21.9457 0 + vertex -31.8034 -17.6899 0 + vertex -26.9234 -22.1109 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.9234 -22.1109 0 + vertex -31.8034 -17.6899 0 + vertex -27.2929 -22.2506 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.2929 -22.2506 0 + vertex -31.8034 -17.6899 0 + vertex -27.6923 -22.3658 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.678 -15.2903 0 + vertex -28.2448 -14.1442 0 + vertex -28.9898 -14.1579 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -31.8034 -17.6899 0 + vertex -26.5809 -21.9457 0 + vertex -31.4477 -16.8607 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.5215 -14.964 0 + vertex -28.9898 -14.1579 0 + vertex -29.549 -14.1906 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.6923 -22.3658 0 + vertex -31.8034 -17.6899 0 + vertex -28.1242 -22.4577 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.4158 -14.7057 0 + vertex -29.549 -14.1906 0 + vertex -29.9449 -14.2443 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.377 -14.5514 0 + vertex -29.9449 -14.2443 0 + vertex -30.1999 -14.321 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.9898 -14.1579 0 + vertex -30.5215 -14.964 0 + vertex -30.678 -15.2903 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.377 -14.5514 0 + vertex -30.1999 -14.321 0 + vertex -30.2816 -14.3686 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.377 -14.5514 0 + vertex -30.2816 -14.3686 0 + vertex -30.3364 -14.4227 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.377 -14.5514 0 + vertex -30.3364 -14.4227 0 + vertex -30.3673 -14.4836 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.9449 -14.2443 0 + vertex -30.377 -14.5514 0 + vertex -30.4158 -14.7057 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.549 -14.1906 0 + vertex -30.4158 -14.7057 0 + vertex -30.5215 -14.964 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2448 -14.1442 0 + vertex -30.678 -15.2903 0 + vertex -30.8691 -15.6487 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2448 -14.1442 0 + vertex -30.8691 -15.6487 0 + vertex -31.1223 -16.1487 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.1242 -22.4577 0 + vertex -31.8034 -17.6899 0 + vertex -28.5914 -22.5277 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -32.1476 -18.5412 0 + vertex -28.5914 -22.5277 0 + vertex -31.8034 -17.6899 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.5914 -22.5277 0 + vertex -32.1476 -18.5412 0 + vertex -29.0966 -22.5767 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.0966 -22.5767 0 + vertex -32.1476 -18.5412 0 + vertex -29.6427 -22.606 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.6427 -22.606 0 + vertex -32.1476 -18.5412 0 + vertex -30.2322 -22.6168 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2322 -22.6168 0 + vertex -32.1476 -18.5412 0 + vertex -30.868 -22.6102 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.868 -22.6102 0 + vertex -32.1476 -18.5412 0 + vertex -31.8095 -22.5865 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -33.2902 -21.4299 0 + vertex -31.8095 -22.5865 0 + vertex -32.1476 -18.5412 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.8095 -22.5865 0 + vertex -33.2902 -21.4299 0 + vertex -32.5132 -22.5543 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.5132 -22.5543 0 + vertex -33.2902 -21.4299 0 + vertex -33.0067 -22.5002 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -33.4325 -21.7956 0 + vertex -33.0067 -22.5002 0 + vertex -33.2902 -21.4299 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.0067 -22.5002 0 + vertex -33.4325 -21.7956 0 + vertex -33.1833 -22.4608 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -33.503 -22.0719 0 + vertex -33.1833 -22.4608 0 + vertex -33.4325 -21.7956 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.1833 -22.4608 0 + vertex -33.503 -22.0719 0 + vertex -33.3177 -22.4108 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.3177 -22.4108 0 + vertex -33.503 -22.0719 0 + vertex -33.4135 -22.3486 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -33.5026 -22.1809 0 + vertex -33.4135 -22.3486 0 + vertex -33.503 -22.0719 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.4135 -22.3486 0 + vertex -33.5026 -22.1809 0 + vertex -33.4739 -22.2725 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -23.8031 -31.5911 0 + vertex -21.2682 -33.2523 0 + vertex -23.5218 -31.031 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.2375 -32.3527 0 + vertex -21.2682 -33.2523 0 + vertex -23.8031 -31.5911 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2682 -33.2523 0 + vertex -24.2375 -32.3527 0 + vertex -21.6072 -34.0169 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.6072 -34.0169 0 + vertex -24.2375 -32.3527 0 + vertex -21.9074 -34.6287 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -23.5218 -31.031 0 + vertex -21.2682 -33.2523 0 + vertex -23.4513 -30.847 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -24.7839 -33.2498 0 + vertex -21.9074 -34.6287 0 + vertex -24.2375 -32.3527 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.7699 -29.7113 0 + vertex -23.4345 -30.738 0 + vertex -21.2682 -33.2523 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.9074 -34.6287 0 + vertex -24.7839 -33.2498 0 + vertex -22.1824 -35.1035 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.1824 -35.1035 0 + vertex -24.7839 -33.2498 0 + vertex -22.4463 -35.4568 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -23.665 -35.9691 0 + vertex -22.4463 -35.4568 0 + vertex -24.7839 -33.2498 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -23.4513 -30.847 0 + vertex -21.2682 -33.2523 0 + vertex -23.4345 -30.738 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -23.4345 -30.738 0 + vertex -19.7699 -29.7113 0 + vertex -23.4571 -30.6716 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.7699 -29.7113 0 + vertex -23.5012 -30.6026 0 + vertex -23.4571 -30.6716 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.7699 -29.7113 0 + vertex -23.6433 -30.465 0 + vertex -23.5012 -30.6026 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -23.8399 -30.3412 0 + vertex -19.7699 -29.7113 0 + vertex -24.9793 -25.8003 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.7699 -29.7113 0 + vertex -23.8399 -30.3412 0 + vertex -23.6433 -30.465 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.4624 -26.9141 0 + vertex -23.8399 -30.3412 0 + vertex -24.9793 -25.8003 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.8399 -30.3412 0 + vertex -25.4624 -26.9141 0 + vertex -24.0701 -30.2475 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.0701 -30.2475 0 + vertex -25.4624 -26.9141 0 + vertex -24.2803 -30.1833 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.8688 -27.7587 0 + vertex -24.2803 -30.1833 0 + vertex -25.4624 -26.9141 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.2803 -30.1833 0 + vertex -25.8688 -27.7587 0 + vertex -24.455 -30.1541 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.455 -30.1541 0 + vertex -25.8688 -27.7587 0 + vertex -24.5406 -30.1604 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.0506 -28.0911 0 + vertex -24.5406 -30.1604 0 + vertex -25.8688 -27.7587 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.5406 -30.1604 0 + vertex -26.0506 -28.0911 0 + vertex -24.6311 -30.1847 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.2221 -28.3696 0 + vertex -24.6311 -30.1847 0 + vertex -26.0506 -28.0911 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.6311 -30.1847 0 + vertex -26.2221 -28.3696 0 + vertex -24.8452 -30.2998 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.3861 -28.5987 0 + vertex -24.8452 -30.2998 0 + vertex -26.2221 -28.3696 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.5458 -28.7827 0 + vertex -24.8452 -30.2998 0 + vertex -26.3861 -28.5987 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8452 -30.2998 0 + vertex -26.5458 -28.7827 0 + vertex -25.1341 -30.5242 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.7039 -28.9262 0 + vertex -25.1341 -30.5242 0 + vertex -26.5458 -28.7827 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.1341 -30.5242 0 + vertex -26.7039 -28.9262 0 + vertex -25.5344 -30.8827 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.8635 -29.0336 0 + vertex -25.5344 -30.8827 0 + vertex -26.7039 -28.9262 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.0275 -29.1093 0 + vertex -25.5344 -30.8827 0 + vertex -26.8635 -29.0336 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.1989 -29.1579 0 + vertex -25.5344 -30.8827 0 + vertex -27.0275 -29.1093 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.5344 -30.8827 0 + vertex -27.1989 -29.1579 0 + vertex -26.8166 -32.1012 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.3805 -29.1838 0 + vertex -26.8166 -32.1012 0 + vertex -27.1989 -29.1579 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.5755 -29.1914 0 + vertex -26.8166 -32.1012 0 + vertex -27.3805 -29.1838 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.9775 -29.1782 0 + vertex -26.8166 -32.1012 0 + vertex -27.5755 -29.1914 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.8166 -32.1012 0 + vertex -27.9775 -29.1782 0 + vertex -27.3602 -32.5933 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.0989 -29.15 0 + vertex -27.3602 -32.5933 0 + vertex -27.9775 -29.1782 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.3602 -32.5933 0 + vertex -28.0989 -29.15 0 + vertex -27.924 -33.0516 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.176 -29.097 0 + vertex -27.924 -33.0516 0 + vertex -28.0989 -29.15 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.2461 -34.4632 0 + vertex -28.176 -29.097 0 + vertex -28.2154 -29.0113 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.176 -29.097 0 + vertex -28.5012 -33.4718 0 + vertex -27.924 -33.0516 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.1303 -25.4759 0 + vertex -28.2154 -29.0113 0 + vertex -28.2235 -28.8853 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.0734 -25.6205 0 + vertex -27.9393 -26.9734 0 + vertex -28.7678 -25.6646 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -29.9179 -25.5457 0 + vertex -27.9393 -26.9734 0 + vertex -29.0734 -25.6205 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.9393 -26.9734 0 + vertex -29.9179 -25.5457 0 + vertex -28.1721 -28.4809 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.9759 -25.4949 0 + vertex -28.1721 -28.4809 0 + vertex -29.9179 -25.5457 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.1721 -28.4809 0 + vertex -30.9759 -25.4949 0 + vertex -28.2235 -28.8853 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.1303 -25.4759 0 + vertex -28.2235 -28.8853 0 + vertex -30.9759 -25.4949 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.176 -29.097 0 + vertex -29.0852 -33.8499 0 + vertex -28.5012 -33.4718 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.176 -29.097 0 + vertex -29.669 -34.1817 0 + vertex -29.0852 -33.8499 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2154 -29.0113 0 + vertex -32.1303 -25.4759 0 + vertex -36.4516 -28.8697 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.176 -29.097 0 + vertex -30.2461 -34.4632 0 + vertex -29.669 -34.1817 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2154 -29.0113 0 + vertex -36.4516 -28.8697 0 + vertex -30.8095 -34.6902 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2154 -29.0113 0 + vertex -30.8095 -34.6902 0 + vertex -30.2461 -34.4632 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -31.9023 -34.9414 0 + vertex -30.8095 -34.6902 0 + vertex -36.4516 -28.8697 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.8095 -34.6902 0 + vertex -31.5797 -34.902 0 + vertex -31.3526 -34.8586 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.8095 -34.6902 0 + vertex -31.9023 -34.9414 0 + vertex -31.5797 -34.902 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.9023 -34.9414 0 + vertex -36.4516 -28.8697 0 + vertex -32.7769 -35.0076 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.4707 -26.6225 0 + vertex -32.1303 -25.4759 0 + vertex -34.9509 -25.4747 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.4516 -28.8697 0 + vertex -32.1303 -25.4759 0 + vertex -35.4707 -26.6225 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -32.7769 -35.0076 0 + vertex -36.4516 -28.8697 0 + vertex -33.8615 -35.0556 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -37.5165 -31.4193 0 + vertex -33.8615 -35.0556 0 + vertex -36.4516 -28.8697 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -33.8615 -35.0556 0 + vertex -37.5165 -31.4193 0 + vertex -35.0412 -35.0835 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -35.0412 -35.0835 0 + vertex -37.5165 -31.4193 0 + vertex -36.2012 -35.0898 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -38.3711 -33.5534 0 + vertex -36.2012 -35.0898 0 + vertex -37.5165 -31.4193 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -36.2012 -35.0898 0 + vertex -38.3711 -33.5534 0 + vertex -37.2267 -35.0727 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.2267 -35.0727 0 + vertex -38.3711 -33.5534 0 + vertex -38.0027 -35.0306 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -38.6277 -34.2404 0 + vertex -38.0027 -35.0306 0 + vertex -38.3711 -33.5534 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.0027 -35.0306 0 + vertex -38.6277 -34.2404 0 + vertex -38.2613 -34.9997 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.2613 -34.9997 0 + vertex -38.6277 -34.2404 0 + vertex -38.4144 -34.9619 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.4144 -34.9619 0 + vertex -38.6277 -34.2404 0 + vertex -38.5336 -34.8886 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.6277 -34.2404 0 + vertex -38.6312 -34.7874 0 + vertex -38.5336 -34.8886 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -38.7214 -34.5543 0 + vertex -38.6312 -34.7874 0 + vertex -38.6277 -34.2404 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.6312 -34.7874 0 + vertex -38.7214 -34.5543 0 + vertex -38.6971 -34.6715 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -23.3082 -35.9449 0 + vertex -22.4463 -35.4568 0 + vertex -23.665 -35.9691 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.5782 -35.5929 0 + vertex -23.3082 -35.9449 0 + vertex -22.7126 -35.7044 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.7126 -35.7044 0 + vertex -23.3082 -35.9449 0 + vertex -22.8511 -35.7934 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.8511 -35.7934 0 + vertex -23.3082 -35.9449 0 + vertex -22.9953 -35.8619 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.9953 -35.8619 0 + vertex -23.3082 -35.9449 0 + vertex -23.1471 -35.9117 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.4463 -35.4568 0 + vertex -23.3082 -35.9449 0 + vertex -22.5782 -35.5929 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.665 -35.9691 0 + vertex -24.7839 -33.2498 0 + vertex -23.8593 -35.9891 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -25.4011 -34.2168 0 + vertex -23.8593 -35.9891 0 + vertex -24.7839 -33.2498 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.8593 -35.9891 0 + vertex -25.4011 -34.2168 0 + vertex -24.0497 -36.0458 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.0497 -36.0458 0 + vertex -25.4011 -34.2168 0 + vertex -24.2334 -36.1344 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.0482 -35.1877 0 + vertex -24.2334 -36.1344 0 + vertex -25.4011 -34.2168 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.2334 -36.1344 0 + vertex -26.0482 -35.1877 0 + vertex -24.4077 -36.2501 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.4077 -36.2501 0 + vertex -26.0482 -35.1877 0 + vertex -24.57 -36.3881 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.57 -36.3881 0 + vertex -26.0482 -35.1877 0 + vertex -24.7177 -36.5437 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.7177 -36.5437 0 + vertex -26.0482 -35.1877 0 + vertex -24.8479 -36.7119 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -26.6839 -36.0968 0 + vertex -24.8479 -36.7119 0 + vertex -26.0482 -35.1877 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8479 -36.7119 0 + vertex -26.6839 -36.0968 0 + vertex -24.9582 -36.888 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.0457 -37.0673 0 + vertex -26.6839 -36.0968 0 + vertex -25.1078 -37.2448 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.9582 -36.888 0 + vertex -26.6839 -36.0968 0 + vertex -25.0457 -37.0673 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2799 26.5937 0 + vertex -21.2669 26.4994 0 + vertex -21.2563 26.5576 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.3473 26.6332 0 + vertex -21.2669 26.4994 0 + vertex -21.2799 26.5937 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.2669 26.4994 0 + vertex -21.3473 26.6332 0 + vertex -21.2997 26.4466 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.3473 26.6332 0 + vertex -21.3558 26.3992 0 + vertex -21.2997 26.4466 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.3473 26.6332 0 + vertex -21.4368 26.3569 0 + vertex -21.3558 26.3992 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5951 26.7172 0 + vertex -21.4368 26.3569 0 + vertex -21.3473 26.6332 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5951 26.7172 0 + vertex -21.6785 26.2874 0 + vertex -21.4368 26.3569 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.9618 26.7994 0 + vertex -21.6785 26.2874 0 + vertex -21.5951 26.7172 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.9618 26.7994 0 + vertex -22.0356 26.2369 0 + vertex -21.6785 26.2874 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.4095 26.8695 0 + vertex -22.0356 26.2369 0 + vertex -21.9618 26.7994 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.4095 26.8695 0 + vertex -22.5186 26.2045 0 + vertex -22.0356 26.2369 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.8078 26.9423 0 + vertex -22.5186 26.2045 0 + vertex -22.4095 26.8695 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -22.8078 26.9423 0 + vertex -23.1385 26.1891 0 + vertex -22.5186 26.2045 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.1972 27.0531 0 + vertex -23.1385 26.1891 0 + vertex -22.8078 26.9423 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.56 27.1917 0 + vertex -23.1385 26.1891 0 + vertex -23.1972 27.0531 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8316 26.205 0 + vertex -23.56 27.1917 0 + vertex -23.8785 27.3484 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8316 26.205 0 + vertex -23.8785 27.3484 0 + vertex -24.1346 27.513 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.8316 26.205 0 + vertex -24.1346 27.513 0 + vertex -24.3107 27.6757 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.56 27.1917 0 + vertex -24.8316 26.205 0 + vertex -23.1385 26.1891 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3632 27.7532 0 + vertex -24.8316 26.205 0 + vertex -24.3107 27.6757 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.3751 26.2567 0 + vertex -24.3632 27.7532 0 + vertex -24.3889 27.8265 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.1768 -3.32005 0 + vertex 14.3448 -2.7489 0 + vertex 14.3217 -2.5049 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.3448 -2.7489 0 + vertex 14.2634 -3.15818 0 + vertex 14.3256 -2.96711 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0741 -3.47638 0 + vertex 14.3217 -2.5049 0 + vertex 14.2572 -2.23644 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.3448 -2.7489 0 + vertex 14.1768 -3.32005 0 + vertex 14.2634 -3.15818 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.8248 -3.7697 0 + vertex 14.2572 -2.23644 0 + vertex 14.1524 -1.94488 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.3217 -2.5049 0 + vertex 14.0741 -3.47638 0 + vertex 14.1768 -3.32005 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.5249 -4.03275 0 + vertex 14.1524 -1.94488 0 + vertex 14.008 -1.63155 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.1837 -4.26011 0 + vertex 14.008 -1.63155 0 + vertex 13.8249 -1.29782 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.2572 -2.23644 0 + vertex 13.8248 -3.7697 0 + vertex 14.0741 -3.47638 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.4149 -4.5861 0 + vertex 13.8249 -1.29782 0 + vertex 13.604 -0.945011 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.1524 -1.94488 0 + vertex 13.5249 -4.03275 0 + vertex 13.8248 -3.7697 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.26 -4.69402 0 + vertex 13.604 -0.945011 0 + vertex 13.3463 -0.574481 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.008 -1.63155 0 + vertex 13.1837 -4.26011 0 + vertex 13.5249 -4.03275 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.608 -4.6098 0 + vertex 13.3463 -0.574481 0 + vertex 13.0525 -0.187573 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.8249 -1.29782 0 + vertex 12.8106 -4.44636 0 + vertex 13.1837 -4.26011 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.65389 -4.31807 0 + vertex 13.0525 -0.187573 0 + vertex 12.7237 0.214368 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.8249 -1.29782 0 + vertex 12.4149 -4.5861 0 + vertex 12.8106 -4.44636 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.02468 -4.00814 0 + vertex 12.7237 0.214368 0 + vertex 12.3607 0.629996 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.604 -0.945011 0 + vertex 12.006 -4.67391 0 + vertex 12.4149 -4.5861 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.604 -0.945011 0 + vertex 11.5931 -4.70438 0 + vertex 12.006 -4.67391 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.0755 -3.36119 0 + vertex 12.3607 0.629996 0 + vertex 11.5355 1.49693 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.604 -0.945011 0 + vertex 11.26 -4.69402 0 + vertex 11.5931 -4.70438 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.3463 -0.574481 0 + vertex 10.9319 -4.66264 0 + vertex 11.26 -4.69402 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.3463 -0.574481 0 + vertex 10.608 -4.6098 0 + vertex 10.9319 -4.66264 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.10115 -2.48513 0 + vertex 11.5355 1.49693 0 + vertex 10.5842 2.40247 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.0525 -0.187573 0 + vertex 10.2875 -4.53506 0 + vertex 10.608 -4.6098 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.0525 -0.187573 0 + vertex 9.96977 -4.43796 0 + vertex 10.2875 -4.53506 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.0525 -0.187573 0 + vertex 9.65389 -4.31807 0 + vertex 9.96977 -4.43796 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.79491 -1.04264 0 + vertex 10.5842 2.40247 0 + vertex 9.61741 3.25086 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.7237 0.214368 0 + vertex 9.33912 -4.17495 0 + vertex 9.65389 -4.31807 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.03464 3.65533 0 + vertex 9.61741 3.25086 0 + vertex 9.29624 3.50894 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.03464 3.65533 0 + vertex 9.29624 3.50894 0 + vertex 9.14614 3.60373 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.61741 3.25086 0 + vertex 9.03464 3.65533 0 + vertex 5.79491 -1.04264 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.7237 0.214368 0 + vertex 9.02468 -4.00814 0 + vertex 9.33912 -4.17495 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.24358 -0.384283 0 + vertex 9.03464 3.65533 0 + vertex 8.81858 3.79581 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3607 0.629996 0 + vertex 8.70978 -3.81721 0 + vertex 9.02468 -4.00814 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3607 0.629996 0 + vertex 8.39365 -3.60171 0 + vertex 8.70978 -3.81721 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.62083 0.441773 0 + vertex 8.81858 3.79581 0 + vertex 8.19732 4.25764 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3607 0.629996 0 + vertex 8.0755 -3.36119 0 + vertex 8.39365 -3.60171 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.49221 0.674515 0 + vertex 8.19732 4.25764 0 + vertex 8.00725 4.39171 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5355 1.49693 0 + vertex 7.75455 -3.09522 0 + vertex 8.0755 -3.36119 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.49221 0.674515 0 + vertex 8.00725 4.39171 0 + vertex 7.75154 4.54807 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5355 1.49693 0 + vertex 7.10115 -2.48513 0 + vertex 7.75455 -3.09522 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.44662 0.733548 0 + vertex 7.75154 4.54807 0 + vertex 7.07462 4.9138 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.5842 2.40247 0 + vertex 6.42718 -1.76788 0 + vertex 7.10115 -2.48513 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.40839 0.754677 0 + vertex 7.07462 4.9138 0 + vertex 6.22936 5.32709 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.5842 2.40247 0 + vertex 5.79491 -1.04264 0 + vertex 6.42718 -1.76788 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.40839 0.754677 0 + vertex 6.22936 5.32709 0 + vertex 5.27855 5.76024 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.03464 3.65533 0 + vertex 5.24358 -0.384283 0 + vertex 5.79491 -1.04264 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.81858 3.79581 0 + vertex 4.83246 0.134689 0 + vertex 5.24358 -0.384283 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.19732 4.25764 0 + vertex 4.49221 0.674515 0 + vertex 4.62083 0.441773 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.81858 3.79581 0 + vertex 4.62083 0.441773 0 + vertex 4.83246 0.134689 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.75154 4.54807 0 + vertex 4.44662 0.733548 0 + vertex 4.49221 0.674515 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07462 4.9138 0 + vertex 4.40839 0.754677 0 + vertex 4.44662 0.733548 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.285 6.1855 0 + vertex 4.40839 0.754677 0 + vertex 5.27855 5.76024 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.40839 0.754677 0 + vertex 4.285 6.1855 0 + vertex 4.3737 0.738144 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.31149 6.57517 0 + vertex 4.3737 0.738144 0 + vertex 4.285 6.1855 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.42084 6.9015 0 + vertex 4.3737 0.738144 0 + vertex 3.31149 6.57517 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.3737 0.738144 0 + vertex 2.42084 6.9015 0 + vertex 4.33872 0.684191 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.67583 7.13679 0 + vertex 4.33872 0.684191 0 + vertex 2.42084 6.9015 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.30727 7.25861 0 + vertex 4.33872 0.684191 0 + vertex 1.67583 7.13679 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex 3.25174 -5.37115 0 + vertex 3.97093 -5.58648 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex 2.534 -5.13555 0 + vertex 3.25174 -5.37115 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.33872 0.684191 0 + vertex 1.30727 7.25861 0 + vertex 4.25257 0.464986 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex 1.81816 -4.87986 0 + vertex 2.534 -5.13555 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.87688 -2.74967 0 + vertex 4.25257 0.464986 0 + vertex 1.30727 7.25861 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -2.32857 -3.00041 0 + vertex 4.25257 0.464986 0 + vertex -2.87688 -2.74967 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex 1.10471 -4.60426 0 + vertex 1.81816 -4.87986 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.87688 -2.74967 0 + vertex 1.30727 7.25861 0 + vertex 0.855811 7.43981 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex 0.394112 -4.30895 0 + vertex 1.10471 -4.60426 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.301 -2.58026 0 + vertex 0.855811 7.43981 0 + vertex -0.23691 7.94665 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex -0.313177 -3.99411 0 + vertex 0.394112 -4.30895 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex -1.01669 -3.65993 0 + vertex -0.313177 -3.99411 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.54104 -2.51804 0 + vertex -0.23691 7.94665 0 + vertex -1.48458 8.58988 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex -1.71595 -3.30659 0 + vertex -1.01669 -3.65993 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22446 0.295049 0 + vertex -2.32857 -3.00041 0 + vertex -1.71595 -3.30659 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.62666 -2.52788 0 + vertex -1.48458 8.58988 0 + vertex -2.76946 9.30203 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.25257 0.464986 0 + vertex -2.32857 -3.00041 0 + vertex 4.22446 0.295049 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.855811 7.43981 0 + vertex -3.301 -2.58026 0 + vertex -2.87688 -2.74967 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.23691 7.94665 0 + vertex -3.54104 -2.51804 0 + vertex -3.301 -2.58026 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.48458 8.58988 0 + vertex -3.62666 -2.52788 0 + vertex -3.54104 -2.51804 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.76946 9.30203 0 + vertex -3.68113 -2.55635 0 + vertex -3.62666 -2.52788 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.97378 10.0157 0 + vertex -3.68113 -2.55635 0 + vertex -2.76946 9.30203 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -4.59396 -25.347 0 + vertex -1.45361 -26.5684 0 + vertex -4.25232 -24.3543 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -3.84473 -21.6547 0 + vertex -3.82849 -22.2203 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -3.87719 -21.3353 0 + vertex -3.84473 -21.6547 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -3.91934 -21.0662 0 + vertex -3.87719 -21.3353 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.9798 10.6633 0 + vertex -3.68113 -2.55635 0 + vertex -3.97378 10.0157 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.37165 10.9414 0 + vertex -3.68113 -2.55635 0 + vertex -4.9798 10.6633 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -3.97677 -20.8354 0 + vertex -3.91934 -21.0662 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -4.05507 -20.6308 0 + vertex -3.97677 -20.8354 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -4.15983 -20.4402 0 + vertex -4.05507 -20.6308 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -4.29663 -20.2518 0 + vertex -4.15983 -20.4402 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -4.47107 -20.0532 0 + vertex -4.29663 -20.2518 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -4.68872 -19.8327 0 + vertex -4.47107 -20.0532 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -4.93899 -19.592 0 + vertex -4.68872 -19.8327 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.66976 11.1776 0 + vertex -3.68113 -2.55635 0 + vertex -5.37165 10.9414 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -5.14898 -19.4116 0 + vertex -4.93899 -19.592 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -5.34642 -19.2839 0 + vertex -5.14898 -19.4116 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.68113 -2.55635 0 + vertex -5.66976 11.1776 0 + vertex -3.70601 -2.60189 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -5.55901 -19.2012 0 + vertex -5.34642 -19.2839 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.85942 11.3636 0 + vertex -3.70601 -2.60189 0 + vertex -5.66976 11.1776 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -5.8145 -19.1562 0 + vertex -5.55901 -19.2012 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 0 + vertex -5.85942 11.3636 0 + vertex -5.90899 11.4352 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.85942 11.3636 0 + vertex -17.4002 -11.6639 0 + vertex -3.70601 -2.60189 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 0 + vertex -5.90899 11.4352 0 + vertex -5.92592 11.491 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.70285 -2.66292 0 + vertex -6.14058 -19.1411 0 + vertex -5.8145 -19.1562 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.04277 -4.97268 0 + vertex 7.2241 -5.88439 0 + vertex 7.809 -5.75259 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.04277 -4.97268 0 + vertex 6.87672 -5.95074 0 + vertex 7.2241 -5.88439 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.53505 -5.98957 0 + vertex 7.04277 -4.97268 0 + vertex 6.78219 -4.68956 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.04277 -4.97268 0 + vertex 6.53505 -5.98957 0 + vertex 6.87672 -5.95074 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.82356 -5.98052 0 + vertex 6.78219 -4.68956 0 + vertex 6.51759 -4.36865 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.4311 -5.93055 0 + vertex 6.51759 -4.36865 0 + vertex 6.2523 -4.01644 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.78219 -4.68956 0 + vertex 6.18777 -5.99984 0 + vertex 6.53505 -5.98957 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.99906 -5.84891 0 + vertex 6.2523 -4.01644 0 + vertex 5.98964 -3.63939 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.78219 -4.68956 0 + vertex 5.82356 -5.98052 0 + vertex 6.18777 -5.99984 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 0 + vertex 5.98964 -3.63939 0 + vertex 5.48552 -2.8367 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.51759 -4.36865 0 + vertex 5.4311 -5.93055 0 + vertex 5.82356 -5.98052 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 0 + vertex 5.48552 -2.8367 0 + vertex 5.03179 -2.01239 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.2523 -4.01644 0 + vertex 4.99906 -5.84891 0 + vertex 5.4311 -5.93055 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 0 + vertex 5.03179 -2.01239 0 + vertex 4.65505 -1.21825 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.98964 -3.63939 0 + vertex 4.51611 -5.73457 0 + vertex 4.99906 -5.84891 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 0 + vertex 4.65505 -1.21825 0 + vertex 4.50386 -0.848697 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 0 + vertex 4.50386 -0.848697 0 + vertex 4.38188 -0.506111 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 0 + vertex 4.38188 -0.506111 0 + vertex 4.29244 -0.196974 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 0 + vertex 4.29244 -0.196974 0 + vertex 4.23886 0.0722368 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.97093 -5.58648 0 + vertex 4.23886 0.0722368 0 + vertex 4.22446 0.295049 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.98964 -3.63939 0 + vertex 3.97093 -5.58648 0 + vertex 4.51611 -5.73457 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.7369 -35.0944 0 + vertex 12.2214 -34.9805 0 + vertex 12.2468 -35.1875 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.73 -32.8205 0 + vertex 11.1661 -32.3709 0 + vertex 14.6832 -33.3707 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.6656 -33.913 0 + vertex 12.1503 -34.7994 0 + vertex 12.2214 -34.9805 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 11.8827 -34.5351 0 + vertex 14.6832 -33.3707 0 + vertex 11.1661 -32.3709 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.6656 -33.913 0 + vertex 12.0364 -34.6492 0 + vertex 12.1503 -34.7994 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 12.0364 -34.6492 0 + vertex 14.6832 -33.3707 0 + vertex 11.8827 -34.5351 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.6832 -33.3707 0 + vertex 12.0364 -34.6492 0 + vertex 14.6656 -33.913 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.9267 -33.0747 0 + vertex 11.8827 -34.5351 0 + vertex 11.1661 -32.3709 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8827 -34.5351 0 + vertex 10.9267 -33.0747 0 + vertex 11.6919 -34.4621 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.6919 -34.4621 0 + vertex 10.9267 -33.0747 0 + vertex 11.4668 -34.4353 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.7819 -33.5982 0 + vertex 11.4668 -34.4353 0 + vertex 10.9267 -33.0747 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.7449 -33.8005 0 + vertex 11.4668 -34.4353 0 + vertex 10.7819 -33.5982 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.4668 -34.4353 0 + vertex 10.7449 -33.8005 0 + vertex 11.143 -34.4171 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.7315 -33.9677 0 + vertex 11.143 -34.4171 0 + vertex 10.7449 -33.8005 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.143 -34.4171 0 + vertex 10.7315 -33.9677 0 + vertex 11.016 -34.3915 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 10.7415 -34.103 0 + vertex 11.016 -34.3915 0 + vertex 10.7315 -33.9677 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.016 -34.3915 0 + vertex 10.7415 -34.103 0 + vertex 10.9123 -34.3507 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 10.775 -34.2097 0 + vertex 10.9123 -34.3507 0 + vertex 10.7415 -34.103 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9123 -34.3507 0 + vertex 10.775 -34.2097 0 + vertex 10.832 -34.2912 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0881 -14.3092 0 + vertex 14.1362 -14.4186 0 + vertex 14.1363 -14.3424 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0003 -14.2763 0 + vertex 14.1362 -14.4186 0 + vertex 14.0881 -14.3092 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.1362 -14.4186 0 + vertex 14.0003 -14.2763 0 + vertex 14.0967 -14.5873 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.7222 -14.2141 0 + vertex 14.0967 -14.5873 0 + vertex 14.0003 -14.2763 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0967 -14.5873 0 + vertex 13.7222 -14.2141 0 + vertex 13.9185 -15.1524 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.3346 -14.1615 0 + vertex 13.9185 -15.1524 0 + vertex 13.7222 -14.2141 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.8698 -14.1239 0 + vertex 13.9185 -15.1524 0 + vertex 13.3346 -14.1615 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.9185 -15.1524 0 + vertex 12.8698 -14.1239 0 + vertex 13.6397 -15.9386 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.7363 -14.0885 0 + vertex 13.6397 -15.9386 0 + vertex 12.8698 -14.1239 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.6397 -15.9386 0 + vertex 12.7363 -14.0885 0 + vertex 13.2984 -16.8469 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.6087 -14.0056 0 + vertex 13.2984 -16.8469 0 + vertex 12.7363 -14.0885 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.0711 -19.1496 0 + vertex 13.2984 -16.8469 0 + vertex 12.6087 -14.0056 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.0711 -19.1496 0 + vertex 12.6087 -14.0056 0 + vertex 12.5013 -13.8876 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.72114 -19.1409 0 + vertex 12.5013 -13.8876 0 + vertex 12.4287 -13.7469 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.76754 -19.1712 0 + vertex 12.4287 -13.7469 0 + vertex 12.3997 -13.6324 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.80885 -19.2424 0 + vertex 12.3997 -13.6324 0 + vertex 12.3889 -13.5153 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 10.602 -19.227 0 + vertex 13.2984 -16.8469 0 + vertex 10.3591 -19.1774 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.8205 29.3224 0 + vertex 15.0694 29.0611 0 + vertex 12.0304 29.9363 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0694 29.0611 0 + vertex 11.8205 29.3224 0 + vertex 15.0552 28.7509 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 11.8169 27.5343 0 + vertex 15.0574 28.4965 0 + vertex 11.7656 27.9858 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 11.903 27.1234 0 + vertex 15.0574 28.4965 0 + vertex 11.8169 27.5343 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.7675 28.9061 0 + vertex 15.0552 28.7509 0 + vertex 11.8205 29.3224 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0574 28.4965 0 + vertex 12.2572 26.3514 0 + vertex 12.3979 26.1543 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.9082 29.6745 0 + vertex 12.0304 29.9363 0 + vertex 11.965 29.8184 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0304 29.9363 0 + vertex 11.9082 29.6745 0 + vertex 11.8205 29.3224 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0574 28.4965 0 + vertex 12.1339 26.5589 0 + vertex 12.2572 26.3514 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0552 28.7509 0 + vertex 11.7675 28.9061 0 + vertex 15.0574 28.4965 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0574 28.4965 0 + vertex 12.0241 26.7794 0 + vertex 12.1339 26.5589 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0574 28.4965 0 + vertex 11.7675 28.9061 0 + vertex 11.7492 28.4518 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 12.0241 26.7794 0 + vertex 15.0574 28.4965 0 + vertex 11.903 27.1234 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0574 28.4965 0 + vertex 11.7492 28.4518 0 + vertex 11.7656 27.9858 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.7548 16.6154 0 + vertex 24.8294 16.7672 0 + vertex 24.8232 16.8925 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.659 16.5397 0 + vertex 24.8232 16.8925 0 + vertex 24.789 17.0321 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.8294 16.7672 0 + vertex 24.7548 16.6154 0 + vertex 24.8049 16.6725 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.5483 17.3222 0 + vertex 24.789 17.0321 0 + vertex 24.7291 17.1695 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.5483 17.3222 0 + vertex 24.7291 17.1695 0 + vertex 24.6602 17.253 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.8232 16.8925 0 + vertex 24.659 16.5397 0 + vertex 24.7548 16.6154 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.789 17.0321 0 + vertex 24.5483 17.3222 0 + vertex 24.659 16.5397 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.386 17.3783 0 + vertex 24.659 16.5397 0 + vertex 24.5483 17.3222 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.386 17.3783 0 + vertex 24.3498 16.3417 0 + vertex 24.659 16.5397 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.166 17.4223 0 + vertex 24.3498 16.3417 0 + vertex 24.386 17.3783 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.166 17.4223 0 + vertex 23.9148 16.0975 0 + vertex 24.3498 16.3417 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.5226 17.4791 0 + vertex 23.9148 16.0975 0 + vertex 24.166 17.4223 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.5226 17.4791 0 + vertex 23.3919 15.8262 0 + vertex 23.9148 16.0975 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.5588 17.5015 0 + vertex 23.3919 15.8262 0 + vertex 23.5226 17.4791 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.5588 17.5015 0 + vertex 22.2336 15.278 0 + vertex 23.3919 15.8262 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0506 17.5236 0 + vertex 22.2336 15.278 0 + vertex 22.5588 17.5015 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.2336 15.278 0 + vertex 21.0506 17.5236 0 + vertex 21.6737 15.039 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.6737 15.039 0 + vertex 21.0506 17.5236 0 + vertex 21.1771 14.8489 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2276 17.5562 0 + vertex 21.1771 14.8489 0 + vertex 21.0506 17.5236 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.1771 14.8489 0 + vertex 20.2276 17.5562 0 + vertex 20.8452 14.735 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8452 14.735 0 + vertex 20.2276 17.5562 0 + vertex 20.5722 14.6577 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.5722 14.6577 0 + vertex 20.2276 17.5562 0 + vertex 20.327 14.6203 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4469 14.7833 0 + vertex 20.2276 17.5562 0 + vertex 20.1284 17.5777 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2276 17.5562 0 + vertex 20.0785 14.6265 0 + vertex 20.327 14.6203 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4469 14.7833 0 + vertex 20.1284 17.5777 0 + vertex 20.0333 17.6179 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4281 15.1559 0 + vertex 20.0333 17.6179 0 + vertex 19.9424 17.6771 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4281 15.1559 0 + vertex 19.9424 17.6771 0 + vertex 19.8554 17.7553 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2276 17.5562 0 + vertex 19.7955 14.6797 0 + vertex 20.0785 14.6265 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.448 15.5385 0 + vertex 19.8554 17.7553 0 + vertex 19.6934 17.9694 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.448 15.5385 0 + vertex 19.6934 17.9694 0 + vertex 19.5469 18.2611 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2276 17.5562 0 + vertex 19.4469 14.7833 0 + vertex 19.7955 14.6797 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.6072 15.8977 0 + vertex 19.5469 18.2611 0 + vertex 19.4153 18.6317 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.8738 16.2527 0 + vertex 19.4153 18.6317 0 + vertex 19.2984 19.082 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2162 16.623 0 + vertex 19.2984 19.082 0 + vertex 19.1956 19.6132 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.6028 17.0277 0 + vertex 19.1956 19.6132 0 + vertex 19.1065 20.2262 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.1667 22.8321 0 + vertex 19.1065 20.2262 0 + vertex 19.0081 20.8787 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6752 22.6222 0 + vertex 19.0081 20.8787 0 + vertex 18.892 21.4494 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4732 22.2317 0 + vertex 18.892 21.4494 0 + vertex 18.7726 21.8767 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4732 22.2317 0 + vertex 18.7726 21.8767 0 + vertex 18.7163 22.0174 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4732 22.2317 0 + vertex 18.7163 22.0174 0 + vertex 18.6646 22.0992 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.892 21.4494 0 + vertex 18.4732 22.2317 0 + vertex 18.127 22.4141 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0333 17.6179 0 + vertex 18.4281 15.1559 0 + vertex 19.4469 14.7833 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.892 21.4494 0 + vertex 18.127 22.4141 0 + vertex 17.6752 22.6222 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.0081 20.8787 0 + vertex 17.6752 22.6222 0 + vertex 17.1667 22.8321 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.8554 17.7553 0 + vertex 17.448 15.5385 0 + vertex 18.4281 15.1559 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.1065 20.2262 0 + vertex 17.1667 22.8321 0 + vertex 14.0017 17.4864 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5469 18.2611 0 + vertex 16.6072 15.8977 0 + vertex 17.448 15.5385 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4153 18.6317 0 + vertex 15.8738 16.2527 0 + vertex 16.6072 15.8977 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.3813 18.0182 0 + vertex 17.1667 22.8321 0 + vertex 15.5173 23.4995 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.2984 19.082 0 + vertex 15.2162 16.623 0 + vertex 15.8738 16.2527 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.1956 19.6132 0 + vertex 14.6028 17.0277 0 + vertex 15.2162 16.623 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.6914 19.6646 0 + vertex 15.5173 23.4995 0 + vertex 14.0281 24.1527 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.1065 20.2262 0 + vertex 14.0017 17.4864 0 + vertex 14.6028 17.0277 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.9846 20.5521 0 + vertex 14.0281 24.1527 0 + vertex 13.7923 24.2655 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.6869 21.0368 0 + vertex 13.7923 24.2655 0 + vertex 13.5553 24.3991 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.1667 22.8321 0 + vertex 13.3813 18.0182 0 + vertex 14.0017 17.4864 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.3935 21.5973 0 + vertex 13.5553 24.3991 0 + vertex 13.085 24.7212 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.5173 23.4995 0 + vertex 12.71 18.6425 0 + vertex 13.3813 18.0182 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.0801 22.2703 0 + vertex 13.085 24.7212 0 + vertex 12.6316 25.1032 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.72206 23.0922 0 + vertex 12.6316 25.1032 0 + vertex 12.2092 25.5292 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.5173 23.4995 0 + vertex 12.1494 19.1886 0 + vertex 12.71 18.6425 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.38213 23.8626 0 + vertex 12.2092 25.5292 0 + vertex 11.8324 25.9834 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.5173 23.4995 0 + vertex 11.6914 19.6646 0 + vertex 12.1494 19.1886 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.08206 24.476 0 + vertex 11.8324 25.9834 0 + vertex 11.5154 26.4501 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.80411 24.9522 0 + vertex 11.5154 26.4501 0 + vertex 11.3839 26.6832 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0281 24.1527 0 + vertex 11.3113 20.1069 0 + vertex 11.6914 19.6646 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.6679 25.145 0 + vertex 11.3839 26.6832 0 + vertex 11.2726 26.9135 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.53058 25.3107 0 + vertex 11.2726 26.9135 0 + vertex 11.1835 27.139 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.38993 25.4519 0 + vertex 11.1835 27.139 0 + vertex 11.1184 27.3577 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.24373 25.571 0 + vertex 11.1184 27.3577 0 + vertex 11.0734 27.5937 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.08977 25.6705 0 + vertex 11.0734 27.5937 0 + vertex 11.0484 27.8474 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.0281 24.1527 0 + vertex 10.9846 20.5521 0 + vertex 11.3113 20.1069 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.92584 25.7528 0 + vertex 11.0484 27.8474 0 + vertex 11.0419 28.1143 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.9476 30.6899 0 + vertex 4.89167 37.3134 0 + vertex 11.8311 30.6195 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.73361 37.0399 0 + vertex 11.8311 30.6195 0 + vertex 4.89167 37.3134 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.31688 36.0346 0 + vertex 11.8311 30.6195 0 + vertex 4.73361 37.0399 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.1227 35.3375 0 + vertex 11.8311 30.6195 0 + vertex 4.31688 36.0346 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8311 30.6195 0 + vertex 3.94762 34.5584 0 + vertex 11.7177 30.5077 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.68366 32.8976 0 + vertex 11.6088 30.3591 0 + vertex 3.79886 33.7332 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.94762 34.5584 0 + vertex 11.8311 30.6195 0 + vertex 4.1227 35.3375 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.7177 30.5077 0 + vertex 3.79886 33.7332 0 + vertex 11.6088 30.3591 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.52293 36.6141 0 + vertex 4.73361 37.0399 0 + vertex 4.62814 36.8484 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.73361 37.0399 0 + vertex 4.52293 36.6141 0 + vertex 4.31688 36.0346 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.6088 30.3591 0 + vertex 3.68366 32.8976 0 + vertex 11.5057 30.1782 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.79886 33.7332 0 + vertex 11.7177 30.5077 0 + vertex 3.94762 34.5584 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.60924 32.0876 0 + vertex 11.5057 30.1782 0 + vertex 3.68366 32.8976 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.58282 31.3388 0 + vertex 11.5057 30.1782 0 + vertex 3.60924 32.0876 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5057 30.1782 0 + vertex 5.05276 27.3884 0 + vertex 5.39739 26.9794 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5057 30.1782 0 + vertex 4.69711 27.8759 0 + vertex 5.05276 27.3884 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 3.59957 30.3654 0 + vertex 11.5057 30.1782 0 + vertex 3.58282 31.3388 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5057 30.1782 0 + vertex 4.32553 28.4461 0 + vertex 4.69711 27.8759 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5057 30.1782 0 + vertex 4.09087 28.8303 0 + vertex 4.32553 28.4461 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5057 30.1782 0 + vertex 3.59957 30.3654 0 + vertex 4.09087 28.8303 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.09087 28.8303 0 + vertex 3.59957 30.3654 0 + vertex 3.91157 29.1502 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 3.63162 30.0135 0 + vertex 3.91157 29.1502 0 + vertex 3.59957 30.3654 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.91157 29.1502 0 + vertex 3.63162 30.0135 0 + vertex 3.78021 29.4348 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.78021 29.4348 0 + vertex 3.63162 30.0135 0 + vertex 3.68937 29.7129 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.45361 -26.5684 0 + vertex -4.59396 -25.347 0 + vertex -1.72295 -27.0315 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.05721 -26.548 0 + vertex -1.72295 -27.0315 0 + vertex -4.59396 -25.347 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.72295 -27.0315 0 + vertex -5.05721 -26.548 0 + vertex -2.23947 -28.0146 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.23947 -28.0146 0 + vertex -5.05721 -26.548 0 + vertex -2.71481 -29.043 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.65492 -27.9982 0 + vertex -2.71481 -29.043 0 + vertex -5.05721 -26.548 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.71481 -29.043 0 + vertex -5.65492 -27.9982 0 + vertex -3.135 -30.0798 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -6.39994 -29.738 0 + vertex -3.135 -30.0798 0 + vertex -5.65492 -27.9982 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.135 -30.0798 0 + vertex -6.39994 -29.738 0 + vertex -3.4861 -31.0878 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.4477 -19.4082 0 + vertex 19.1479 -12.7477 0 + vertex 24.9086 -19.5812 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7352 1.18648 0 + vertex 19.6583 -10.9333 0 + vertex 19.6819 -11.0243 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.4297 -3.0084 0 + vertex 19.6172 -10.8571 0 + vertex 19.6583 -10.9333 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0112 -3.39762 0 + vertex 19.557 -10.7956 0 + vertex 19.6172 -10.8571 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.4451 -3.80993 0 + vertex 19.557 -10.7956 0 + vertex 20.0112 -3.39762 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.557 -10.7956 0 + vertex 19.4451 -3.80993 0 + vertex 19.4763 -10.749 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 18.7073 -4.27174 0 + vertex 19.4763 -10.749 0 + vertex 19.4451 -3.80993 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4763 -10.749 0 + vertex 18.7073 -4.27174 0 + vertex 19.3736 -10.7173 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 17.7736 -4.80944 0 + vertex 19.3736 -10.7173 0 + vertex 18.7073 -4.27174 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3736 -10.7173 0 + vertex 17.7736 -4.80944 0 + vertex 19.0963 -10.6988 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.0963 -10.6988 0 + vertex 17.7736 -4.80944 0 + vertex 18.7132 -10.7406 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 16.3254 -5.59514 0 + vertex 18.7132 -10.7406 0 + vertex 17.7736 -4.80944 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.7132 -10.7406 0 + vertex 16.3254 -5.59514 0 + vertex 18.2126 -10.843 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.6549 -5.93433 0 + vertex 18.2126 -10.843 0 + vertex 16.3254 -5.59514 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.2126 -10.843 0 + vertex 15.6549 -5.93433 0 + vertex 17.5824 -11.0066 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.0129 -6.23993 0 + vertex 17.5824 -11.0066 0 + vertex 15.6549 -5.93433 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.5824 -11.0066 0 + vertex 15.0129 -6.23993 0 + vertex 16.811 -11.2316 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 14.3941 -6.51356 0 + vertex 16.811 -11.2316 0 + vertex 15.0129 -6.23993 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.793 -6.75686 0 + vertex 16.811 -11.2316 0 + vertex 14.3941 -6.51356 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.793 -6.75686 0 + vertex 13.7217 -12.1451 0 + vertex 16.811 -11.2316 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 13.2041 -6.97145 0 + vertex 13.7217 -12.1451 0 + vertex 13.793 -6.75686 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.6221 -7.15898 0 + vertex 13.7217 -12.1451 0 + vertex 13.2041 -6.97145 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.0414 -7.32107 0 + vertex 13.7217 -12.1451 0 + vertex 12.6221 -7.15898 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.7217 -12.1451 0 + vertex 12.0414 -7.32107 0 + vertex 13.4022 -12.26 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.4568 -7.45935 0 + vertex 13.4022 -12.26 0 + vertex 12.0414 -7.32107 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.4022 -12.26 0 + vertex 11.4568 -7.45935 0 + vertex 13.1153 -12.4148 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.8627 -7.57545 0 + vertex 13.1153 -12.4148 0 + vertex 11.4568 -7.45935 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.1153 -12.4148 0 + vertex 10.8627 -7.57545 0 + vertex 12.8673 -12.6015 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.2538 -7.67101 0 + vertex 12.8673 -12.6015 0 + vertex 10.8627 -7.57545 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 10.8168 -19.3006 0 + vertex 12.5806 -18.6336 0 + vertex 10.602 -19.227 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.8673 -12.6015 0 + vertex 10.2538 -7.67101 0 + vertex 12.6645 -12.8127 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 9.62459 -7.74765 0 + vertex 12.6645 -12.8127 0 + vertex 10.2538 -7.67101 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.5806 -18.6336 0 + vertex 11.0203 -19.4009 0 + vertex 12.2803 -19.3138 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 11.5538 -19.7266 0 + vertex 12.2803 -19.3138 0 + vertex 11.2294 -19.5302 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2803 -19.3138 0 + vertex 11.5538 -19.7266 0 + vertex 12.0697 -19.7199 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 11.7902 -19.8211 0 + vertex 12.0697 -19.7199 0 + vertex 11.5538 -19.7266 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 11.881 -19.8313 0 + vertex 12.0697 -19.7199 0 + vertex 11.7902 -19.8211 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.6645 -12.8127 0 + vertex 9.62459 -7.74765 0 + vertex 12.513 -13.0405 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0185 -19.7802 0 + vertex 11.881 -19.8313 0 + vertex 11.9563 -19.8175 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0697 -19.7199 0 + vertex 11.881 -19.8313 0 + vertex 12.0185 -19.7802 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 8.96966 -7.80701 0 + vertex 12.513 -13.0405 0 + vertex 9.62459 -7.74765 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 11.2294 -19.5302 0 + vertex 12.2803 -19.3138 0 + vertex 11.0203 -19.4009 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 11.0203 -19.4009 0 + vertex 12.5806 -18.6336 0 + vertex 10.8168 -19.3006 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.2984 -16.8469 0 + vertex 10.602 -19.227 0 + vertex 12.5806 -18.6336 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.513 -13.0405 0 + vertex 8.96966 -7.80701 0 + vertex 12.419 -13.2773 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.2984 -16.8469 0 + vertex 10.0711 -19.1496 0 + vertex 10.3591 -19.1774 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.56097 -7.88041 0 + vertex 12.419 -13.2773 0 + vertex 8.96966 -7.80701 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.5013 -13.8876 0 + vertex 9.72114 -19.1409 0 + vertex 10.0711 -19.1496 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.419 -13.2773 0 + vertex 7.56097 -7.88041 0 + vertex 12.3889 -13.5153 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.4287 -13.7469 0 + vertex 8.76754 -19.1712 0 + vertex 9.72114 -19.1409 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.04455 -7.91255 0 + vertex 12.3889 -13.5153 0 + vertex 7.56097 -7.88041 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3997 -13.6324 0 + vertex 7.80885 -19.2424 0 + vertex 8.76754 -19.1712 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 7.42262 -19.2967 0 + vertex 12.3889 -13.5153 0 + vertex 6.04455 -7.91255 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3889 -13.5153 0 + vertex 7.42262 -19.2967 0 + vertex 7.80885 -19.2424 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.42262 -19.2967 0 + vertex 6.04455 -7.91255 0 + vertex 7.07441 -19.3694 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.49083 -7.9071 0 + vertex 7.07441 -19.3694 0 + vertex 6.04455 -7.91255 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.07441 -19.3694 0 + vertex 5.49083 -7.9071 0 + vertex 6.74616 -19.4649 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.0434 -7.88498 0 + vertex 6.74616 -19.4649 0 + vertex 5.49083 -7.9071 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.74616 -19.4649 0 + vertex 5.0434 -7.88498 0 + vertex 6.41984 -19.5879 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.67971 -7.84446 0 + vertex 6.41984 -19.5879 0 + vertex 5.0434 -7.88498 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.41984 -19.5879 0 + vertex 4.67971 -7.84446 0 + vertex 6.07737 -19.7427 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.37723 -7.78379 0 + vertex 6.07737 -19.7427 0 + vertex 4.67971 -7.84446 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.07737 -19.7427 0 + vertex 4.37723 -7.78379 0 + vertex 5.70074 -19.9339 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.70074 -19.9339 0 + vertex 4.37723 -7.78379 0 + vertex 5.20766 -20.2058 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.11342 -7.70123 0 + vertex 5.20766 -20.2058 0 + vertex 4.37723 -7.78379 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.20766 -20.2058 0 + vertex 4.11342 -7.70123 0 + vertex 4.71458 -20.5006 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.86574 -7.59505 0 + vertex 4.71458 -20.5006 0 + vertex 4.11342 -7.70123 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.71458 -20.5006 0 + vertex 3.86574 -7.59505 0 + vertex 4.22328 -20.8168 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.40104 -7.34622 0 + vertex 4.22328 -20.8168 0 + vertex 3.86574 -7.59505 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.22328 -20.8168 0 + vertex 3.40104 -7.34622 0 + vertex 3.73558 -21.1527 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.71562 -6.94693 0 + vertex 3.73558 -21.1527 0 + vertex 3.40104 -7.34622 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex 3.73558 -21.1527 0 + vertex 2.71562 -6.94693 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.73558 -21.1527 0 + vertex -3.82849 -22.2203 0 + vertex 3.25328 -21.5067 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex 2.71562 -6.94693 0 + vertex 1.05193 -5.91722 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.25328 -21.5067 0 + vertex -3.82849 -22.2203 0 + vertex 2.77819 -21.8771 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.77819 -21.8771 0 + vertex -3.82849 -22.2203 0 + vertex 2.31211 -22.2625 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex 1.05193 -5.91722 0 + vertex -0.694871 -4.82613 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.31211 -22.2625 0 + vertex -3.82849 -22.2203 0 + vertex 1.85684 -22.661 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.85684 -22.661 0 + vertex -3.82849 -22.2203 0 + vertex 1.4142 -23.0712 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex -0.694871 -4.82613 0 + vertex -2.47177 -3.7788 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.4142 -23.0712 0 + vertex -3.82849 -22.2203 0 + vertex 0.985991 -23.4913 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.985991 -23.4913 0 + vertex -3.82849 -22.2203 0 + vertex 0.574011 -23.9198 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex -2.47177 -3.7788 0 + vertex -2.8551 -3.51984 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.574011 -23.9198 0 + vertex -3.82849 -22.2203 0 + vertex 0.18007 -24.355 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -3.84589 -22.5177 0 + vertex 0.18007 -24.355 0 + vertex -3.82849 -22.2203 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex -2.8551 -3.51984 0 + vertex -3.18232 -3.26618 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -3.88244 -22.8317 0 + vertex 0.18007 -24.355 0 + vertex -3.84589 -22.5177 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex -3.18232 -3.26618 0 + vertex -3.44099 -3.03042 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.18007 -24.355 0 + vertex -3.88244 -22.8317 0 + vertex -0.194025 -24.7953 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -3.93975 -23.1672 0 + vertex -0.194025 -24.7953 0 + vertex -3.88244 -22.8317 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex -3.44099 -3.03042 0 + vertex -3.61865 -2.82513 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.194025 -24.7953 0 + vertex -3.93975 -23.1672 0 + vertex -0.546472 -25.2391 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -4.01943 -23.5295 0 + vertex -0.546472 -25.2391 0 + vertex -3.93975 -23.1672 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.546472 -25.2391 0 + vertex -4.01943 -23.5295 0 + vertex -0.875463 -25.6847 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.82849 -22.2203 0 + vertex -3.61865 -2.82513 0 + vertex -3.70285 -2.66292 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -4.25232 -24.3543 0 + vertex -0.875463 -25.6847 0 + vertex -4.01943 -23.5295 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.875463 -25.6847 0 + vertex -4.25232 -24.3543 0 + vertex -1.17919 -26.1306 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.4002 -11.6639 0 + vertex -3.70285 -2.66292 0 + vertex -3.70601 -2.60189 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.17919 -26.1306 0 + vertex -4.25232 -24.3543 0 + vertex -1.45361 -26.5684 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0469 1.94283 0 + vertex 21.1316 -0.233279 0 + vertex 21.1355 -0.658014 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.9727 1.93385 0 + vertex 21.099 0.0745682 0 + vertex 21.1316 -0.233279 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.9112 1.94773 0 + vertex 21.0726 0.170561 0 + vertex 21.099 0.0745682 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.8622 1.9828 0 + vertex 21.0399 0.220413 0 + vertex 21.0726 0.170561 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.8016 2.10976 0 + vertex 20.9772 0.235111 0 + vertex 21.0399 0.220413 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.498 4.716 0 + vertex 21.3371 8.55423 0 + vertex 20.8834 8.89663 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.7901 2.30129 0 + vertex 20.8646 0.230347 0 + vertex 20.9772 0.235111 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 20.5155 0.168137 0 + vertex 22.827 2.54396 0 + vertex 16.2363 2.34533 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.3486 5.33522 0 + vertex 20.8834 8.89663 0 + vertex 20.3513 9.26304 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.7901 2.30129 0 + vertex 20.5155 0.168137 0 + vertex 20.8646 0.230347 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2183 5.95043 0 + vertex 20.3513 9.26304 0 + vertex 19.7274 9.66569 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.827 2.54396 0 + vertex 20.5155 0.168137 0 + vertex 22.7901 2.30129 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1095 6.5543 0 + vertex 19.7274 9.66569 0 + vertex 19.4723 9.81661 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1095 6.5543 0 + vertex 19.4723 9.81661 0 + vertex 19.2206 9.94402 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1095 6.5543 0 + vertex 19.2206 9.94402 0 + vertex 18.9645 10.0501 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.5155 0.168137 0 + vertex 16.2363 2.34533 0 + vertex 20.0432 0.0451876 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0249 7.13954 0 + vertex 18.9645 10.0501 0 + vertex 18.6964 10.137 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 16.4437 1.81579 0 + vertex 20.0432 0.0451876 0 + vertex 16.2363 2.34533 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0249 7.13954 0 + vertex 18.6964 10.137 0 + vertex 18.4085 10.2069 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 16.6551 1.32614 0 + vertex 20.0432 0.0451876 0 + vertex 16.4437 1.81579 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 16.8681 0.883681 0 + vertex 19.4982 -0.127099 0 + vertex 16.6551 1.32614 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0249 7.13954 0 + vertex 18.4085 10.2069 0 + vertex 18.093 10.2619 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 17.0802 0.495742 0 + vertex 19.4982 -0.127099 0 + vertex 16.8681 0.883681 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 17.2889 0.169637 0 + vertex 18.7502 -0.369046 0 + vertex 17.0802 0.495742 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 17.4918 -0.0873203 0 + vertex 18.7502 -0.369046 0 + vertex 17.2889 0.169637 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.7502 -0.369046 0 + vertex 17.4918 -0.0873203 0 + vertex 18.4876 -0.435405 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9668 7.69881 0 + vertex 18.093 10.2619 0 + vertex 17.3487 10.3363 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4876 -0.435405 0 + vertex 17.6862 -0.267812 0 + vertex 18.2791 -0.466914 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 17.8284 -0.36402 0 + vertex 18.2791 -0.466914 0 + vertex 17.6862 -0.267812 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.1098 -0.464739 0 + vertex 17.8284 -0.36402 0 + vertex 17.9646 -0.430052 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.2791 -0.466914 0 + vertex 17.8284 -0.36402 0 + vertex 18.1098 -0.464739 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9212 8.45633 0 + vertex 17.3487 10.3363 0 + vertex 16.499 10.3797 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 17.6862 -0.267812 0 + vertex 18.4876 -0.435405 0 + vertex 17.4918 -0.0873203 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4982 -0.127099 0 + vertex 17.0802 0.495742 0 + vertex 18.7502 -0.369046 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.5399 9.97068 0 + vertex 16.499 10.3797 0 + vertex 16.2187 10.3704 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0432 0.0451876 0 + vertex 16.6551 1.32614 0 + vertex 19.4982 -0.127099 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6879 10.1383 0 + vertex 16.2187 10.3704 0 + vertex 16.005 10.3315 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.6879 10.1383 0 + vertex 16.005 10.3315 0 + vertex 15.8355 10.2563 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2187 10.3704 0 + vertex 15.6879 10.1383 0 + vertex 15.5399 9.97068 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 16.2363 2.34533 0 + vertex 22.9115 2.82433 0 + vertex 16.0356 2.90743 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.499 10.3797 0 + vertex 15.5399 9.97068 0 + vertex 15.369 9.74689 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.7259 8.22365 0 + vertex 15.498 4.716 0 + vertex 15.6639 4.10009 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.213 9.52982 0 + vertex 16.499 10.3797 0 + vertex 15.369 9.74689 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8834 8.89663 0 + vertex 15.3486 5.33522 0 + vertex 15.498 4.716 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3513 9.26304 0 + vertex 15.2183 5.95043 0 + vertex 15.3486 5.33522 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.499 10.3797 0 + vertex 15.213 9.52982 0 + vertex 14.9212 8.45633 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7274 9.66569 0 + vertex 15.1095 6.5543 0 + vertex 15.2183 5.95043 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9262 8.72903 0 + vertex 15.213 9.52982 0 + vertex 15.0942 9.33737 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.9645 10.0501 0 + vertex 15.0249 7.13954 0 + vertex 15.1095 6.5543 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.9543 8.95485 0 + vertex 15.0942 9.33737 0 + vertex 15.0092 9.15168 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.093 10.2619 0 + vertex 14.9668 7.69881 0 + vertex 15.0249 7.13954 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0942 9.33737 0 + vertex 14.9543 8.95485 0 + vertex 14.9262 8.72903 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.213 9.52982 0 + vertex 14.9262 8.72903 0 + vertex 14.9212 8.45633 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.3487 10.3363 0 + vertex 14.9212 8.45633 0 + vertex 14.9668 7.69881 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3467 17.5167 0 + vertex 26.0933 17.5963 0 + vertex 26.0696 17.9605 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 25.4856 17.2443 0 + vertex 26.0933 17.5963 0 + vertex 25.3467 17.5167 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.163 17.7384 0 + vertex 26.0696 17.9605 0 + vertex 26.0009 18.2942 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 25.6037 16.9917 0 + vertex 26.0803 17.2678 0 + vertex 25.4856 17.2443 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0803 17.2678 0 + vertex 25.6037 16.9917 0 + vertex 26.0434 17.0172 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.0501 17.8316 0 + vertex 26.0009 18.2942 0 + vertex 25.8914 18.5921 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 25.7157 16.8274 0 + vertex 26.0434 17.0172 0 + vertex 25.6037 16.9917 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0434 17.0172 0 + vertex 25.7157 16.8274 0 + vertex 25.9855 16.8461 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.9207 17.9138 0 + vertex 25.8914 18.5921 0 + vertex 25.7448 18.8483 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 25.8187 16.7495 0 + vertex 25.9855 16.8461 0 + vertex 25.7157 16.8274 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.9855 16.8461 0 + vertex 25.8187 16.7495 0 + vertex 25.9096 16.7563 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.9207 17.9138 0 + vertex 25.7448 18.8483 0 + vertex 25.5652 19.0574 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.9096 16.7563 0 + vertex 25.8187 16.7495 0 + vertex 25.8659 16.7424 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.9207 17.9138 0 + vertex 25.5652 19.0574 0 + vertex 25.3564 19.2137 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0933 17.5963 0 + vertex 25.4856 17.2443 0 + vertex 26.0803 17.2678 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0696 17.9605 0 + vertex 25.2614 17.6336 0 + vertex 25.3467 17.5167 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0696 17.9605 0 + vertex 25.163 17.7384 0 + vertex 25.2614 17.6336 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6059 18.0475 0 + vertex 25.3564 19.2137 0 + vertex 25.1224 19.3115 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0009 18.2942 0 + vertex 25.0501 17.8316 0 + vertex 25.163 17.7384 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6059 18.0475 0 + vertex 25.1224 19.3115 0 + vertex 24.9972 19.3368 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.8914 18.5921 0 + vertex 24.9207 17.9138 0 + vertex 25.0501 17.8316 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6059 18.0475 0 + vertex 24.9972 19.3368 0 + vertex 24.8672 19.3454 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6059 18.0475 0 + vertex 24.8672 19.3454 0 + vertex 24.6124 19.3722 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3564 19.2137 0 + vertex 24.6059 18.0475 0 + vertex 24.9207 17.9138 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2049 18.1437 0 + vertex 24.6124 19.3722 0 + vertex 24.2514 19.4451 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.6124 19.3722 0 + vertex 24.2049 18.1437 0 + vertex 24.6059 18.0475 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.7039 18.207 0 + vertex 24.2514 19.4451 0 + vertex 23.8321 19.5531 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2514 19.4451 0 + vertex 23.7039 18.207 0 + vertex 24.2049 18.1437 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.0891 18.2417 0 + vertex 23.8321 19.5531 0 + vertex 23.4027 19.6849 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.8321 19.5531 0 + vertex 23.0891 18.2417 0 + vertex 23.7039 18.207 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.9977 19.8472 0 + vertex 23.0891 18.2417 0 + vertex 23.4027 19.6849 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.3468 18.2522 0 + vertex 22.9977 19.8472 0 + vertex 22.6486 20.047 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.5679 18.2611 0 + vertex 22.6486 20.047 0 + vertex 22.3515 20.2895 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.9977 19.8472 0 + vertex 22.3468 18.2522 0 + vertex 23.0891 18.2417 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.5679 18.2611 0 + vertex 22.3515 20.2895 0 + vertex 22.2213 20.4283 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.8522 19.3078 0 + vertex 22.2213 20.4283 0 + vertex 22.1028 20.5797 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.753 19.8896 0 + vertex 22.1028 20.5797 0 + vertex 21.8989 20.9229 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6713 20.6529 0 + vertex 21.8989 20.9229 0 + vertex 21.7362 21.3239 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.58 21.4118 0 + vertex 21.7362 21.3239 0 + vertex 21.6111 21.7881 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.6486 20.047 0 + vertex 21.5679 18.2611 0 + vertex 22.3468 18.2522 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5238 21.6908 0 + vertex 21.6111 21.7881 0 + vertex 21.5197 22.3204 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.4538 21.9215 0 + vertex 21.5197 22.3204 0 + vertex 21.4205 22.8275 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3646 22.1178 0 + vertex 21.4205 22.8275 0 + vertex 21.3493 23.064 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3646 22.1178 0 + vertex 21.3493 23.064 0 + vertex 21.2635 23.2891 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.2511 22.2936 0 + vertex 21.2635 23.2891 0 + vertex 21.1632 23.503 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.2511 22.2936 0 + vertex 21.1632 23.503 0 + vertex 21.0482 23.7058 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.8989 20.9229 0 + vertex 19.6713 20.6529 0 + vertex 19.753 19.8896 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.108 22.463 0 + vertex 21.0482 23.7058 0 + vertex 20.9184 23.8976 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.108 22.463 0 + vertex 20.9184 23.8976 0 + vertex 20.7738 24.0784 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.1028 20.5797 0 + vertex 19.753 19.8896 0 + vertex 19.8522 19.3078 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.108 22.463 0 + vertex 20.7738 24.0784 0 + vertex 20.6143 24.2484 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.2213 20.4283 0 + vertex 20.9709 18.304 0 + vertex 21.5679 18.2611 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.9302 22.6398 0 + vertex 20.6143 24.2484 0 + vertex 20.4398 24.4076 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.2213 20.4283 0 + vertex 19.8522 19.3078 0 + vertex 20.9709 18.304 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.9302 22.6398 0 + vertex 20.4398 24.4076 0 + vertex 20.2502 24.5562 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.9709 18.304 0 + vertex 19.8522 19.3078 0 + vertex 20.7319 18.3459 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 19.9169 19.0772 0 + vertex 20.7319 18.3459 0 + vertex 19.8522 19.3078 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.6454 22.8797 0 + vertex 20.2502 24.5562 0 + vertex 20.0455 24.6942 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.7319 18.3459 0 + vertex 19.9169 19.0772 0 + vertex 20.5281 18.4055 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 19.9962 18.8829 0 + vertex 20.5281 18.4055 0 + vertex 19.9169 19.0772 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.5281 18.4055 0 + vertex 19.9962 18.8829 0 + vertex 20.3561 18.486 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3561 18.486 0 + vertex 20.0935 18.7216 0 + vertex 20.2124 18.5903 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 20.0935 18.7216 0 + vertex 20.3561 18.486 0 + vertex 19.9962 18.8829 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.6454 22.8797 0 + vertex 20.0455 24.6942 0 + vertex 19.5904 24.9388 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.7362 21.3239 0 + vertex 19.58 21.4118 0 + vertex 19.6713 20.6529 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.6111 21.7881 0 + vertex 19.5238 21.6908 0 + vertex 19.58 21.4118 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.5197 22.3204 0 + vertex 19.4538 21.9215 0 + vertex 19.5238 21.6908 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.4205 22.8275 0 + vertex 19.3646 22.1178 0 + vertex 19.4538 21.9215 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.2635 23.2891 0 + vertex 19.2511 22.2936 0 + vertex 19.3646 22.1178 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0482 23.7058 0 + vertex 19.108 22.463 0 + vertex 19.2511 22.2936 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.318 23.1114 0 + vertex 19.5904 24.9388 0 + vertex 19.0737 25.1422 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.6143 24.2484 0 + vertex 18.9302 22.6398 0 + vertex 19.108 22.463 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.2502 24.5562 0 + vertex 18.6454 22.8797 0 + vertex 18.9302 22.6398 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.9883 23.3086 0 + vertex 19.0737 25.1422 0 + vertex 18.5685 25.3244 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5904 24.9388 0 + vertex 18.318 23.1114 0 + vertex 18.6454 22.8797 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6969 23.4449 0 + vertex 18.5685 25.3244 0 + vertex 18.1033 25.5216 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.0737 25.1422 0 + vertex 17.9883 23.3086 0 + vertex 18.318 23.1114 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.5685 25.3244 0 + vertex 17.6969 23.4449 0 + vertex 17.9883 23.3086 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6707 25.7385 0 + vertex 17.6969 23.4449 0 + vertex 18.1033 25.5216 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2809 23.9862 0 + vertex 17.6707 25.7385 0 + vertex 17.2631 25.98 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2809 23.9862 0 + vertex 17.2631 25.98 0 + vertex 16.873 26.2508 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1328 24.4531 0 + vertex 16.873 26.2508 0 + vertex 16.4932 26.5558 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6707 25.7385 0 + vertex 16.2809 23.9862 0 + vertex 17.6969 23.4449 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1328 24.4531 0 + vertex 16.4932 26.5558 0 + vertex 16.116 26.8997 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.2197 24.8651 0 + vertex 16.116 26.8997 0 + vertex 15.734 27.2872 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.5086 25.2416 0 + vertex 15.734 27.2872 0 + vertex 15.344 27.7317 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.9664 25.6018 0 + vertex 15.344 27.7317 0 + vertex 15.2193 27.9155 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3979 26.1543 0 + vertex 15.2193 27.9155 0 + vertex 15.1337 28.0941 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.873 26.2508 0 + vertex 15.1328 24.4531 0 + vertex 16.2809 23.9862 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3979 26.1543 0 + vertex 15.1337 28.0941 0 + vertex 15.0817 28.2827 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3979 26.1543 0 + vertex 15.0817 28.2827 0 + vertex 15.0574 28.4965 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.116 26.8997 0 + vertex 14.2197 24.8651 0 + vertex 15.1328 24.4531 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1102 29.496 0 + vertex 12.23 30.2784 0 + vertex 15.0694 29.0611 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.6826 -24.0317 0 + vertex 38.119 -36.6694 0 + vertex 38.1248 -36.8464 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.3703 -24.1311 0 + vertex 38.0969 -36.5276 0 + vertex 38.119 -36.6694 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.2305 -29.6614 0 + vertex 38.0509 -36.4146 0 + vertex 38.0969 -36.5276 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 37.444 -31.6395 0 + vertex 38.0509 -36.4146 0 + vertex 38.2305 -29.6614 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.0509 -36.4146 0 + vertex 37.444 -31.6395 0 + vertex 37.9736 -36.3241 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.8389 -33.2656 0 + vertex 37.9736 -36.3241 0 + vertex 37.444 -31.6395 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.9736 -36.3241 0 + vertex 36.8389 -33.2656 0 + vertex 37.8576 -36.2498 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.8576 -36.2498 0 + vertex 36.8389 -33.2656 0 + vertex 37.6954 -36.1853 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.4479 -34.448 0 + vertex 37.6954 -36.1853 0 + vertex 36.8389 -33.2656 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.6954 -36.1853 0 + vertex 36.4479 -34.448 0 + vertex 37.203 -36.0604 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.3428 -34.844 0 + vertex 37.203 -36.0604 0 + vertex 36.4479 -34.448 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.3035 -35.0946 0 + vertex 37.203 -36.0604 0 + vertex 36.3428 -34.844 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.203 -36.0604 0 + vertex 36.3035 -35.0946 0 + vertex 36.6812 -35.9318 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.2992 -35.3418 0 + vertex 36.6812 -35.9318 0 + vertex 36.3035 -35.0946 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 36.3089 -35.532 0 + vertex 36.6812 -35.9318 0 + vertex 36.2992 -35.3418 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 36.3422 -35.6758 0 + vertex 36.5187 -35.8653 0 + vertex 36.3089 -35.532 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.6812 -35.9318 0 + vertex 36.3089 -35.532 0 + vertex 36.5187 -35.8653 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.5187 -35.8653 0 + vertex 36.3422 -35.6758 0 + vertex 36.4089 -35.7834 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 47.9993 -20.1225 0 + vertex 110 -110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 47.9745 -19.9807 0 + vertex 47.9993 -20.1225 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 47.9233 -19.8512 0 + vertex 47.9745 -19.9807 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 47.845 -19.7221 0 + vertex 47.9233 -19.8512 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 47.7384 -19.5813 0 + vertex 47.845 -19.7221 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 47.6302 -19.4614 0 + vertex 47.7384 -19.5813 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.4995 15.0808 0 + vertex 47.6302 -19.4614 0 + vertex 110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.6302 -19.4614 0 + vertex 27.4995 15.0808 0 + vertex 47.5127 -19.3635 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 27.5539 14.7505 0 + vertex 47.5127 -19.3635 0 + vertex 27.4995 15.0808 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 27.5896 14.3319 0 + vertex 47.5127 -19.3635 0 + vertex 27.5539 14.7505 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.5127 -19.3635 0 + vertex 27.5896 14.3319 0 + vertex 47.3799 -19.2858 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 27.6103 13.7945 0 + vertex 47.3799 -19.2858 0 + vertex 27.5896 14.3319 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 27.6211 12.2412 0 + vertex 47.3799 -19.2858 0 + vertex 27.6103 13.7945 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.6024 10.7775 0 + vertex 47.3799 -19.2858 0 + vertex 27.6211 12.2412 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.3799 -19.2858 0 + vertex 27.6024 10.7775 0 + vertex 47.2257 -19.2263 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.5775 10.2019 0 + vertex 47.2257 -19.2263 0 + vertex 27.6024 10.7775 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.5397 9.70386 0 + vertex 47.2257 -19.2263 0 + vertex 27.5775 10.2019 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.2257 -19.2263 0 + vertex 27.5397 9.70386 0 + vertex 47.044 -19.1833 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.9647 2.16551 0 + vertex 47.044 -19.1833 0 + vertex 27.5397 9.70386 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 47.044 -19.1833 0 + vertex 26.9647 2.16551 0 + vertex 46.8289 -19.1548 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.391 -19.1898 0 + vertex 41.7426 -19.1572 0 + vertex 44.9905 -19.265 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 42.162 -19.859 0 + vertex 42.9547 -20.2657 0 + vertex 42.1595 -19.6516 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 42.1212 -20.0931 0 + vertex 42.9547 -20.2657 0 + vertex 42.162 -19.859 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.4033 -19.9696 0 + vertex 42.1595 -19.6516 0 + vertex 42.9547 -20.2657 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 42.1595 -19.6516 0 + vertex 43.4033 -19.9696 0 + vertex 42.1149 -19.4743 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 41.9051 -19.2238 0 + vertex 44.6026 -19.3768 0 + vertex 41.7426 -19.1572 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.8201 -19.7253 0 + vertex 42.1149 -19.4743 0 + vertex 43.4033 -19.9696 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.6026 -19.3768 0 + vertex 41.9051 -19.2238 0 + vertex 44.2162 -19.5289 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.2162 -19.5289 0 + vertex 42.0297 -19.3306 0 + vertex 43.8201 -19.7253 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 42.1149 -19.4743 0 + vertex 43.8201 -19.7253 0 + vertex 42.0297 -19.3306 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 42.0297 -19.3306 0 + vertex 44.2162 -19.5289 0 + vertex 41.9051 -19.2238 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.8289 -19.1548 0 + vertex 26.9647 2.16551 0 + vertex 46.274 -19.1343 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.9324 1.61996 0 + vertex 46.274 -19.1343 0 + vertex 26.9647 2.16551 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.274 -19.1343 0 + vertex 26.9324 1.61996 0 + vertex 45.8151 -19.1475 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.8151 -19.1475 0 + vertex 26.901 1.43209 0 + vertex 45.391 -19.1898 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.3957 -19.1543 0 + vertex 26.8581 1.29842 0 + vertex 41.156 -19.2119 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 30.3649 -19.705 0 + vertex 38.4916 -20.1181 0 + vertex 29.9546 -19.4981 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.4916 -20.1181 0 + vertex 30.3649 -19.705 0 + vertex 37.4642 -20.5001 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 37.4642 -20.5001 0 + vertex 30.3649 -19.705 0 + vertex 36.5724 -20.813 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 30.7365 -19.9631 0 + vertex 36.5724 -20.813 0 + vertex 30.3649 -19.705 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.5724 -20.813 0 + vertex 30.7365 -19.9631 0 + vertex 35.9118 -21.0243 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 35.4013 -21.1287 0 + vertex 35.9118 -21.0243 0 + vertex 30.7365 -19.9631 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 32.0349 -22.2828 0 + vertex 34.6318 -22.2927 0 + vertex 34.653 -22.0706 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.6318 -22.2927 0 + vertex 31.6784 -25.7224 0 + vertex 33.8561 -30.1753 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 31.5092 -26.3899 0 + vertex 33.8561 -30.1753 0 + vertex 31.6003 -26.0834 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 31.2435 -26.857 0 + vertex 33.8561 -30.1753 0 + vertex 31.3939 -26.6463 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.6318 -22.2927 0 + vertex 32.0619 -22.7991 0 + vertex 32.0372 -23.3848 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.9549 -21.8223 0 + vertex 34.653 -22.0706 0 + vertex 34.713 -21.8554 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.8204 -21.404 0 + vertex 34.713 -21.8554 0 + vertex 34.8063 -21.6543 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 31.074 -20.2742 0 + vertex 35.4013 -21.1287 0 + vertex 30.7365 -19.9631 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.6318 -22.2927 0 + vertex 32.0349 -22.2828 0 + vertex 32.0619 -22.7991 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.653 -22.0706 0 + vertex 31.9549 -21.8223 0 + vertex 32.0349 -22.2828 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 31.3816 -20.64 0 + vertex 35.2304 -21.2043 0 + vertex 31.074 -20.2742 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.713 -21.8554 0 + vertex 31.8204 -21.404 0 + vertex 31.9549 -21.8223 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.9274 -21.474 0 + vertex 31.8204 -21.404 0 + vertex 34.8063 -21.6543 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 31.8204 -21.404 0 + vertex 34.9274 -21.474 0 + vertex 31.6298 -21.0145 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.0706 -21.3217 0 + vertex 31.6298 -21.0145 0 + vertex 34.9274 -21.474 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 31.6298 -21.0145 0 + vertex 35.0706 -21.3217 0 + vertex 31.3816 -20.64 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.2304 -21.2043 0 + vertex 31.3816 -20.64 0 + vertex 35.0706 -21.3217 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.9118 -21.0243 0 + vertex 35.4013 -21.1287 0 + vertex 35.5778 -21.102 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.5436 -19.1343 0 + vertex 26.8581 1.29842 0 + vertex 41.3957 -19.1543 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.391 -19.1898 0 + vertex 26.901 1.43209 0 + vertex 41.7426 -19.1572 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.7426 -19.1572 0 + vertex 26.901 1.43209 0 + vertex 41.5436 -19.1343 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.8581 1.29842 0 + vertex 41.5436 -19.1343 0 + vertex 26.901 1.43209 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.4013 -21.1287 0 + vertex 31.074 -20.2742 0 + vertex 35.2304 -21.2043 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 39.5298 -19.7361 0 + vertex 29.9546 -19.4981 0 + vertex 38.4916 -20.1181 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.901 1.43209 0 + vertex 45.8151 -19.1475 0 + vertex 26.9324 1.61996 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.9905 -19.265 0 + vertex 41.7426 -19.1572 0 + vertex 44.6026 -19.3768 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 27.4227 15.3534 0 + vertex 27.4995 15.0808 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.5691 18.3624 0 + vertex 27.4227 15.3534 0 + vertex 110 110 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 26.6332 18.0815 0 + vertex 27.4227 15.3534 0 + vertex 26.5691 18.3624 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 26.6784 17.7808 0 + vertex 27.3198 15.5987 0 + vertex 26.6332 18.0815 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3198 15.5987 0 + vertex 26.6784 17.7808 0 + vertex 27.1872 15.8473 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.1872 15.8473 0 + vertex 26.7051 17.4601 0 + vertex 27.0139 16.2113 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.0139 16.2113 0 + vertex 26.7051 17.4601 0 + vertex 26.8653 16.6367 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.8653 16.6367 0 + vertex 26.7051 17.4601 0 + vertex 26.7571 17.0706 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 26.7051 17.4601 0 + vertex 27.1872 15.8473 0 + vertex 26.6784 17.7808 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4227 15.3534 0 + vertex 26.6332 18.0815 0 + vertex 27.3198 15.5987 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 26.4859 18.624 0 + vertex 26.5691 18.3624 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 26.3832 18.8665 0 + vertex 26.4859 18.624 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 26.2605 19.0904 0 + vertex 26.3832 18.8665 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 26.1176 19.296 0 + vertex 26.2605 19.0904 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 25.9541 19.4837 0 + vertex 26.1176 19.296 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.4677 24.3609 0 + vertex 25.9541 19.4837 0 + vertex 110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.9541 19.4837 0 + vertex 21.4677 24.3609 0 + vertex 25.7697 19.6539 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 21.6182 24.144 0 + vertex 25.7697 19.6539 0 + vertex 21.4677 24.3609 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.7697 19.6539 0 + vertex 21.6182 24.144 0 + vertex 25.5639 19.8069 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 21.7423 23.9135 0 + vertex 25.5639 19.8069 0 + vertex 21.6182 24.144 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.5639 19.8069 0 + vertex 21.7423 23.9135 0 + vertex 25.3364 19.943 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3364 19.943 0 + vertex 21.8437 23.6658 0 + vertex 25.087 20.0627 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 21.926 23.397 0 + vertex 25.087 20.0627 0 + vertex 21.8437 23.6658 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.087 20.0627 0 + vertex 21.926 23.397 0 + vertex 24.8151 20.1664 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.8151 20.1664 0 + vertex 21.9928 23.1034 0 + vertex 24.5205 20.2543 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 22.0944 22.427 0 + vertex 24.2028 20.3268 0 + vertex 21.9928 23.1034 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2028 20.3268 0 + vertex 22.0944 22.427 0 + vertex 23.8617 20.3844 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 22.2815 21.5943 0 + vertex 23.8617 20.3844 0 + vertex 22.1689 21.9813 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.8617 20.3844 0 + vertex 22.2815 21.5943 0 + vertex 23.4814 20.4643 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 22.4341 21.2638 0 + vertex 23.1504 20.59 0 + vertex 22.2815 21.5943 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.1504 20.59 0 + vertex 22.4341 21.2638 0 + vertex 22.8668 20.7638 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.7421 20.8693 0 + vertex 22.4341 21.2638 0 + vertex 22.6286 20.9877 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.8668 20.7638 0 + vertex 22.4341 21.2638 0 + vertex 22.7421 20.8693 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.4814 20.4643 0 + vertex 22.2815 21.5943 0 + vertex 23.1504 20.59 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 22.1689 21.9813 0 + vertex 23.8617 20.3844 0 + vertex 22.0944 22.427 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.5205 20.2543 0 + vertex 21.9928 23.1034 0 + vertex 24.2028 20.3268 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 21.9928 23.1034 0 + vertex 24.8151 20.1664 0 + vertex 21.926 23.397 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 21.8437 23.6658 0 + vertex 25.3364 19.943 0 + vertex 21.7423 23.9135 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 21.2873 24.568 0 + vertex 21.4677 24.3609 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 21.0733 24.7691 0 + vertex 21.2873 24.568 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 15.4091 30.0386 0 + vertex 21.0733 24.7691 0 + vertex 110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0733 24.7691 0 + vertex 15.4091 30.0386 0 + vertex 20.8221 24.9679 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8221 24.9679 0 + vertex 15.4091 30.0386 0 + vertex 20.53 25.168 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.53 25.168 0 + vertex 15.4091 30.0386 0 + vertex 20.1936 25.3734 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.1936 25.3734 0 + vertex 15.4091 30.0386 0 + vertex 19.3729 25.8147 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 15.49 29.8698 0 + vertex 19.3729 25.8147 0 + vertex 15.4091 30.0386 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.3729 25.8147 0 + vertex 15.49 29.8698 0 + vertex 18.3311 26.3216 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 15.5622 29.5773 0 + vertex 18.3311 26.3216 0 + vertex 15.49 29.8698 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6504 26.6607 0 + vertex 15.5622 29.5773 0 + vertex 17.0889 26.9817 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 15.6202 29.1601 0 + vertex 17.0889 26.9817 0 + vertex 15.5622 29.5773 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.0889 26.9817 0 + vertex 15.6202 29.1601 0 + vertex 16.6359 27.2959 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.6359 27.2959 0 + vertex 15.6202 29.1601 0 + vertex 16.4467 27.454 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 15.6927 28.7106 0 + vertex 16.4467 27.454 0 + vertex 15.6202 29.1601 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.2806 27.6146 0 + vertex 15.6927 28.7106 0 + vertex 16.1362 27.7792 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.1362 27.7792 0 + vertex 15.6927 28.7106 0 + vertex 16.0121 27.9491 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.0121 27.9491 0 + vertex 15.6927 28.7106 0 + vertex 15.9071 28.1258 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.9071 28.1258 0 + vertex 15.6927 28.7106 0 + vertex 15.8197 28.3106 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.8197 28.3106 0 + vertex 15.6927 28.7106 0 + vertex 15.7487 28.5051 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.4467 27.454 0 + vertex 15.6927 28.7106 0 + vertex 16.2806 27.6146 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.3311 26.3216 0 + vertex 15.5622 29.5773 0 + vertex 17.6504 26.6607 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 15.3672 30.0768 0 + vertex 15.4091 30.0386 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.23504 38.5484 0 + vertex 15.3672 30.0768 0 + vertex 110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.3672 30.0768 0 + vertex 5.23504 38.5484 0 + vertex 15.3252 30.0845 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.23 30.2784 0 + vertex 15.1102 29.496 0 + vertex 12.2821 30.4122 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1701 29.8123 0 + vertex 12.2821 30.4122 0 + vertex 15.1102 29.496 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.2821 30.4122 0 + vertex 15.1701 29.8123 0 + vertex 12.3025 30.5214 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.734 27.2872 0 + vertex 13.5086 25.2416 0 + vertex 14.2197 24.8651 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.344 27.7317 0 + vertex 13.2184 25.4225 0 + vertex 13.5086 25.2416 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.3025 30.5214 0 + vertex 15.1701 29.8123 0 + vertex 15.2437 30.0088 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.344 27.7317 0 + vertex 12.9664 25.6018 0 + vertex 13.2184 25.4225 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2193 27.9155 0 + vertex 12.7484 25.782 0 + vertex 12.9664 25.6018 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2193 27.9155 0 + vertex 12.5603 25.9653 0 + vertex 12.7484 25.782 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2193 27.9155 0 + vertex 12.3979 26.1543 0 + vertex 12.5603 25.9653 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.0304 29.9363 0 + vertex 15.0694 29.0611 0 + vertex 12.23 30.2784 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.291 30.606 0 + vertex 15.2437 30.0088 0 + vertex 15.2838 30.0618 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 5.26494 38.4452 0 + vertex 15.3252 30.0845 0 + vertex 5.23504 38.5484 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2437 30.0088 0 + vertex 12.291 30.606 0 + vertex 12.3025 30.5214 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2838 30.0618 0 + vertex 12.2478 30.6663 0 + vertex 12.291 30.606 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 12.1728 30.7024 0 + vertex 15.3252 30.0845 0 + vertex 5.26494 38.4452 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.3252 30.0845 0 + vertex 12.2478 30.6663 0 + vertex 15.2838 30.0618 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 12.2478 30.6663 0 + vertex 15.3252 30.0845 0 + vertex 12.1728 30.7024 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.1728 30.7024 0 + vertex 5.26494 38.4452 0 + vertex 12.0661 30.7144 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.7923 24.2655 0 + vertex 10.6869 21.0368 0 + vertex 10.9846 20.5521 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.55919 25.8755 0 + vertex 11.0419 28.1143 0 + vertex 11.0528 28.3898 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.5553 24.3991 0 + vertex 10.3935 21.5973 0 + vertex 10.6869 21.0368 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 13.085 24.7212 0 + vertex 10.0801 22.2703 0 + vertex 10.3935 21.5973 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.55919 25.8755 0 + vertex 11.0528 28.3898 0 + vertex 11.1213 28.9486 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.6316 25.1032 0 + vertex 9.72206 23.0922 0 + vertex 10.0801 22.2703 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.39739 26.9794 0 + vertex 11.1213 28.9486 0 + vertex 11.2437 29.4873 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2092 25.5292 0 + vertex 9.38213 23.8626 0 + vertex 9.72206 23.0922 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.8324 25.9834 0 + vertex 9.08206 24.476 0 + vertex 9.38213 23.8626 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.39739 26.9794 0 + vertex 11.2437 29.4873 0 + vertex 11.4096 29.9696 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.5154 26.4501 0 + vertex 8.80411 24.9522 0 + vertex 9.08206 24.476 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.39739 26.9794 0 + vertex 11.4096 29.9696 0 + vertex 11.5057 30.1782 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.3839 26.6832 0 + vertex 8.6679 25.145 0 + vertex 8.80411 24.9522 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.2726 26.9135 0 + vertex 8.53058 25.3107 0 + vertex 8.6679 25.145 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.02596 37.5856 0 + vertex 11.9476 30.6899 0 + vertex 5.13345 37.8458 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.1835 27.139 0 + vertex 8.38993 25.4519 0 + vertex 8.53058 25.3107 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.1184 27.3577 0 + vertex 8.24373 25.571 0 + vertex 8.38993 25.4519 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.0734 27.5937 0 + vertex 8.08977 25.6705 0 + vertex 8.24373 25.571 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.13345 37.8458 0 + vertex 11.9476 30.6899 0 + vertex 5.21112 38.083 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.0484 27.8474 0 + vertex 7.92584 25.7528 0 + vertex 8.08977 25.6705 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.0419 28.1143 0 + vertex 7.55919 25.8755 0 + vertex 7.92584 25.7528 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.1213 28.9486 0 + vertex 5.39739 26.9794 0 + vertex 7.12606 25.9588 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 11.1213 28.9486 0 + vertex 7.12606 25.9588 0 + vertex 7.55919 25.8755 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.0661 30.7144 0 + vertex 5.21112 38.083 0 + vertex 11.9476 30.6899 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 5.73586 26.6445 0 + vertex 7.12606 25.9588 0 + vertex 5.39739 26.9794 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 6.07308 26.3793 0 + vertex 7.12606 25.9588 0 + vertex 5.73586 26.6445 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.25596 38.2865 0 + vertex 12.0661 30.7144 0 + vertex 5.26494 38.4452 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.89167 37.3134 0 + vertex 11.9476 30.6899 0 + vertex 5.02596 37.5856 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.12606 25.9588 0 + vertex 6.07308 26.3793 0 + vertex 6.76329 26.0408 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.76329 26.0408 0 + vertex 6.07308 26.3793 0 + vertex 6.41393 26.1795 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.21112 38.083 0 + vertex 12.0661 30.7144 0 + vertex 5.25596 38.2865 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 5.20457 38.5758 0 + vertex 5.23504 38.5484 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 110 110 0 + vertex 5.16325 38.5852 0 + vertex 5.20457 38.5758 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -110 110 0 + vertex 5.16325 38.5852 0 + vertex 110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.438314 27.347 0 + vertex 1.04514 28.0688 0 + vertex 1.0601 28.6106 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.11256 27.7809 0 + vertex 1.0601 28.6106 0 + vertex 1.07949 29.2543 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.04514 28.0688 0 + vertex -0.438314 27.347 0 + vertex -0.104203 27.2162 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 0.505992 27.0868 0 + vertex 1.00441 27.6053 0 + vertex 0.215611 27.1342 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.00441 27.6053 0 + vertex 0.505992 27.0868 0 + vertex 0.944126 27.2693 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.78547 28.4297 0 + vertex 1.07949 29.2543 0 + vertex 1.13903 29.8907 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.944126 27.2693 0 + vertex 0.734953 27.0776 0 + vertex 0.908598 27.1645 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 0.816408 27.0884 0 + vertex 0.908598 27.1645 0 + vertex 0.734953 27.0776 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.908598 27.1645 0 + vertex 0.816408 27.0884 0 + vertex 0.870515 27.1101 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.44583 29.2754 0 + vertex 1.13903 29.8907 0 + vertex 1.24074 30.5277 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 0.734953 27.0776 0 + vertex 0.944126 27.2693 0 + vertex 0.505992 27.0868 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.08241 30.2998 0 + vertex 1.24074 30.5277 0 + vertex 1.38662 31.173 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.04514 28.0688 0 + vertex 0.215611 27.1342 0 + vertex 1.00441 27.6053 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.38828 30.8734 0 + vertex 1.38662 31.173 0 + vertex 1.57871 31.8344 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -3.96814 32.1322 0 + vertex 1.57871 31.8344 0 + vertex 1.81903 32.5199 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 0.215611 27.1342 0 + vertex 1.04514 28.0688 0 + vertex -0.104203 27.2162 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -4.23933 32.8128 0 + vertex 1.81903 32.5199 0 + vertex 2.10958 33.2371 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.0601 28.6106 0 + vertex -0.7749 27.5359 0 + vertex -0.438314 27.347 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.73722 34.2652 0 + vertex 2.10958 33.2371 0 + vertex 2.4524 33.9939 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -4.96111 35.0324 0 + vertex 2.4524 33.9939 0 + vertex 2.84738 34.7996 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.0601 28.6106 0 + vertex -1.11256 27.7809 0 + vertex -0.7749 27.5359 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.11886 35.5644 0 + vertex 2.84738 34.7996 0 + vertex 3.26543 35.6052 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -5.41174 36.2975 0 + vertex 3.26543 35.6052 0 + vertex 3.68699 36.3778 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.07949 29.2543 0 + vertex -1.44988 28.0795 0 + vertex -1.11256 27.7809 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.41174 36.2975 0 + vertex 3.68699 36.3778 0 + vertex 4.09252 37.0842 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.54821 36.5001 0 + vertex 4.09252 37.0842 0 + vertex 4.46246 37.6912 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.07949 29.2543 0 + vertex -1.78547 28.4297 0 + vertex -1.44988 28.0795 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.61425 36.5608 0 + vertex 4.46246 37.6912 0 + vertex 4.77727 38.1658 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.13903 29.8907 0 + vertex -2.11792 28.8291 0 + vertex -1.78547 28.4297 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.13903 29.8907 0 + vertex -2.44583 29.2754 0 + vertex -2.11792 28.8291 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.61425 36.5608 0 + vertex 4.77727 38.1658 0 + vertex 5.01738 38.4749 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.24074 30.5277 0 + vertex -2.7678 29.7664 0 + vertex -2.44583 29.2754 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.24074 30.5277 0 + vertex -3.08241 30.2998 0 + vertex -2.7678 29.7664 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.38662 31.173 0 + vertex -3.38828 30.8734 0 + vertex -3.08241 30.2998 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.67893 36.5944 0 + vertex 5.01738 38.4749 0 + vertex 5.10332 38.557 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.57871 31.8344 0 + vertex -3.68399 31.485 0 + vertex -3.38828 30.8734 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.57871 31.8344 0 + vertex -3.96814 32.1322 0 + vertex -3.68399 31.485 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.81903 32.5199 0 + vertex -4.23933 32.8128 0 + vertex -3.96814 32.1322 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -5.74234 36.6012 0 + vertex 5.16325 38.5852 0 + vertex -110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.4524 33.9939 0 + vertex -4.96111 35.0324 0 + vertex -4.73722 34.2652 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.10958 33.2371 0 + vertex -4.49616 33.5245 0 + vertex -4.23933 32.8128 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.10958 33.2371 0 + vertex -4.73722 34.2652 0 + vertex -4.49616 33.5245 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.84738 34.7996 0 + vertex -5.11886 35.5644 0 + vertex -4.96111 35.0324 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.26543 35.6052 0 + vertex -5.26884 35.9859 0 + vertex -5.11886 35.5644 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.26543 35.6052 0 + vertex -5.41174 36.2975 0 + vertex -5.26884 35.9859 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.09252 37.0842 0 + vertex -5.54821 36.5001 0 + vertex -5.41174 36.2975 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.46246 37.6912 0 + vertex -5.61425 36.5608 0 + vertex -5.54821 36.5001 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.01738 38.4749 0 + vertex -5.67893 36.5944 0 + vertex -5.61425 36.5608 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.10332 38.557 0 + vertex -5.74234 36.6012 0 + vertex -5.67893 36.5944 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.16325 38.5852 0 + vertex -5.74234 36.6012 0 + vertex 5.10332 38.557 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.2816 27.5955 0 + vertex -6.22417 29.538 0 + vertex -6.20957 31.7226 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.5342 27.7352 0 + vertex -6.20957 31.7226 0 + vertex -6.19415 33.3563 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.22417 29.538 0 + vertex -10.2816 27.5955 0 + vertex -8.79778 27.3973 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -7.89877 27.2865 0 + vertex -6.24249 28.8007 0 + vertex -8.79778 27.3973 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.24249 28.8007 0 + vertex -7.89877 27.2865 0 + vertex -6.27149 28.2565 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -12.6053 27.816 0 + vertex -6.19415 33.3563 0 + vertex -6.15766 34.7516 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -7.24334 27.2437 0 + vertex -6.27149 28.2565 0 + vertex -7.89877 27.2865 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -6.99768 27.2475 0 + vertex -6.31368 27.8729 0 + vertex -7.24334 27.2437 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -13.5445 27.8374 0 + vertex -6.15766 34.7516 0 + vertex -6.10555 35.7605 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -6.80178 27.2682 0 + vertex -6.31368 27.8729 0 + vertex -6.99768 27.2475 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.31368 27.8729 0 + vertex -6.80178 27.2682 0 + vertex -6.37156 27.6173 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.37156 27.6173 0 + vertex -6.65192 27.3056 0 + vertex -6.44763 27.4571 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.4014 27.7989 0 + vertex -6.10555 35.7605 0 + vertex -6.07534 36.0738 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.44763 27.4571 0 + vertex -6.65192 27.3056 0 + vertex -6.54439 27.3597 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -6.65192 27.3056 0 + vertex -6.37156 27.6173 0 + vertex -6.80178 27.2682 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.2259 27.7001 0 + vertex -6.07534 36.0738 0 + vertex -6.04327 36.2349 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.27149 28.2565 0 + vertex -7.24334 27.2437 0 + vertex -6.31368 27.8729 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.22417 29.538 0 + vertex -8.79778 27.3973 0 + vertex -6.24249 28.8007 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.20957 31.7226 0 + vertex -11.5342 27.7352 0 + vertex -10.2816 27.5955 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.4599 27.7917 0 + vertex -6.04327 36.2349 0 + vertex -5.92579 36.4611 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.19415 33.3563 0 + vertex -12.6053 27.816 0 + vertex -11.5342 27.7352 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.15766 34.7516 0 + vertex -13.5445 27.8374 0 + vertex -12.6053 27.816 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.7335 27.9892 0 + vertex -5.92579 36.4611 0 + vertex -5.86569 36.5344 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.10555 35.7605 0 + vertex -14.4014 27.7989 0 + vertex -13.5445 27.8374 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.07534 36.0738 0 + vertex -15.2259 27.7001 0 + vertex -14.4014 27.7989 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.04327 36.2349 0 + vertex -16.0674 27.5405 0 + vertex -15.2259 27.7001 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.04327 36.2349 0 + vertex -20.7979 27.6578 0 + vertex -16.0674 27.5405 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex -20.5419 27.5737 0 + vertex -16.0674 27.5405 0 + vertex -20.7979 27.6578 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.0145 27.539 0 + vertex -5.86569 36.5344 0 + vertex -5.80457 36.5812 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9758 27.3196 0 + vertex -19.9368 27.2141 0 + vertex -19.3233 26.703 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9758 27.3196 0 + vertex -20.1227 27.3549 0 + vertex -19.9368 27.2141 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9758 27.3196 0 + vertex -20.3206 27.4738 0 + vertex -20.1227 27.3549 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.74234 36.6012 0 + vertex -110 110 0 + vertex -5.80457 36.5812 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.9758 27.3196 0 + vertex -20.5419 27.5737 0 + vertex -20.3206 27.4738 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -16.0674 27.5405 0 + vertex -20.5419 27.5737 0 + vertex -16.9758 27.3196 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.04327 36.2349 0 + vertex -21.1001 27.7294 0 + vertex -20.7979 27.6578 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -31.0145 27.539 0 + vertex -5.80457 36.5812 0 + vertex -110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -6.04327 36.2349 0 + vertex -21.4599 27.7917 0 + vertex -21.1001 27.7294 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.92579 36.4611 0 + vertex -22.3975 27.9007 0 + vertex -21.4599 27.7917 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.92579 36.4611 0 + vertex -23.1232 27.9594 0 + vertex -22.3975 27.9007 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.92579 36.4611 0 + vertex -23.7335 27.9892 0 + vertex -23.1232 27.9594 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.86569 36.5344 0 + vertex -24.1643 27.9885 0 + vertex -23.7335 27.9892 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.86569 36.5344 0 + vertex -24.2923 27.9761 0 + vertex -24.1643 27.9885 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -26.3751 26.2567 0 + vertex -24.3889 27.8265 0 + vertex -24.3858 27.8943 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3632 27.7532 0 + vertex -26.3751 26.2567 0 + vertex -24.8316 26.205 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -27.8395 26.4592 0 + vertex -24.3858 27.8943 0 + vertex -24.3515 27.9554 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3858 27.8943 0 + vertex -26.9353 26.3003 0 + vertex -26.3751 26.2567 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3858 27.8943 0 + vertex -27.4097 26.3653 0 + vertex -26.9353 26.3003 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -5.86569 36.5344 0 + vertex -31.0145 27.539 0 + vertex -24.2923 27.9761 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -29.2762 26.9865 0 + vertex -24.3515 27.9554 0 + vertex -30.0875 27.3102 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -28.7314 26.7626 0 + vertex -24.3515 27.9554 0 + vertex -29.2762 26.9865 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -27.8395 26.4592 0 + vertex -24.3515 27.9554 0 + vertex -28.2663 26.5892 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3858 27.8943 0 + vertex -27.8395 26.4592 0 + vertex -27.4097 26.3653 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -28.2663 26.5892 0 + vertex -24.3515 27.9554 0 + vertex -28.7314 26.7626 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3515 27.9554 0 + vertex -30.6543 27.4912 0 + vertex -30.0875 27.3102 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -30.8579 27.5312 0 + vertex -24.2923 27.9761 0 + vertex -31.0145 27.539 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.3515 27.9554 0 + vertex -30.8579 27.5312 0 + vertex -30.6543 27.4912 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -24.2923 27.9761 0 + vertex -30.8579 27.5312 0 + vertex -24.3515 27.9554 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.0225 24.5398 0 + vertex -31.2795 27.2229 0 + vertex -31.272 27.3506 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -30.7957 23.7338 0 + vertex -32.1061 22.3529 0 + vertex -31.5861 22.2399 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.0826 24.213 0 + vertex -32.6306 22.489 0 + vertex -32.1061 22.3529 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2103 24.5339 0 + vertex -33.1564 22.6469 0 + vertex -32.6306 22.489 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2656 24.779 0 + vertex -33.6803 22.8253 0 + vertex -33.1564 22.6469 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2656 24.779 0 + vertex -34.199 23.023 0 + vertex -33.6803 22.8253 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.5664 25.7376 0 + vertex -31.272 27.3506 0 + vertex -31.2059 27.4629 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2668 24.8727 0 + vertex -34.7094 23.2385 0 + vertex -34.199 23.023 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2507 24.9472 0 + vertex -34.7094 23.2385 0 + vertex -31.2668 24.8727 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2795 27.2229 0 + vertex -35.6921 23.7183 0 + vertex -35.2082 23.4707 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2795 27.2229 0 + vertex -36.1579 23.9798 0 + vertex -35.6921 23.7183 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2795 27.2229 0 + vertex -36.6025 24.2541 0 + vertex -36.1579 23.9798 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.8381 25.8495 0 + vertex -31.2059 27.4629 0 + vertex -31.1289 27.5158 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2795 27.2229 0 + vertex -37.0225 24.5398 0 + vertex -36.6025 24.2541 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.0145 27.539 0 + vertex -110 110 0 + vertex -31.1289 27.5158 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.272 27.3506 0 + vertex -38.2113 25.5018 0 + vertex -37.776 25.1404 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.272 27.3506 0 + vertex -37.4147 24.8357 0 + vertex -37.0225 24.5398 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.272 27.3506 0 + vertex -37.776 25.1404 0 + vertex -37.4147 24.8357 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.272 27.3506 0 + vertex -38.5664 25.7376 0 + vertex -38.2113 25.5018 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2059 27.4629 0 + vertex -38.7129 25.8089 0 + vertex -38.5664 25.7376 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -38.9416 25.8595 0 + vertex -31.1289 27.5158 0 + vertex -110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.2059 27.4629 0 + vertex -38.8381 25.8495 0 + vertex -38.7129 25.8089 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -31.1289 27.5158 0 + vertex -38.9416 25.8595 0 + vertex -38.8381 25.8495 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -39.8955 -25.4747 0 + vertex -37.5315 -12.6425 0 + vertex -47.5785 -36.5332 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -47.4015 -36.3788 0 + vertex -39.8955 -25.4747 0 + vertex -47.5785 -36.5332 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.8955 -25.4747 0 + vertex -47.4015 -36.3788 0 + vertex -41.2695 -28.6585 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -41.2695 -28.6585 0 + vertex -47.1985 -36.2359 0 + vertex -42.2252 -30.9405 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -42.2252 -30.9405 0 + vertex -46.9715 -36.1082 0 + vertex -42.7651 -32.2453 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -46.7228 -35.999 0 + vertex -42.7651 -32.2453 0 + vertex -46.9715 -36.1082 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -42.7651 -32.2453 0 + vertex -46.4544 -35.9117 0 + vertex -43.2426 -33.2915 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -43.2426 -33.2915 0 + vertex -46.4544 -35.9117 0 + vertex -43.4655 -33.7273 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -43.4655 -33.7273 0 + vertex -46.1684 -35.8499 0 + vertex -43.682 -34.1098 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -43.682 -34.1098 0 + vertex -46.1684 -35.8499 0 + vertex -43.8952 -34.443 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -45.8475 -35.7893 0 + vertex -43.8952 -34.443 0 + vertex -46.1684 -35.8499 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -45.5508 -35.7136 0 + vertex -44.108 -34.7306 0 + vertex -45.8475 -35.7893 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -44.108 -34.7306 0 + vertex -45.5508 -35.7136 0 + vertex -44.3237 -34.9765 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -44.3237 -34.9765 0 + vertex -45.5508 -35.7136 0 + vertex -44.5451 -35.1844 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -44.7755 -35.3583 0 + vertex -45.5508 -35.7136 0 + vertex -45.0179 -35.5019 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -45.0179 -35.5019 0 + vertex -45.5508 -35.7136 0 + vertex -45.2753 -35.6191 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 110 0 + vertex -39.13 25.5984 0 + vertex -39.1175 25.7085 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -44.5451 -35.1844 0 + vertex -45.5508 -35.7136 0 + vertex -44.7755 -35.3583 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -43.8952 -34.443 0 + vertex -45.8475 -35.7893 0 + vertex -44.108 -34.7306 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -46.1684 -35.8499 0 + vertex -43.4655 -33.7273 0 + vertex -46.4544 -35.9117 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -46.4544 -35.9117 0 + vertex -42.7651 -32.2453 0 + vertex -46.7228 -35.999 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -46.9715 -36.1082 0 + vertex -42.2252 -30.9405 0 + vertex -47.1985 -36.2359 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -47.1985 -36.2359 0 + vertex -41.2695 -28.6585 0 + vertex -47.4015 -36.3788 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.5249 -12.7854 0 + vertex -39.8955 -25.4747 0 + vertex -38.3469 -21.8682 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -37.5104 -12.4945 0 + vertex -47.7274 -36.6957 0 + vertex -37.5315 -12.6425 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.1186 25.4589 0 + vertex -47.9322 -37.0315 0 + vertex -47.846 -36.863 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.1186 25.4589 0 + vertex -110 110 0 + vertex -47.9322 -37.0315 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -47.984 -37.1977 0 + vertex -110 110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.9322 -37.0315 0 + vertex -110 110 0 + vertex -47.984 -37.1977 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.0817 25.7888 0 + vertex -110 110 0 + vertex -39.1175 25.7085 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -39.0229 25.8392 0 + vertex -110 110 0 + vertex -39.0817 25.7888 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -38.9416 25.8595 0 + vertex -110 110 0 + vertex -39.0229 25.8392 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 47.9987 -20.2887 0 + vertex 110 -110 0 + vertex 47.9993 -20.1225 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 47.9737 -20.4912 0 + vertex 110 -110 0 + vertex 47.9987 -20.2887 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 47.8542 -21.0531 0 + vertex 110 -110 0 + vertex 47.9737 -20.4912 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 47.7155 -21.5429 0 + vertex 110 -110 0 + vertex 47.8542 -21.0531 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 47.5422 -21.9981 0 + vertex 110 -110 0 + vertex 47.7155 -21.5429 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 47.3383 -22.4165 0 + vertex 110 -110 0 + vertex 47.5422 -21.9981 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 47.1074 -22.796 0 + vertex 110 -110 0 + vertex 47.3383 -22.4165 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 46.8534 -23.1343 0 + vertex 110 -110 0 + vertex 47.1074 -22.796 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.0668 -37.4245 0 + vertex 46.8534 -23.1343 0 + vertex 46.5801 -23.4293 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.0668 -37.4245 0 + vertex 46.5801 -23.4293 0 + vertex 46.2914 -23.6786 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.103 -37.2562 0 + vertex 46.2914 -23.6786 0 + vertex 45.9909 -23.8802 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.1248 -36.8464 0 + vertex 45.9909 -23.8802 0 + vertex 45.6826 -24.0317 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.119 -36.6694 0 + vertex 45.6826 -24.0317 0 + vertex 45.3703 -24.1311 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.2305 -29.6614 0 + vertex 45.3703 -24.1311 0 + vertex 45.0576 -24.176 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 39.342 -26.9688 0 + vertex 45.0576 -24.176 0 + vertex 44.7485 -24.1643 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 39.342 -26.9688 0 + vertex 44.7485 -24.1643 0 + vertex 44.4468 -24.0937 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 40.0406 -25.46 0 + vertex 44.4468 -24.0937 0 + vertex 44.1563 -23.9621 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 41.3103 -23.9223 0 + vertex 44.1563 -23.9621 0 + vertex 43.8807 -23.7673 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.7898 -23.5063 0 + vertex 43.8807 -23.7673 0 + vertex 43.6239 -23.5069 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.2267 -23.1657 0 + vertex 43.6239 -23.5069 0 + vertex 43.3873 -23.2523 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 42.2267 -23.1657 0 + vertex 43.3873 -23.2523 0 + vertex 43.1493 -23.0437 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 42.5728 -22.9356 0 + vertex 43.1493 -23.0437 0 + vertex 42.9376 -22.9028 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 42.6968 -22.8729 0 + vertex 42.9376 -22.9028 0 + vertex 42.8503 -22.8644 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.6968 -22.8729 0 + vertex 42.8503 -22.8644 0 + vertex 42.7799 -22.851 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.9376 -22.9028 0 + vertex 42.6968 -22.8729 0 + vertex 42.5728 -22.9356 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.1493 -23.0437 0 + vertex 42.5728 -22.9356 0 + vertex 42.2267 -23.1657 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.6239 -23.5069 0 + vertex 42.2267 -23.1657 0 + vertex 41.7898 -23.5063 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 43.8807 -23.7673 0 + vertex 41.7898 -23.5063 0 + vertex 41.3103 -23.9223 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.1563 -23.9621 0 + vertex 41.3103 -23.9223 0 + vertex 40.922 -24.2835 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.1563 -23.9621 0 + vertex 40.922 -24.2835 0 + vertex 40.604 -24.6171 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.1563 -23.9621 0 + vertex 40.604 -24.6171 0 + vertex 40.3218 -24.9877 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.1563 -23.9621 0 + vertex 40.3218 -24.9877 0 + vertex 40.0406 -25.46 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.4468 -24.0937 0 + vertex 40.0406 -25.46 0 + vertex 39.7256 -26.0988 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 44.4468 -24.0937 0 + vertex 39.7256 -26.0988 0 + vertex 39.342 -26.9688 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.0576 -24.176 0 + vertex 39.342 -26.9688 0 + vertex 38.2305 -29.6614 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 38.0969 -36.5276 0 + vertex 45.3703 -24.1311 0 + vertex 38.2305 -29.6614 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 45.9909 -23.8802 0 + vertex 38.1248 -36.8464 0 + vertex 38.103 -37.2562 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.2914 -23.6786 0 + vertex 38.103 -37.2562 0 + vertex 38.0668 -37.4245 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 46.8534 -23.1343 0 + vertex 38.0668 -37.4245 0 + vertex 110 -110 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 38.0057 -37.5705 0 + vertex 110 -110 0 + vertex 38.0668 -37.4245 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 37.9137 -37.6957 0 + vertex 110 -110 0 + vertex 38.0057 -37.5705 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 37.7849 -37.8018 0 + vertex 110 -110 0 + vertex 37.9137 -37.6957 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 37.6132 -37.8903 0 + vertex 110 -110 0 + vertex 37.7849 -37.8018 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 37.3927 -37.9628 0 + vertex 110 -110 0 + vertex 37.6132 -37.8903 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 37.1174 -38.0208 0 + vertex 110 -110 0 + vertex 37.3927 -37.9628 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 36.7812 -38.066 0 + vertex 110 -110 0 + vertex 37.1174 -38.0208 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.9024 -38.1241 0 + vertex 110 -110 0 + vertex 36.7812 -38.066 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 34.7085 -38.1497 0 + vertex 110 -110 0 + vertex 35.9024 -38.1241 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 33.1514 -38.1555 0 + vertex 110 -110 0 + vertex 34.7085 -38.1497 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.1824 -38.1409 0 + vertex 110 -110 0 + vertex 33.1514 -38.1555 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3202 -38.5182 0 + vertex 31.1824 -38.1409 0 + vertex 29.8192 -38.0948 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3202 -38.5182 0 + vertex 29.8192 -38.0948 0 + vertex 29.3448 -38.0588 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.8717 -38.4255 0 + vertex 29.3448 -38.0588 0 + vertex 28.9979 -38.0135 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.4197 -38.2833 0 + vertex 28.9979 -38.0135 0 + vertex 28.7706 -37.9584 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.6041 -37.8201 0 + vertex 28.7706 -37.9584 0 + vertex 28.6548 -37.8931 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.4965 -36.9693 0 + vertex 26.4377 -35.4824 0 + vertex 28.4495 -37.1014 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.0012 -35.834 0 + vertex 28.4495 -37.1014 0 + vertex 26.4377 -35.4824 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.4495 -37.1014 0 + vertex 26.0012 -35.834 0 + vertex 28.4243 -37.2355 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.4243 -37.2355 0 + vertex 26.0012 -35.834 0 + vertex 28.4219 -37.3704 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.5601 -36.1579 0 + vertex 28.4219 -37.3704 0 + vertex 26.0012 -35.834 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.4219 -37.3704 0 + vertex 25.5601 -36.1579 0 + vertex 28.443 -37.5048 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.1006 -36.4644 0 + vertex 28.443 -37.5048 0 + vertex 25.5601 -36.1579 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.443 -37.5048 0 + vertex 25.1006 -36.4644 0 + vertex 28.4883 -37.6376 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.6091 -36.7642 0 + vertex 28.4883 -37.6376 0 + vertex 25.1006 -36.4644 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.4883 -37.6376 0 + vertex 24.6091 -36.7642 0 + vertex 28.5587 -37.7674 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.0719 -37.0678 0 + vertex 28.5587 -37.7674 0 + vertex 24.6091 -36.7642 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.5587 -37.7674 0 + vertex 24.0719 -37.0678 0 + vertex 28.6548 -37.8931 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.2902 -37.4839 0 + vertex 28.6548 -37.8931 0 + vertex 24.0719 -37.0678 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.6041 -37.8201 0 + vertex 28.6548 -37.8931 0 + vertex 23.2902 -37.4839 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.7706 -37.9584 0 + vertex 22.6041 -37.8201 0 + vertex 21.9889 -38.084 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.7706 -37.9584 0 + vertex 21.9889 -38.084 0 + vertex 21.4197 -38.2833 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.9979 -38.0135 0 + vertex 21.4197 -38.2833 0 + vertex 20.8717 -38.4255 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.3448 -38.0588 0 + vertex 20.8717 -38.4255 0 + vertex 20.3202 -38.5182 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.1824 -38.1409 0 + vertex 20.3202 -38.5182 0 + vertex 110 -110 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.7403 -38.5689 0 + vertex 110 -110 0 + vertex 20.3202 -38.5182 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.1073 -38.5852 0 + vertex 110 -110 0 + vertex 19.7403 -38.5689 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4669 -38.5591 0 + vertex 110 -110 0 + vertex 19.1073 -38.5852 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.34756 -38.4712 0 + vertex 18.4669 -38.5591 0 + vertex 18.1792 -38.5233 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.55983 -38.4413 0 + vertex 18.1792 -38.5233 0 + vertex 17.9062 -38.4707 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.81563 -38.3852 0 + vertex 17.9062 -38.4707 0 + vertex 17.6424 -38.4 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.47346 -38.1927 0 + vertex 17.6424 -38.4 0 + vertex 17.3825 -38.3101 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.35232 -37.8908 0 + vertex 17.3825 -38.3101 0 + vertex 17.1211 -38.1997 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.35232 -37.8908 0 + vertex 17.1211 -38.1997 0 + vertex 16.8529 -38.0675 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.2137 -37.0171 0 + vertex 16.8529 -38.0675 0 + vertex 16.342 -37.7658 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.5307 -36.9119 0 + vertex 16.342 -37.7658 0 + vertex 16.1153 -37.6039 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.8056 -32.2631 0 + vertex 11.5005 -31.4602 0 + vertex 14.73 -32.8205 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.1661 -32.3709 0 + vertex 14.73 -32.8205 0 + vertex 11.5005 -31.4602 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2214 -34.9805 0 + vertex 14.6774 -34.4466 0 + vertex 14.6656 -33.913 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.2214 -34.9805 0 + vertex 14.7369 -35.0944 0 + vertex 14.6774 -34.4466 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 12.2239 -35.4151 0 + vertex 14.7369 -35.0944 0 + vertex 12.2468 -35.1875 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.7369 -35.0944 0 + vertex 12.2239 -35.4151 0 + vertex 14.8496 -35.6738 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.1496 -35.6584 0 + vertex 14.8496 -35.6738 0 + vertex 12.2239 -35.4151 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.8496 -35.6738 0 + vertex 12.1496 -35.6584 0 + vertex 14.927 -35.9398 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.0956 -35.7642 0 + vertex 14.927 -35.9398 0 + vertex 12.1496 -35.6584 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 14.927 -35.9398 0 + vertex 12.0956 -35.7642 0 + vertex 15.0191 -36.1911 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 12.0181 -35.8752 0 + vertex 15.0191 -36.1911 0 + vertex 12.0956 -35.7642 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.0191 -36.1911 0 + vertex 12.0181 -35.8752 0 + vertex 15.1264 -36.4284 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.8034 -36.1064 0 + vertex 15.1264 -36.4284 0 + vertex 12.0181 -35.8752 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.1264 -36.4284 0 + vertex 11.8034 -36.1064 0 + vertex 15.2493 -36.6526 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.2493 -36.6526 0 + vertex 11.8034 -36.1064 0 + vertex 15.3884 -36.8644 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.5264 -36.339 0 + vertex 15.3884 -36.8644 0 + vertex 11.8034 -36.1064 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.3884 -36.8644 0 + vertex 11.5264 -36.339 0 + vertex 15.544 -37.0647 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 11.208 -36.5595 0 + vertex 15.544 -37.0647 0 + vertex 11.5264 -36.339 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.544 -37.0647 0 + vertex 11.208 -36.5595 0 + vertex 15.7167 -37.2541 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.8691 -36.7549 0 + vertex 15.7167 -37.2541 0 + vertex 11.208 -36.5595 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.7167 -37.2541 0 + vertex 10.8691 -36.7549 0 + vertex 15.907 -37.4336 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 15.907 -37.4336 0 + vertex 10.8691 -36.7549 0 + vertex 16.1153 -37.6039 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 10.5307 -36.9119 0 + vertex 16.1153 -37.6039 0 + vertex 10.8691 -36.7549 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.342 -37.7658 0 + vertex 10.5307 -36.9119 0 + vertex 10.2137 -37.0171 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.8529 -38.0675 0 + vertex 10.2137 -37.0171 0 + vertex 8.4835 -37.477 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.94379 -37.3156 0 + vertex 10.2137 -37.0171 0 + vertex 9.93892 -37.0575 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.37163 -37.1827 0 + vertex 9.93892 -37.0575 0 + vertex 9.71926 -37.0921 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.93892 -37.0575 0 + vertex 9.37163 -37.1827 0 + vertex 8.94379 -37.3156 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.2137 -37.0171 0 + vertex 8.94379 -37.3156 0 + vertex 8.4835 -37.477 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 16.8529 -38.0675 0 + vertex 8.4835 -37.477 0 + vertex 7.35232 -37.8908 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.3825 -38.3101 0 + vertex 7.35232 -37.8908 0 + vertex 6.47346 -38.1927 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.6424 -38.4 0 + vertex 6.47346 -38.1927 0 + vertex 5.81563 -38.3852 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 17.9062 -38.4707 0 + vertex 5.81563 -38.3852 0 + vertex 5.55983 -38.4413 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.1792 -38.5233 0 + vertex 5.55983 -38.4413 0 + vertex 5.34756 -38.4712 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 18.4669 -38.5591 0 + vertex 5.34756 -38.4712 0 + vertex 110 -110 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.17491 -38.475 0 + vertex 110 -110 0 + vertex 5.34756 -38.4712 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 0.974434 -38.4962 0 + vertex 5.17491 -38.475 0 + vertex 5.03796 -38.4533 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.32439 -38.26 0 + vertex 5.03796 -38.4533 0 + vertex 4.93281 -38.4063 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.26446 -37.4494 0 + vertex 4.74716 -37.8041 0 + vertex 4.72035 -37.4346 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.65588 -37.2809 0 + vertex 4.72035 -37.4346 0 + vertex 4.69132 -37.3222 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.72035 -37.4346 0 + vertex 4.65588 -37.2809 0 + vertex 4.26446 -37.4494 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.74716 -37.8041 0 + vertex 4.26446 -37.4494 0 + vertex 4.76904 -38.117 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.45158 -37.8545 0 + vertex 4.76904 -38.117 0 + vertex 4.26446 -37.4494 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.76904 -38.117 0 + vertex 3.45158 -37.8545 0 + vertex 4.80226 -38.2378 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.80226 -38.2378 0 + vertex 3.45158 -37.8545 0 + vertex 4.85555 -38.3343 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.20396 -37.9704 0 + vertex 4.85555 -38.3343 0 + vertex 3.45158 -37.8545 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.85555 -38.3343 0 + vertex 3.20396 -37.9704 0 + vertex 4.93281 -38.4063 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.93102 -38.0768 0 + vertex 4.93281 -38.4063 0 + vertex 3.20396 -37.9704 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.32439 -38.26 0 + vertex 4.93281 -38.4063 0 + vertex 2.93102 -38.0768 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.03796 -38.4533 0 + vertex 2.32439 -38.26 0 + vertex 1.66207 -38.4009 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.03796 -38.4533 0 + vertex 1.66207 -38.4009 0 + vertex 0.974434 -38.4962 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.17491 -38.475 0 + vertex 0.974434 -38.4962 0 + vertex 0.291868 -38.543 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.17491 -38.475 0 + vertex 0.291868 -38.543 0 + vertex 110 -110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.355246 -38.538 0 + vertex 110 -110 0 + vertex 0.291868 -38.543 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -9.84865 -38.1451 0 + vertex -0.355246 -38.538 0 + vertex -0.936529 -38.478 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.657 -38.0883 0 + vertex -0.936529 -38.478 0 + vertex -1.19299 -38.4265 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.30871 -38.0303 0 + vertex -1.19299 -38.4265 0 + vertex -1.4216 -38.36 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.30871 -38.0303 0 + vertex -1.4216 -38.36 0 + vertex -1.69347 -38.2465 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -8.0676 -37.9462 0 + vertex -1.69347 -38.2465 0 + vertex -1.95525 -38.0993 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.4861 -31.0878 0 + vertex -6.39994 -29.738 0 + vertex -3.75417 -32.0301 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.75417 -32.0301 0 + vertex -6.39994 -29.738 0 + vertex -3.8527 -32.4651 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.70823 -32.8163 0 + vertex -3.8527 -32.4651 0 + vertex -6.39994 -29.738 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.8527 -32.4651 0 + vertex -7.70823 -32.8163 0 + vertex -3.92523 -32.8697 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.92523 -32.8697 0 + vertex -7.70823 -32.8163 0 + vertex -3.97004 -33.2395 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30266 -36.7536 0 + vertex -3.98536 -33.5697 0 + vertex -3.97004 -33.2395 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30266 -36.7536 0 + vertex -3.97277 -33.9877 0 + vertex -3.98536 -33.5697 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30266 -36.7536 0 + vertex -3.93569 -34.3989 0 + vertex -3.97277 -33.9877 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30266 -36.7536 0 + vertex -3.87516 -34.8013 0 + vertex -3.93569 -34.3989 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30266 -36.7536 0 + vertex -3.79219 -35.193 0 + vertex -3.87516 -34.8013 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30266 -36.7536 0 + vertex -3.68783 -35.5721 0 + vertex -3.79219 -35.193 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30266 -36.7536 0 + vertex -3.56309 -35.9367 0 + vertex -3.68783 -35.5721 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.56309 -35.9367 0 + vertex -7.29619 -36.8569 0 + vertex -3.41901 -36.2848 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.30695 -36.9638 0 + vertex -3.41901 -36.2848 0 + vertex -7.29619 -36.8569 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.41901 -36.2848 0 + vertex -7.30695 -36.9638 0 + vertex -3.25661 -36.6145 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.38017 -37.1883 0 + vertex -3.25661 -36.6145 0 + vertex -7.30695 -36.9638 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.25661 -36.6145 0 + vertex -7.38017 -37.1883 0 + vertex -3.07693 -36.924 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -3.07693 -36.924 0 + vertex -7.38017 -37.1883 0 + vertex -2.88099 -37.2112 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.52232 -37.4271 0 + vertex -2.88099 -37.2112 0 + vertex -7.38017 -37.1883 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.88099 -37.2112 0 + vertex -7.52232 -37.4271 0 + vertex -2.66982 -37.4742 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.73344 -37.6801 0 + vertex -2.66982 -37.4742 0 + vertex -7.52232 -37.4271 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.66982 -37.4742 0 + vertex -7.73344 -37.6801 0 + vertex -2.44446 -37.7112 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -7.8903 -37.8311 0 + vertex -2.44446 -37.7112 0 + vertex -7.73344 -37.6801 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.44446 -37.7112 0 + vertex -7.8903 -37.8311 0 + vertex -2.20592 -37.9202 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -2.20592 -37.9202 0 + vertex -7.8903 -37.8311 0 + vertex -1.95525 -38.0993 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -8.0676 -37.9462 0 + vertex -1.95525 -38.0993 0 + vertex -7.8903 -37.8311 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.69347 -38.2465 0 + vertex -8.0676 -37.9462 0 + vertex -8.30871 -38.0303 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -1.19299 -38.4265 0 + vertex -8.30871 -38.0303 0 + vertex -8.657 -38.0883 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.936529 -38.478 0 + vertex -8.657 -38.0883 0 + vertex -9.15585 -38.1249 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.936529 -38.478 0 + vertex -9.15585 -38.1249 0 + vertex -9.84865 -38.1451 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.355246 -38.538 0 + vertex -9.84865 -38.1451 0 + vertex -110 -110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -9.84865 -38.1451 0 + vertex -11.9896 -38.1555 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -11.9896 -38.1555 0 + vertex -14.1677 -38.1469 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -14.1677 -38.1469 0 + vertex -14.8486 -38.1282 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.0369 -38.1201 0 + vertex -14.8486 -38.1282 0 + vertex -15.316 -38.0928 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.5664 -38.0841 0 + vertex -15.316 -38.0928 0 + vertex -15.614 -38.0352 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.2437 -38.0218 0 + vertex -15.614 -38.0352 0 + vertex -15.7132 -37.9965 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.9096 -37.1689 0 + vertex -16.3508 -37.1428 0 + vertex -15.9511 -37.293 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.9511 -37.293 0 + vertex -16.3508 -37.1428 0 + vertex -15.9675 -37.4163 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.5023 -37.3844 0 + vertex -15.9675 -37.4163 0 + vertex -16.3508 -37.1428 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.9675 -37.4163 0 + vertex -16.5023 -37.3844 0 + vertex -15.9604 -37.5428 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.9604 -37.5428 0 + vertex -16.5023 -37.3844 0 + vertex -15.9316 -37.6764 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.6872 -37.6188 0 + vertex -15.9316 -37.6764 0 + vertex -16.5023 -37.3844 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.9316 -37.6764 0 + vertex -16.6872 -37.6188 0 + vertex -15.8777 -37.8324 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -16.8516 -37.795 0 + vertex -15.8777 -37.8324 0 + vertex -16.6872 -37.6188 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.8777 -37.8324 0 + vertex -16.8516 -37.795 0 + vertex -15.8396 -37.8957 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.8396 -37.8957 0 + vertex -16.8516 -37.795 0 + vertex -15.7865 -37.9502 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.0213 -37.9274 0 + vertex -15.7865 -37.9502 0 + vertex -16.8516 -37.795 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.7865 -37.9502 0 + vertex -17.0213 -37.9274 0 + vertex -15.7132 -37.9965 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.2437 -38.0218 0 + vertex -15.7132 -37.9965 0 + vertex -17.0213 -37.9274 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.614 -38.0352 0 + vertex -17.2437 -38.0218 0 + vertex -17.5664 -38.0841 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.316 -38.0928 0 + vertex -17.5664 -38.0841 0 + vertex -18.0369 -38.1201 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.8486 -38.1282 0 + vertex -18.0369 -38.1201 0 + vertex -110 -110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -18.0369 -38.1201 0 + vertex -18.7028 -38.1359 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -18.7028 -38.1359 0 + vertex -20.8109 -38.1301 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -20.8109 -38.1301 0 + vertex -23.4866 -38.0828 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2718 -38.1638 0 + vertex -23.4866 -38.0828 0 + vertex -24.3782 -38.0456 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2718 -38.1638 0 + vertex -24.3782 -38.0456 0 + vertex -24.7978 -38.0047 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2718 -38.1638 0 + vertex -24.7978 -38.0047 0 + vertex -24.9442 -37.9384 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -27.2673 -36.8782 0 + vertex -25.1078 -37.2448 0 + vertex -26.6839 -36.0968 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.1078 -37.2448 0 + vertex -27.2673 -36.8782 0 + vertex -25.1419 -37.4158 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.1419 -37.4158 0 + vertex -27.2673 -36.8782 0 + vertex -25.1453 -37.5754 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.1453 -37.5754 0 + vertex -27.2673 -36.8782 0 + vertex -25.1152 -37.719 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -28.2718 -38.1638 0 + vertex -25.1152 -37.719 0 + vertex -27.2673 -36.8782 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.1152 -37.719 0 + vertex -28.2718 -38.1638 0 + vertex -25.0491 -37.8416 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -25.0491 -37.8416 0 + vertex -28.2718 -38.1638 0 + vertex -24.9442 -37.9384 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -23.4866 -38.0828 0 + vertex -28.2718 -38.1638 0 + vertex -110 -110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -28.2718 -38.1638 0 + vertex -37.6203 -38.1325 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -37.6203 -38.1325 0 + vertex -41.2883 -38.1087 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -41.2883 -38.1087 0 + vertex -44.3648 -38.0673 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -44.3648 -38.0673 0 + vertex -46.5272 -38.014 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -46.5272 -38.014 0 + vertex -47.1648 -37.9848 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -47.1648 -37.9848 0 + vertex -47.4529 -37.9547 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -110 -110 0 + vertex -47.4529 -37.9547 0 + vertex -47.6522 -37.8745 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.984 -37.1977 0 + vertex -110 -110 0 + vertex -47.9993 -37.3583 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -0.355246 -38.538 0 + vertex -110 -110 0 + vertex 110 -110 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.8044 -37.7712 0 + vertex -110 -110 0 + vertex -47.6522 -37.8745 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.9115 -37.6485 0 + vertex -110 -110 0 + vertex -47.8044 -37.7712 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.9758 -37.5097 0 + vertex -110 -110 0 + vertex -47.9115 -37.6485 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -47.9993 -37.3583 0 + vertex -110 -110 0 + vertex -47.9758 -37.5097 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.9547 -20.2657 0 + vertex 42.1212 -20.0931 0 + vertex 42.3117 -20.6924 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 42.0356 -20.3507 0 + vertex 42.3117 -20.6924 0 + vertex 42.1212 -20.0931 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 41.9515 -20.5727 0 + vertex 42.3117 -20.6924 0 + vertex 42.0356 -20.3507 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.3117 -20.6924 0 + vertex 41.9515 -20.5727 0 + vertex 42.1116 -20.8028 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 41.9099 -20.7296 0 + vertex 42.1116 -20.8028 0 + vertex 41.9515 -20.5727 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 42.1116 -20.8028 0 + vertex 41.9099 -20.7296 0 + vertex 41.9827 -20.8453 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 41.9179 -20.8207 0 + vertex 41.9827 -20.8453 0 + vertex 41.9099 -20.7296 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 41.9827 -20.8453 0 + vertex 41.9179 -20.8207 0 + vertex 41.9427 -20.8413 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.1157 -22.9178 0 + vertex 36.3671 -23.1585 0 + vertex 36.3539 -23.0402 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.1157 -22.9178 0 + vertex 36.3539 -23.0402 0 + vertex 36.3224 -22.9562 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.9442 -22.9618 0 + vertex 36.3671 -23.1585 0 + vertex 36.1157 -22.9178 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.2034 -22.8943 0 + vertex 36.3224 -22.9562 0 + vertex 36.2723 -22.9073 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.3224 -22.9562 0 + vertex 36.2034 -22.8943 0 + vertex 36.1157 -22.9178 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.3671 -23.1585 0 + vertex 35.9442 -22.9618 0 + vertex 36.362 -23.3104 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.362 -23.3104 0 + vertex 35.9442 -22.9618 0 + vertex 36.2977 -23.7121 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 35.7166 -22.9783 0 + vertex 36.2977 -23.7121 0 + vertex 35.9442 -22.9618 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.4626 -22.9668 0 + vertex 36.2977 -23.7121 0 + vertex 35.7166 -22.9783 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.2977 -23.7121 0 + vertex 35.4626 -22.9668 0 + vertex 36.1622 -24.2394 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.2118 -22.9271 0 + vertex 36.1622 -24.2394 0 + vertex 35.4626 -22.9668 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 36.1622 -24.2394 0 + vertex 35.2118 -22.9271 0 + vertex 35.957 -24.8864 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.9345 -22.8399 0 + vertex 35.957 -24.8864 0 + vertex 35.2118 -22.9271 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.957 -24.8864 0 + vertex 34.9345 -22.8399 0 + vertex 35.6833 -25.6471 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.8338 -22.7839 0 + vertex 35.6833 -25.6471 0 + vertex 34.9345 -22.8399 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.7558 -22.7166 0 + vertex 35.6833 -25.6471 0 + vertex 34.8338 -22.7839 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 35.6833 -25.6471 0 + vertex 34.7558 -22.7166 0 + vertex 35.3422 -26.5156 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.6986 -22.636 0 + vertex 35.3422 -26.5156 0 + vertex 34.7558 -22.7166 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.8561 -30.1753 0 + vertex 34.6986 -22.636 0 + vertex 34.6602 -22.54 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.8561 -30.1753 0 + vertex 34.6602 -22.54 0 + vertex 34.6385 -22.4262 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.6986 -22.636 0 + vertex 33.8561 -30.1753 0 + vertex 35.3422 -26.5156 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.8561 -30.1753 0 + vertex 34.6385 -22.4262 0 + vertex 34.6318 -22.2927 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.6318 -22.2927 0 + vertex 32.0372 -23.3848 0 + vertex 31.9625 -24.0535 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.6318 -22.2927 0 + vertex 31.9625 -24.0535 0 + vertex 31.8392 -24.8188 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 34.6318 -22.2927 0 + vertex 31.8392 -24.8188 0 + vertex 31.6784 -25.7224 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.8561 -30.1753 0 + vertex 31.6784 -25.7224 0 + vertex 31.6003 -26.0834 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 31.3939 -26.6463 0 + vertex 33.8561 -30.1753 0 + vertex 31.5092 -26.3899 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 31.047 -27.0266 0 + vertex 33.8561 -30.1753 0 + vertex 31.2435 -26.857 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 30.7934 -27.1595 0 + vertex 33.8561 -30.1753 0 + vertex 31.047 -27.0266 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 30.2299 -31.0524 0 + vertex 33.1139 -32.0001 0 + vertex 30.2187 -30.9454 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 30.1034 -31.4773 0 + vertex 33.1139 -32.0001 0 + vertex 30.1726 -31.3179 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.1139 -32.0001 0 + vertex 30.1034 -31.4773 0 + vertex 32.5373 -33.371 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.8827 -31.8517 0 + vertex 32.5373 -33.371 0 + vertex 30.1034 -31.4773 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 30.2146 -31.1764 0 + vertex 33.1139 -32.0001 0 + vertex 30.2299 -31.0524 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.5499 -32.3032 0 + vertex 32.5373 -33.371 0 + vertex 29.8827 -31.8517 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 30.2187 -30.9454 0 + vertex 33.8561 -30.1753 0 + vertex 30.1812 -30.855 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 32.5373 -33.371 0 + vertex 29.5499 -32.3032 0 + vertex 32.0766 -34.3595 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.1179 -30.7807 0 + vertex 33.8561 -30.1753 0 + vertex 30.7934 -27.1595 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.1028 -32.8352 0 + vertex 32.0766 -34.3595 0 + vertex 29.5499 -32.3032 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.9008 -30.6099 0 + vertex 30.7934 -27.1595 0 + vertex 30.4717 -27.2602 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 32.0766 -34.3595 0 + vertex 29.1028 -32.8352 0 + vertex 31.8743 -34.7329 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.8743 -34.7329 0 + vertex 29.1028 -32.8352 0 + vertex 31.6824 -35.0376 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 30.1726 -31.3179 0 + vertex 33.1139 -32.0001 0 + vertex 30.2146 -31.1764 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.8561 -30.1753 0 + vertex 30.2187 -30.9454 0 + vertex 33.1139 -32.0001 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 33.8561 -30.1753 0 + vertex 30.1179 -30.7807 0 + vertex 30.1812 -30.855 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.7002 -30.4984 0 + vertex 30.4717 -27.2602 0 + vertex 30.0709 -27.3331 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.7934 -27.1595 0 + vertex 29.9008 -30.6099 0 + vertex 30.1179 -30.7807 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.4717 -27.2602 0 + vertex 29.7002 -30.4984 0 + vertex 29.9008 -30.6099 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 29.58 -27.3827 0 + vertex 29.7002 -30.4984 0 + vertex 30.0709 -27.3331 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.58 -27.3827 0 + vertex 29.5048 -30.449 0 + vertex 29.7002 -30.4984 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.988 -27.4135 0 + vertex 29.5048 -30.449 0 + vertex 29.58 -27.3827 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.5048 -30.449 0 + vertex 28.988 -27.4135 0 + vertex 29.3033 -30.4642 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.3033 -30.4642 0 + vertex 28.988 -27.4135 0 + vertex 29.0845 -30.5466 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.4568 -27.4364 0 + vertex 29.0845 -30.5466 0 + vertex 28.988 -27.4135 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.0845 -30.5466 0 + vertex 27.4568 -27.4364 0 + vertex 28.8369 -30.6989 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.8369 -30.6989 0 + vertex 27.4568 -27.4364 0 + vertex 28.5495 -30.9236 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.5495 -30.9236 0 + vertex 27.4568 -27.4364 0 + vertex 28.2108 -31.2235 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.3891 -27.4375 0 + vertex 28.2108 -31.2235 0 + vertex 27.4568 -27.4364 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.2108 -31.2235 0 + vertex 25.3891 -27.4375 0 + vertex 27.276 -32.055 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.276 -32.055 0 + vertex 25.3891 -27.4375 0 + vertex 26.4309 -32.7448 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.4309 -32.7448 0 + vertex 25.3891 -27.4375 0 + vertex 25.6577 -33.3022 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3891 -27.4375 0 + vertex 25.2926 -33.5342 0 + vertex 25.6577 -33.3022 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.3891 -27.4375 0 + vertex 24.9388 -33.7368 0 + vertex 25.2926 -33.5342 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.5256 -29.5327 0 + vertex 24.9388 -33.7368 0 + vertex 25.3891 -27.4375 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.9388 -33.7368 0 + vertex 19.5256 -29.5327 0 + vertex 24.5942 -33.911 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.3985 -30.306 0 + vertex 24.5942 -33.911 0 + vertex 19.5256 -29.5327 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.5942 -33.911 0 + vertex 19.3985 -30.306 0 + vertex 24.2566 -34.0582 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.9237 -34.1793 0 + vertex 19.3985 -30.306 0 + vertex 23.5933 -34.2758 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.5933 -34.2758 0 + vertex 19.3985 -30.306 0 + vertex 23.2634 -34.3487 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.3204 -31.0557 0 + vertex 23.2634 -34.3487 0 + vertex 19.3985 -30.306 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.2634 -34.3487 0 + vertex 19.3204 -31.0557 0 + vertex 22.9315 -34.3992 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.9315 -34.3992 0 + vertex 19.3204 -31.0557 0 + vertex 22.5956 -34.4285 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.5956 -34.4285 0 + vertex 19.3204 -31.0557 0 + vertex 22.2534 -34.4379 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 22.2534 -34.4379 0 + vertex 19.3204 -31.0557 0 + vertex 21.8355 -34.4151 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 19.2935 -31.7496 0 + vertex 21.8355 -34.4151 0 + vertex 19.3204 -31.0557 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.8355 -34.4151 0 + vertex 19.2935 -31.7496 0 + vertex 21.43 -34.349 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.9171 -28.0436 0 + vertex 25.3891 -27.4375 0 + vertex 20.1247 -27.4424 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.6992 -28.7679 0 + vertex 25.3891 -27.4375 0 + vertex 19.9171 -28.0436 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5256 -29.5327 0 + vertex 25.3891 -27.4375 0 + vertex 19.6992 -28.7679 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.2566 -34.0582 0 + vertex 19.3985 -30.306 0 + vertex 23.9237 -34.1793 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.43 -34.349 0 + vertex 19.2935 -31.7496 0 + vertex 21.0421 -34.2419 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.0421 -34.2419 0 + vertex 19.2935 -31.7496 0 + vertex 20.6768 -34.0963 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.6768 -34.0963 0 + vertex 19.2935 -31.7496 0 + vertex 20.3392 -33.9144 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 19.3203 -32.3556 0 + vertex 20.3392 -33.9144 0 + vertex 19.2935 -31.7496 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.3392 -33.9144 0 + vertex 19.3203 -32.3556 0 + vertex 20.0345 -33.6987 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 20.0345 -33.6987 0 + vertex 19.3203 -32.3556 0 + vertex 19.7677 -33.4516 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 19.3545 -32.6156 0 + vertex 19.7677 -33.4516 0 + vertex 19.3203 -32.3556 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 19.403 -32.8415 0 + vertex 19.7677 -33.4516 0 + vertex 19.3545 -32.6156 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.7677 -33.4516 0 + vertex 19.403 -32.8415 0 + vertex 19.5439 -33.1754 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 19.5439 -33.1754 0 + vertex 19.403 -32.8415 0 + vertex 19.466 -33.0295 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.6824 -35.0376 0 + vertex 29.1028 -32.8352 0 + vertex 31.4948 -35.2825 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.4948 -35.2825 0 + vertex 29.1028 -32.8352 0 + vertex 31.3052 -35.4767 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.3052 -35.4767 0 + vertex 29.1028 -32.8352 0 + vertex 31.1075 -35.6291 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 31.1075 -35.6291 0 + vertex 29.1028 -32.8352 0 + vertex 30.8955 -35.7486 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.8955 -35.7486 0 + vertex 29.1028 -32.8352 0 + vertex 30.6629 -35.8443 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.6629 -35.8443 0 + vertex 29.1028 -32.8352 0 + vertex 30.4037 -35.9251 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 28.539 -33.4515 0 + vertex 30.4037 -35.9251 0 + vertex 29.1028 -32.8352 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 30.4037 -35.9251 0 + vertex 28.539 -33.4515 0 + vertex 29.7804 -36.0779 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.7804 -36.0779 0 + vertex 28.539 -33.4515 0 + vertex 29.5705 -36.1356 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.856 -34.1555 0 + vertex 29.5705 -36.1356 0 + vertex 28.539 -33.4515 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.5705 -36.1356 0 + vertex 27.856 -34.1555 0 + vertex 29.3757 -36.2065 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.3757 -36.2065 0 + vertex 27.856 -34.1555 0 + vertex 29.1966 -36.2895 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.1966 -36.2895 0 + vertex 27.856 -34.1555 0 + vertex 29.034 -36.3831 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 27.3514 -34.6537 0 + vertex 29.034 -36.3831 0 + vertex 27.856 -34.1555 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 29.034 -36.3831 0 + vertex 27.3514 -34.6537 0 + vertex 28.8888 -36.4863 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.8888 -36.4863 0 + vertex 27.3514 -34.6537 0 + vertex 28.7617 -36.5978 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.8832 -35.0925 0 + vertex 28.7617 -36.5978 0 + vertex 27.3514 -34.6537 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.7617 -36.5978 0 + vertex 26.8832 -35.0925 0 + vertex 28.6534 -36.7163 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.6534 -36.7163 0 + vertex 26.8832 -35.0925 0 + vertex 28.5648 -36.8405 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 28.5648 -36.8405 0 + vertex 26.4377 -35.4824 0 + vertex 28.4965 -36.9693 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 26.4377 -35.4824 0 + vertex 28.5648 -36.8405 0 + vertex 26.8832 -35.0925 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.5394 24.4322 0 + vertex -10.5711 24.4 0 + vertex -10.5349 24.4109 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.6591 24.5009 0 + vertex -10.5711 24.4 0 + vertex -10.5394 24.4322 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -10.9077 24.5958 0 + vertex -10.5711 24.4 0 + vertex -10.6591 24.5009 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.2625 24.7069 0 + vertex -10.5711 24.4 0 + vertex -10.9077 24.5958 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1612 23.8467 0 + vertex -11.2625 24.7069 0 + vertex -11.7825 24.8213 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1612 23.8467 0 + vertex -11.7825 24.8213 0 + vertex -12.4277 24.907 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1612 23.8467 0 + vertex -12.4277 24.907 0 + vertex -13.1566 24.9634 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -14.1612 23.8467 0 + vertex -13.1566 24.9634 0 + vertex -13.9275 24.99 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -11.2625 24.7069 0 + vertex -14.1612 23.8467 0 + vertex -10.5711 24.4 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -14.6988 24.986 0 + vertex -14.1612 23.8467 0 + vertex -13.9275 24.99 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -15.4289 24.9511 0 + vertex -14.1612 23.8467 0 + vertex -14.6988 24.986 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.0412 23.3999 0 + vertex -15.4289 24.9511 0 + vertex -16.0762 24.8844 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -17.0412 23.3999 0 + vertex -16.0762 24.8844 0 + vertex -16.599 24.7853 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -15.4289 24.9511 0 + vertex -17.0412 23.3999 0 + vertex -14.1612 23.8467 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -17.1707 24.6702 0 + vertex -17.0412 23.3999 0 + vertex -16.599 24.7853 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -18.0818 24.5233 0 + vertex -17.0412 23.3999 0 + vertex -17.1707 24.6702 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -19.3158 23.0662 0 + vertex -18.0818 24.5233 0 + vertex -19.207 24.3637 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -18.0818 24.5233 0 + vertex -19.3158 23.0662 0 + vertex -17.0412 23.3999 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -20.4207 24.2101 0 + vertex -19.3158 23.0662 0 + vertex -19.207 24.3637 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.4207 24.2101 0 + vertex -20.7318 22.8633 0 + vertex -19.3158 23.0662 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.4207 24.2101 0 + vertex -21.5474 22.7309 0 + vertex -20.7318 22.8633 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex -22.0315 22.8497 0 + vertex -21.5474 22.7309 0 + vertex -20.4207 24.2101 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5474 22.7309 0 + vertex -21.755 22.7463 0 + vertex -21.6404 22.7266 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -21.5474 22.7309 0 + vertex -22.0315 22.8497 0 + vertex -21.755 22.7463 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.4207 24.2101 0 + vertex -22.3422 23.0246 0 + vertex -22.0315 22.8497 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex -20.4207 24.2101 0 + vertex -22.6524 23.2546 0 + vertex -22.3422 23.0246 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex -22.6524 23.2546 0 + vertex -20.4207 24.2101 0 + vertex -23.3692 23.8604 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.12348 -21.5274 0 + vertex 10.1807 -23.3758 0 + vertex 10.149 -22.9513 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.50498 -21.5121 0 + vertex 10.149 -22.9513 0 + vertex 10.1103 -22.7594 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.71946 -21.5983 0 + vertex 10.1807 -23.3758 0 + vertex 8.12348 -21.5274 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.85925 -21.5524 0 + vertex 10.1103 -22.7594 0 + vertex 10.0571 -22.5812 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.85925 -21.5524 0 + vertex 10.0571 -22.5812 0 + vertex 9.99008 -22.4166 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.1807 -23.3758 0 + vertex 7.71946 -21.5983 0 + vertex 10.1598 -23.7848 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.18157 -21.6481 0 + vertex 9.99008 -22.4166 0 + vertex 9.90973 -22.2656 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.18157 -21.6481 0 + vertex 9.90973 -22.2656 0 + vertex 9.81668 -22.1284 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 7.29763 -21.7251 0 + vertex 10.1598 -23.7848 0 + vertex 7.71946 -21.5983 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.18157 -21.6481 0 + vertex 9.81668 -22.1284 0 + vertex 9.71152 -22.0048 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.18157 -21.6481 0 + vertex 9.71152 -22.0048 0 + vertex 9.59484 -21.895 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.18157 -21.6481 0 + vertex 9.59484 -21.895 0 + vertex 9.46723 -21.7989 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.1598 -23.7848 0 + vertex 7.29763 -21.7251 0 + vertex 10.0892 -24.2416 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.99008 -22.4166 0 + vertex 9.18157 -21.6481 0 + vertex 8.85925 -21.5524 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.8627 -21.9079 0 + vertex 10.0892 -24.2416 0 + vertex 7.29763 -21.7251 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.1103 -22.7594 0 + vertex 8.85925 -21.5524 0 + vertex 8.50498 -21.5121 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.149 -22.9513 0 + vertex 8.50498 -21.5121 0 + vertex 8.12348 -21.5274 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 10.0892 -24.2416 0 + vertex 6.8627 -21.9079 0 + vertex 9.95745 -24.7805 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 6.41939 -22.1469 0 + vertex 9.95745 -24.7805 0 + vertex 6.8627 -21.9079 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.97241 -22.4422 0 + vertex 9.95745 -24.7805 0 + vertex 6.41939 -22.1469 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.52647 -22.794 0 + vertex 9.75283 -25.4359 0 + vertex 5.97241 -22.4422 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.95745 -24.7805 0 + vertex 5.97241 -22.4422 0 + vertex 9.75283 -25.4359 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.75283 -25.4359 0 + vertex 5.52647 -22.794 0 + vertex 9.46376 -26.2422 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 5.08628 -23.2024 0 + vertex 9.46376 -26.2422 0 + vertex 5.52647 -22.794 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 4.45147 -23.8871 0 + vertex 9.46376 -26.2422 0 + vertex 5.08628 -23.2024 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.46376 -26.2422 0 + vertex 4.45147 -23.8871 0 + vertex 9.07864 -27.2338 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.85887 -24.6213 0 + vertex 9.07864 -27.2338 0 + vertex 4.45147 -23.8871 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 3.31148 -25.3951 0 + vertex 9.07864 -27.2338 0 + vertex 3.85887 -24.6213 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.07864 -27.2338 0 + vertex 3.31148 -25.3951 0 + vertex 7.97377 -29.9101 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.81229 -26.1986 0 + vertex 7.97377 -29.9101 0 + vertex 3.31148 -25.3951 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 2.36428 -27.0218 0 + vertex 7.97377 -29.9101 0 + vertex 2.81229 -26.1986 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.97046 -27.8549 0 + vertex 7.97377 -29.9101 0 + vertex 2.36428 -27.0218 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.97377 -29.9101 0 + vertex 1.97046 -27.8549 0 + vertex 7.44603 -31.1479 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.63381 -28.6878 0 + vertex 7.44603 -31.1479 0 + vertex 1.97046 -27.8549 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.35733 -29.5107 0 + vertex 7.44603 -31.1479 0 + vertex 1.63381 -28.6878 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.44603 -31.1479 0 + vertex 1.35733 -29.5107 0 + vertex 7.00854 -32.1311 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 1.144 -30.3137 0 + vertex 7.00854 -32.1311 0 + vertex 1.35733 -29.5107 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.00854 -32.1311 0 + vertex 1.144 -30.3137 0 + vertex 6.63949 -32.8952 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.99682 -31.0867 0 + vertex 6.63949 -32.8952 0 + vertex 1.144 -30.3137 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.63949 -32.8952 0 + vertex 0.99682 -31.0867 0 + vertex 6.31707 -33.4759 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.918778 -31.8199 0 + vertex 6.31707 -33.4759 0 + vertex 0.99682 -31.0867 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.31707 -33.4759 0 + vertex 0.918778 -31.8199 0 + vertex 6.01946 -33.9088 0 + endloop + endfacet + facet normal 0 -0 1 + outer loop + vertex 5.05744 -34.678 0 + vertex 6.01946 -33.9088 0 + vertex 0.918778 -31.8199 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.01946 -33.9088 0 + vertex 5.41146 -34.4742 0 + vertex 5.87315 -34.0811 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.87315 -34.0811 0 + vertex 5.41146 -34.4742 0 + vertex 5.72486 -34.2297 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 6.01946 -33.9088 0 + vertex 5.05744 -34.678 0 + vertex 5.41146 -34.4742 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 0.906618 -32.1685 0 + vertex 5.05744 -34.678 0 + vertex 0.918778 -31.8199 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 5.05744 -34.678 0 + vertex 0.906618 -32.1685 0 + vertex 4.59905 -34.8756 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 0.912865 -32.5034 0 + vertex 4.59905 -34.8756 0 + vertex 0.906618 -32.1685 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.59905 -34.8756 0 + vertex 0.912865 -32.5034 0 + vertex 4.12685 -35.011 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 0.937893 -32.8234 0 + vertex 4.12685 -35.011 0 + vertex 0.912865 -32.5034 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 4.12685 -35.011 0 + vertex 0.937893 -32.8234 0 + vertex 3.65273 -35.0844 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 0.982074 -33.1272 0 + vertex 3.65273 -35.0844 0 + vertex 0.937893 -32.8234 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.65273 -35.0844 0 + vertex 0.982074 -33.1272 0 + vertex 3.18861 -35.0966 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 1.04578 -33.4136 0 + vertex 3.18861 -35.0966 0 + vertex 0.982074 -33.1272 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 3.18861 -35.0966 0 + vertex 1.04578 -33.4136 0 + vertex 2.7464 -35.0478 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 1.1294 -33.6813 0 + vertex 2.7464 -35.0478 0 + vertex 1.04578 -33.4136 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.7464 -35.0478 0 + vertex 1.1294 -33.6813 0 + vertex 2.53723 -35.0007 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 1.23329 -33.9292 0 + vertex 2.53723 -35.0007 0 + vertex 1.1294 -33.6813 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.53723 -35.0007 0 + vertex 1.23329 -33.9292 0 + vertex 2.33801 -34.9386 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.33801 -34.9386 0 + vertex 1.23329 -33.9292 0 + vertex 2.15022 -34.8616 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 1.35782 -34.1559 0 + vertex 2.15022 -34.8616 0 + vertex 1.23329 -33.9292 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 2.15022 -34.8616 0 + vertex 1.35782 -34.1559 0 + vertex 1.97535 -34.7696 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.8149 -34.6627 0 + vertex 1.50339 -34.3603 0 + vertex 1.67035 -34.5411 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 1.97535 -34.7696 0 + vertex 1.50339 -34.3603 0 + vertex 1.8149 -34.6627 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 1.50339 -34.3603 0 + vertex 1.97535 -34.7696 0 + vertex 1.35782 -34.1559 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.77546 17.1908 0 + vertex 9.73318 16.1788 0 + vertex 10.4375 16.5104 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.57086 16.213 0 + vertex 9.77546 17.1908 0 + vertex 9.46246 17.4938 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.77546 17.1908 0 + vertex 9.19116 15.9452 0 + vertex 9.73318 16.1788 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.03973 17.0592 0 + vertex 9.46246 17.4938 0 + vertex 9.09841 17.8163 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.77546 17.1908 0 + vertex 8.57086 16.213 0 + vertex 9.19116 15.9452 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 8.76553 15.9481 0 + vertex 9.19116 15.9452 0 + vertex 8.57086 16.213 0 + endloop + endfacet + facet normal -0 -0 1 + outer loop + vertex 8.83337 15.875 0 + vertex 8.99158 15.8746 0 + vertex 8.76553 15.9481 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.99158 15.8746 0 + vertex 8.83337 15.875 0 + vertex 8.87708 15.8492 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.19116 15.9452 0 + vertex 8.76553 15.9481 0 + vertex 8.99158 15.8746 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.03973 17.0592 0 + vertex 9.09841 17.8163 0 + vertex 8.31493 18.4459 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 9.46246 17.4938 0 + vertex 8.03973 17.0592 0 + vertex 8.57086 16.213 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.49889 18.0241 0 + vertex 8.31493 18.4459 0 + vertex 7.9444 18.7161 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.29207 18.4374 0 + vertex 7.9444 18.7161 0 + vertex 7.62063 18.9319 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 8.31493 18.4459 0 + vertex 7.49889 18.0241 0 + vertex 8.03973 17.0592 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.16351 18.7442 0 + vertex 7.62063 18.9319 0 + vertex 7.36805 19.075 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.9444 18.7161 0 + vertex 7.29207 18.4374 0 + vertex 7.49889 18.0241 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 0 + vertex 7.36805 19.075 0 + vertex 7.21113 19.1268 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.62063 18.9319 0 + vertex 7.16351 18.7442 0 + vertex 7.29207 18.4374 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.1242 19.0144 0 + vertex 7.21113 19.1268 0 + vertex 7.15267 19.0966 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.36805 19.075 0 + vertex 7.1273 18.8927 0 + vertex 7.16351 18.7442 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 7.36805 19.075 0 + vertex 7.1242 19.0144 0 + vertex 7.1273 18.8927 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 25.8138 -21.8092 0 + vertex 27.4312 -23.3865 0 + vertex 27.4186 -23.1088 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.0922 -21.8157 0 + vertex 27.4186 -23.1088 0 + vertex 27.3785 -22.8574 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4312 -23.3865 0 + vertex 25.8138 -21.8092 0 + vertex 27.4161 -23.6904 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.3449 -21.8501 0 + vertex 27.3785 -22.8574 0 + vertex 27.3111 -22.6325 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 25.51 -21.8307 0 + vertex 27.4161 -23.6904 0 + vertex 25.8138 -21.8092 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.5717 -21.9122 0 + vertex 27.3111 -22.6325 0 + vertex 27.2166 -22.4344 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7726 -22.0019 0 + vertex 27.2166 -22.4344 0 + vertex 27.0952 -22.2631 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 26.7726 -22.0019 0 + vertex 27.0952 -22.2631 0 + vertex 26.9471 -22.1189 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.2166 -22.4344 0 + vertex 26.7726 -22.0019 0 + vertex 26.5717 -21.9122 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3111 -22.6325 0 + vertex 26.5717 -21.9122 0 + vertex 26.3449 -21.8501 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.3785 -22.8574 0 + vertex 26.3449 -21.8501 0 + vertex 26.0922 -21.8157 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4186 -23.1088 0 + vertex 26.0922 -21.8157 0 + vertex 25.8138 -21.8092 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.435 -24.8188 0 + vertex 27.4161 -23.6904 0 + vertex 25.51 -21.8307 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.4161 -23.6904 0 + vertex 24.435 -24.8188 0 + vertex 27.373 -24.0204 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.435 -24.8188 0 + vertex 25.51 -21.8307 0 + vertex 25.181 -21.8805 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.435 -24.8188 0 + vertex 25.181 -21.8805 0 + vertex 24.827 -21.9586 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.435 -24.8188 0 + vertex 24.827 -21.9586 0 + vertex 24.5319 -22.0421 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 27.373 -24.0204 0 + vertex 24.435 -24.8188 0 + vertex 27.2401 -24.8188 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.2621 -22.1397 0 + vertex 24.435 -24.8188 0 + vertex 24.5319 -22.0421 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 24.0091 -22.2567 0 + vertex 24.435 -24.8188 0 + vertex 24.2621 -22.1397 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.7644 -22.3987 0 + vertex 24.435 -24.8188 0 + vertex 24.0091 -22.2567 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.5194 -22.5712 0 + vertex 24.435 -24.8188 0 + vertex 23.7644 -22.3987 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 23.2657 -22.7795 0 + vertex 24.435 -24.8188 0 + vertex 23.5194 -22.5712 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 24.435 -24.8188 0 + vertex 23.2657 -22.7795 0 + vertex 23.3459 -24.8032 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.6979 -23.3258 0 + vertex 23.3459 -24.8032 0 + vertex 23.2657 -22.7795 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 22.2832 -23.7683 0 + vertex 23.3459 -24.8032 0 + vertex 22.6979 -23.3258 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 23.3459 -24.8032 0 + vertex 22.2832 -23.7683 0 + vertex 22.454 -24.761 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.9437 -24.1601 0 + vertex 22.454 -24.761 0 + vertex 22.2832 -23.7683 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.9437 -24.1601 0 + vertex 21.8514 -24.6984 0 + vertex 22.454 -24.761 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.7143 -24.4589 0 + vertex 21.8514 -24.6984 0 + vertex 21.9437 -24.1601 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.7143 -24.4589 0 + vertex 21.6873 -24.6616 0 + vertex 21.8514 -24.6984 0 + endloop + endfacet + facet normal -0 0 1 + outer loop + vertex 21.6518 -24.5601 0 + vertex 21.6873 -24.6616 0 + vertex 21.7143 -24.4589 0 + endloop + endfacet + facet normal 0 0 1 + outer loop + vertex 21.6873 -24.6616 0 + vertex 21.6518 -24.5601 0 + vertex 21.63 -24.6221 0 + endloop + endfacet + facet normal 1 -0 0 + outer loop + vertex 110 -110 0 + vertex 110 110 -3 + vertex 110 110 0 + endloop + endfacet + facet normal 1 0 0 + outer loop + vertex 110 110 -3 + vertex 110 -110 0 + vertex 110 -110 -3 + endloop + endfacet + facet normal 0 0 -1 + outer loop + vertex -110 -110 -3 + vertex 110 110 -3 + vertex 110 -110 -3 + endloop + endfacet + facet normal -0 0 -1 + outer loop + vertex 110 110 -3 + vertex -110 -110 -3 + vertex -110 110 -3 + endloop + endfacet + facet normal 0 -1 0 + outer loop + vertex -110 -110 -3 + vertex 110 -110 0 + vertex -110 -110 0 + endloop + endfacet + facet normal 0 -1 -0 + outer loop + vertex 110 -110 0 + vertex -110 -110 -3 + vertex 110 -110 -3 + endloop + endfacet + facet normal 0 1 -0 + outer loop + vertex 110 110 -3 + vertex -110 110 0 + vertex 110 110 0 + endloop + endfacet + facet normal 0 1 0 + outer loop + vertex -110 110 0 + vertex 110 110 -3 + vertex -110 110 -3 + endloop + endfacet +endsolid OpenSCAD_Model diff --git a/resources/meshes/moai.obj b/resources/meshes/moai.obj new file mode 100644 index 0000000000..f13f30d6f4 --- /dev/null +++ b/resources/meshes/moai.obj @@ -0,0 +1,32 @@ +# OBJ written from C:\Users\Flo\Desktop\Cura_FILES\moai.obj +mtllib moai.mtl +# Units millimeters + +g Mesh +v 65 -65 0 +v -65 -65 0 +v -65 65 0 +v 65 65 0 +v 65 -65 0 +v -65 -65 0 +v -65 65 0 +v 65 65 0 +v -65 65 18.8383 +v 65 65 18.8383 +vn 0 0 1 +vn 1 0 0 +vn -1 0 0 +vt 0.0975501 1 +vt 1 1 +vt 1 0.0977239 +vt 0.0975501 0.0977239 +vt 0.0186426 0.870052 +vt 0.0736426 0.870052 +vt 0.0186426 0.815052 +vt 0.0214764 0.912057 +vt 0.0764764 0.967057 +vt 0.0214764 0.967057 +usemtl red +f 1/1/1 4/2/1 3/3/1 2/4/1 +f 7/5/2 9/6/2 6/7/2 +f 5/8/3 10/9/3 8/10/3 diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 21e6eebf58..7d898eed2c 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -75,7 +75,8 @@ Item Action { id:toggleFullScreenAction - text: catalog.i18nc("@action:inmenu","Toggle Fu&ll Screen"); + shortcut: StandardKey.FullScreen; + text: catalog.i18nc("@action:inmenu","Toggle Full Screen"); iconName: "view-fullscreen"; } @@ -110,35 +111,35 @@ Item Action { id: view3DCameraAction; - text: catalog.i18nc("@action:inmenu menubar:view","&3D View"); + text: catalog.i18nc("@action:inmenu menubar:view","3D View"); onTriggered: UM.Controller.rotateView("3d", 0); } Action { id: viewFrontCameraAction; - text: catalog.i18nc("@action:inmenu menubar:view","&Front View"); + text: catalog.i18nc("@action:inmenu menubar:view","Front View"); onTriggered: UM.Controller.rotateView("home", 0); } Action { id: viewTopCameraAction; - text: catalog.i18nc("@action:inmenu menubar:view","&Top View"); + text: catalog.i18nc("@action:inmenu menubar:view","Top View"); onTriggered: UM.Controller.rotateView("y", 90); } Action { id: viewLeftSideCameraAction; - text: catalog.i18nc("@action:inmenu menubar:view","&Left Side View"); + text: catalog.i18nc("@action:inmenu menubar:view","Left Side View"); onTriggered: UM.Controller.rotateView("x", 90); } Action { id: viewRightSideCameraAction; - text: catalog.i18nc("@action:inmenu menubar:view","&Right Side View"); + text: catalog.i18nc("@action:inmenu menubar:view","Right Side View"); onTriggered: UM.Controller.rotateView("x", -90); } @@ -222,30 +223,20 @@ Item Action { id: aboutAction; - text: catalog.i18nc("@action:inmenu menubar:help","&About..."); + text: catalog.i18nc("@action:inmenu menubar:help","About..."); iconName: "help-about"; } Action { id: deleteSelectionAction; - text: catalog.i18ncp("@action:inmenu menubar:edit", "Delete &Selected Model", "Delete &Selected Models", UM.Selection.selectionCount); + text: catalog.i18ncp("@action:inmenu menubar:edit", "Delete Selected Model", "Delete Selected Models", UM.Selection.selectionCount); enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection; iconName: "edit-delete"; shortcut: StandardKey.Delete; onTriggered: CuraActions.deleteSelection(); } - Action //Also add backspace as the same function as delete because on Macintosh keyboards the button called "delete" is actually a backspace, and the user expects it to function as a delete. - { - id: backspaceSelectionAction - text: catalog.i18ncp("@action:inmenu menubar:edit", "Delete &Selected Model", "Delete &Selected Models", UM.Selection.selectionCount) - enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection - iconName: "edit-delete" - shortcut: StandardKey.Backspace - onTriggered: CuraActions.deleteSelection() - } - Action { id: centerSelectionAction; @@ -328,7 +319,7 @@ Item Action { id: selectAllAction; - text: catalog.i18nc("@action:inmenu menubar:edit","&Select All Models"); + text: catalog.i18nc("@action:inmenu menubar:edit","Select All Models"); enabled: UM.Controller.toolsEnabled; iconName: "edit-select-all"; shortcut: "Ctrl+A"; @@ -338,7 +329,7 @@ Item Action { id: deleteAllAction; - text: catalog.i18nc("@action:inmenu menubar:edit","&Clear Build Plate"); + text: catalog.i18nc("@action:inmenu menubar:edit","Clear Build Plate"); enabled: UM.Controller.toolsEnabled; iconName: "edit-delete"; shortcut: "Ctrl+D"; @@ -348,7 +339,7 @@ Item Action { id: reloadAllAction; - text: catalog.i18nc("@action:inmenu menubar:file","Re&load All Models"); + text: catalog.i18nc("@action:inmenu menubar:file","Reload All Models"); iconName: "document-revert"; shortcut: "F5" onTriggered: CuraApplication.reloadAll(); @@ -386,7 +377,7 @@ Item Action { id: resetAllAction; - text: catalog.i18nc("@action:inmenu menubar:edit","Reset All Model &Transformations"); + text: catalog.i18nc("@action:inmenu menubar:edit","Reset All Model Transformations"); onTriggered: CuraApplication.resetAll(); } diff --git a/resources/qml/AddMachineDialog.qml b/resources/qml/AddMachineDialog.qml index a635f1f8d1..2b49ce9c31 100644 --- a/resources/qml/AddMachineDialog.qml +++ b/resources/qml/AddMachineDialog.qml @@ -79,6 +79,7 @@ UM.Dialog section.property: "section" section.delegate: Button { + id: machineSectionButton text: section width: machineList.width style: ButtonStyle @@ -214,6 +215,7 @@ UM.Dialog Button { + id: addPrinterButton text: catalog.i18nc("@action:button", "Add Printer") anchors.bottom: parent.bottom anchors.right: parent.right diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 60f6e77ea9..07154a0729 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -104,11 +104,13 @@ UM.MainWindow title: catalog.i18nc("@title:menu menubar:toplevel","&File"); MenuItem { + id: newProjectMenu action: Cura.Actions.newProject; } MenuItem { + id: openMenu action: Cura.Actions.open; } @@ -120,7 +122,7 @@ UM.MainWindow text: catalog.i18nc("@title:menu menubar:file","&Save...") onTriggered: { - var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetype": "application/x-curaproject+xml" }; + var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml" }; if(UM.Preferences.getValue("cura/dialog_on_project_save")) { saveWorkspaceDialog.args = args; @@ -142,21 +144,26 @@ UM.MainWindow onTriggered: { var localDeviceId = "local_file"; - UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetype": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}); + UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}); } } MenuItem { + id: exportSelectionMenu text: catalog.i18nc("@action:inmenu menubar:file", "Export Selection..."); enabled: UM.Selection.hasSelection; iconName: "document-save-as"; - onTriggered: UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetype": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}); + onTriggered: UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}); } MenuSeparator { } - MenuItem { action: Cura.Actions.reloadAll; } + MenuItem + { + id: reloadAllMenu + action: Cura.Actions.reloadAll; + } MenuSeparator { } @@ -189,7 +196,7 @@ UM.MainWindow id: settingsMenu title: catalog.i18nc("@title:menu", "&Settings") - PrinterMenu { title: catalog.i18nc("@title:menu menubar:toplevel", "&Printer") } + PrinterMenu { title: catalog.i18nc("@title:menu menubar:settings", "&Printer") } Instantiator { @@ -233,7 +240,7 @@ UM.MainWindow // TODO Only show in dev mode. Remove check when feature ready BuildplateMenu { title: catalog.i18nc("@title:menu", "&Build plate"); visible: CuraSDKVersion == "dev" ? Cura.MachineManager.hasVariantBuildplates : false } - ProfileMenu { title: catalog.i18nc("@title:menu", "&Profile"); } + ProfileMenu { title: catalog.i18nc("@title:settings", "&Profile"); } MenuSeparator { } @@ -284,6 +291,7 @@ UM.MainWindow Menu { + id: preferencesMenu title: catalog.i18nc("@title:menu menubar:toplevel","P&references"); MenuItem { action: Cura.Actions.preferences; } @@ -291,7 +299,7 @@ UM.MainWindow Menu { - //: Help menu + id: helpMenu title: catalog.i18nc("@title:menu menubar:toplevel","&Help"); MenuItem { action: Cura.Actions.showProfileFolder; } @@ -306,7 +314,7 @@ UM.MainWindow { id: machineExtruderCount - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_extruder_count" watchedProperties: [ "value" ] storeIndex: 0 @@ -541,7 +549,7 @@ UM.MainWindow insertPage(2, catalog.i18nc("@title:tab", "Printers"), Qt.resolvedUrl("Preferences/MachinesPage.qml")); - insertPage(3, catalog.i18nc("@title:tab", "Materials"), Qt.resolvedUrl("Preferences/MaterialsPage.qml")); + insertPage(3, catalog.i18nc("@title:tab", "Materials"), Qt.resolvedUrl("Preferences/Materials/MaterialsPage.qml")); insertPage(4, catalog.i18nc("@title:tab", "Profiles"), Qt.resolvedUrl("Preferences/ProfilesPage.qml")); @@ -1054,7 +1062,7 @@ UM.MainWindow { restart(); } - else if(Cura.MachineManager.activeMachineId == null || Cura.MachineManager.activeMachineId == "") + else if(Cura.MachineManager.activeMachine == null) { addMachineDialog.open(); } diff --git a/resources/qml/JobSpecs.qml b/resources/qml/JobSpecs.qml index 20ec8ce289..31ca84d66e 100644 --- a/resources/qml/JobSpecs.qml +++ b/resources/qml/JobSpecs.qml @@ -81,7 +81,7 @@ Item { text: PrintInformation.jobName horizontalAlignment: TextInput.AlignRight onEditingFinished: { - var new_name = text == "" ? catalog.i18nc("@text Print job name", "unnamed") : text; + var new_name = text == "" ? catalog.i18nc("@text Print job name", "Untitled") : text; PrintInformation.setJobName(new_name, true); printJobTextfield.focus = false; } diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml index e35aef5f20..1ea402d815 100644 --- a/resources/qml/Menus/ContextMenu.qml +++ b/resources/qml/Menus/ContextMenu.qml @@ -103,7 +103,7 @@ Menu { id: machineExtruderCount - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_extruder_count" watchedProperties: [ "value" ] } diff --git a/resources/qml/Menus/MaterialMenu.qml b/resources/qml/Menus/MaterialMenu.qml index 64b3130724..f9e343d2dd 100644 --- a/resources/qml/Menus/MaterialMenu.qml +++ b/resources/qml/Menus/MaterialMenu.qml @@ -10,28 +10,74 @@ import Cura 1.0 as Cura Menu { id: menu - title: "Material" + title: catalog.i18nc("@label:category menu label", "Material") property int extruderIndex: 0 + Cura.FavoriteMaterialsModel + { + id: favoriteMaterialsModel + extruderPosition: menu.extruderIndex + } + + Cura.GenericMaterialsModel + { + id: genericMaterialsModel + extruderPosition: menu.extruderIndex + } + + Cura.MaterialBrandsModel + { + id: brandModel + extruderPosition: menu.extruderIndex + } + + MenuItem + { + text: catalog.i18nc("@label:category menu label", "Favorites") + enabled: false + visible: favoriteMaterialsModel.items.length > 0 + } Instantiator { - model: genericMaterialsModel - MenuItem + model: favoriteMaterialsModel + delegate: MenuItem { - text: model.name + text: model.brand + " " + model.name checkable: true checked: model.root_material_id == Cura.MachineManager.currentRootMaterialId[extruderIndex] + onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node) exclusiveGroup: group - onTriggered: - { - Cura.MachineManager.setMaterial(extruderIndex, model.container_node); - } } onObjectAdded: menu.insertItem(index, object) - onObjectRemoved: menu.removeItem(object) + onObjectRemoved: menu.removeItem(object) // TODO: This ain't gonna work, removeItem() takes an index, not object } - MenuSeparator { } + + MenuSeparator {} + + Menu + { + id: genericMenu + title: catalog.i18nc("@label:category menu label", "Generic") + + Instantiator + { + model: genericMaterialsModel + delegate: MenuItem + { + text: model.name + checkable: true + checked: model.root_material_id == Cura.MachineManager.currentRootMaterialId[extruderIndex] + exclusiveGroup: group + onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node) + } + onObjectAdded: genericMenu.insertItem(index, object) + onObjectRemoved: genericMenu.removeItem(object) // TODO: This ain't gonna work, removeItem() takes an index, not object + } + } + + MenuSeparator {} + Instantiator { model: brandModel @@ -40,12 +86,12 @@ Menu id: brandMenu title: brandName property string brandName: model.name - property var brandMaterials: model.materials + property var brandMaterials: model.material_types Instantiator { model: brandMaterials - Menu + delegate: Menu { id: brandMaterialsMenu title: materialName @@ -55,16 +101,13 @@ Menu Instantiator { model: brandMaterialColors - MenuItem + delegate: MenuItem { text: model.name checkable: true checked: model.id == Cura.MachineManager.allActiveMaterialIds[Cura.ExtruderManager.extruderIds[extruderIndex]] exclusiveGroup: group - onTriggered: - { - Cura.MachineManager.setMaterial(extruderIndex, model.container_node); - } + onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node) } onObjectAdded: brandMaterialsMenu.insertItem(index, object) onObjectRemoved: brandMaterialsMenu.removeItem(object) @@ -78,21 +121,14 @@ Menu onObjectRemoved: menu.removeItem(object) } - Cura.GenericMaterialsModel - { - id: genericMaterialsModel - extruderPosition: menu.extruderIndex + ExclusiveGroup { + id: group } - Cura.BrandMaterialsModel + MenuSeparator {} + + MenuItem { - id: brandModel - extruderPosition: menu.extruderIndex + action: Cura.Actions.manageMaterials } - - ExclusiveGroup { id: group } - - MenuSeparator { } - - MenuItem { action: Cura.Actions.manageMaterials } } diff --git a/resources/qml/Menus/SettingVisibilityPresetsMenu.qml b/resources/qml/Menus/SettingVisibilityPresetsMenu.qml index 2175cfa402..c34dc2a484 100644 --- a/resources/qml/Menus/SettingVisibilityPresetsMenu.qml +++ b/resources/qml/Menus/SettingVisibilityPresetsMenu.qml @@ -29,7 +29,6 @@ Menu onTriggered: { settingVisibilityPresetsModel.setActivePreset(model.id); - showSettingVisibilityProfile(); } } diff --git a/resources/qml/Menus/ViewMenu.qml b/resources/qml/Menus/ViewMenu.qml index 6bbb0b1e2e..9a2e603673 100644 --- a/resources/qml/Menus/ViewMenu.qml +++ b/resources/qml/Menus/ViewMenu.qml @@ -73,4 +73,7 @@ Menu MenuSeparator {} MenuItem { action: Cura.Actions.expandSidebar; } + + MenuSeparator {} + MenuItem { action: Cura.Actions.toggleFullScreen; } } diff --git a/resources/qml/MonitorButton.qml b/resources/qml/MonitorButton.qml index 0bae22e164..aa40de11e4 100644 --- a/resources/qml/MonitorButton.qml +++ b/resources/qml/MonitorButton.qml @@ -1,5 +1,5 @@ -// Copyright (c) 2017 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. +//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.1 @@ -281,16 +281,16 @@ Item text: { if (!printerConnected || activePrintJob == null) { - return catalog.i18nc("@label:", "Pause"); + return catalog.i18nc("@label", "Pause"); } if (activePrintJob.state == "paused") { - return catalog.i18nc("@label:", "Resume"); + return catalog.i18nc("@label", "Resume"); } else { - return catalog.i18nc("@label:", "Pause"); + return catalog.i18nc("@label", "Pause"); } } onClicked: @@ -322,7 +322,7 @@ Item height: UM.Theme.getSize("save_button_save_to_button").height - text: catalog.i18nc("@label:", "Abort Print") + text: catalog.i18nc("@label", "Abort Print") onClicked: confirmationDialog.visible = true style: UM.Theme.styles.sidebar_action_button diff --git a/resources/qml/MonitorSidebar.qml b/resources/qml/MonitorSidebar.qml index b761b05380..80bd5c1a2e 100644 --- a/resources/qml/MonitorSidebar.qml +++ b/resources/qml/MonitorSidebar.qml @@ -181,7 +181,7 @@ Rectangle { id: machineExtruderCount - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_extruder_count" watchedProperties: [ "value" ] storeIndex: 0 @@ -191,7 +191,7 @@ Rectangle { id: machineHeatedBed - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_heated_bed" watchedProperties: [ "value" ] storeIndex: 0 diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 5f60b23477..bba2cf764a 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -13,6 +13,7 @@ UM.PreferencesPage { //: General configuration page title title: catalog.i18nc("@title:tab","General") + id: generalPreferencesPage function setDefaultLanguage(languageCode) { @@ -283,9 +284,6 @@ UM.PreferencesPage } } - - - Label { id: languageCaption @@ -308,7 +306,7 @@ UM.PreferencesPage width: childrenRect.width; height: childrenRect.height; - text: catalog.i18nc("@info:tooltip","Slice automatically when changing settings.") + text: catalog.i18nc("@info:tooltip", "Slice automatically when changing settings.") CheckBox { @@ -316,7 +314,7 @@ UM.PreferencesPage checked: boolCheck(UM.Preferences.getValue("general/auto_slice")) onClicked: UM.Preferences.setValue("general/auto_slice", checked) - text: catalog.i18nc("@option:check","Slice automatically"); + text: catalog.i18nc("@option:check", "Slice automatically"); } } @@ -330,7 +328,7 @@ UM.PreferencesPage Label { font.bold: true - text: catalog.i18nc("@label","Viewport behavior") + text: catalog.i18nc("@label", "Viewport behavior") } UM.TooltipArea @@ -338,7 +336,7 @@ UM.PreferencesPage width: childrenRect.width; height: childrenRect.height; - text: catalog.i18nc("@info:tooltip","Highlight unsupported areas of the model in red. Without support these areas will not print properly.") + text: catalog.i18nc("@info:tooltip", "Highlight unsupported areas of the model in red. Without support these areas will not print properly.") CheckBox { @@ -347,14 +345,14 @@ UM.PreferencesPage checked: boolCheck(UM.Preferences.getValue("view/show_overhang")) onClicked: UM.Preferences.setValue("view/show_overhang", checked) - text: catalog.i18nc("@option:check","Display overhang"); + text: catalog.i18nc("@option:check", "Display overhang"); } } UM.TooltipArea { width: childrenRect.width; 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") + text: catalog.i18nc("@info:tooltip", "Moves the camera so the model is in the center of the view when a model is selected") CheckBox { @@ -368,12 +366,12 @@ UM.PreferencesPage UM.TooltipArea { width: childrenRect.width; height: childrenRect.height; - text: catalog.i18nc("@info:tooltip","Should the default zoom behavior of cura be inverted?") + text: catalog.i18nc("@info:tooltip", "Should the default zoom behavior of cura be inverted?") CheckBox { id: invertZoomCheckbox - text: catalog.i18nc("@action:button","Invert the direction of camera zoom."); + text: catalog.i18nc("@action:button", "Invert the direction of camera zoom."); checked: boolCheck(UM.Preferences.getValue("view/invert_zoom")) onClicked: UM.Preferences.setValue("view/invert_zoom", checked) } diff --git a/resources/qml/Preferences/Materials/MaterialsBrandSection.qml b/resources/qml/Preferences/Materials/MaterialsBrandSection.qml new file mode 100644 index 0000000000..c8f391dfb0 --- /dev/null +++ b/resources/qml/Preferences/Materials/MaterialsBrandSection.qml @@ -0,0 +1,150 @@ +// Copyright (c) 2018 Ultimaker B.V. +// Uranium 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.3 +import QtQuick.Dialogs 1.2 + +import UM 1.2 as UM +import Cura 1.0 as Cura + +Rectangle +{ + id: brand_section + + 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 expanded: materialList.expandedBrands.indexOf(sectionName) > -1 + + height: childrenRect.height + width: parent.width + Rectangle + { + id: brand_header_background + color: + { + if(!expanded && sectionName == materialList.currentBrand) + { + return UM.Theme.getColor("favorites_row_selected") + } + else + { + return UM.Theme.getColor("favorites_header_bar") + } + } + anchors.fill: brand_header + } + Row + { + id: brand_header + width: parent.width + 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 + } + Button + { + text: "" + implicitWidth: UM.Theme.getSize("favorites_button").width + implicitHeight: UM.Theme.getSize("favorites_button").height + UM.RecolorImage { + anchors + { + verticalCenter: parent.verticalCenter + horizontalCenter: parent.horizontalCenter + } + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + sourceSize.width: width + sourceSize.height: height + color: "black" + source: brand_section.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left") + } + style: ButtonStyle + { + background: Rectangle + { + anchors.fill: parent + color: "transparent" + } + } + } + } + MouseArea + { + anchors.fill: brand_header + onPressed: + { + const i = materialList.expandedBrands.indexOf(sectionName) + if (i > -1) + { + // Remove it + materialList.expandedBrands.splice(i, 1) + brand_section.expanded = false + } + else + { + // Add it + materialList.expandedBrands.push(sectionName) + brand_section.expanded = true + } + UM.Preferences.setValue("cura/expanded_brands", materialList.expandedBrands.join(";")); + } + } + Column + { + id: brandMaterialList + anchors.top: brand_header.bottom + width: parent.width + anchors.left: parent.left + height: brand_section.expanded ? childrenRect.height : 0 + visible: brand_section.expanded + + Repeater + { + model: elementsModel + delegate: Loader + { + id: loader + width: parent.width + property var element: model + sourceComponent: hasMaterialTypes ? materialsTypeSection : materialSlot + } + } + } + + Component + { + id: materialsTypeSection + MaterialsTypeSection + { + materialType: element + } + } + + Component + { + id: materialSlot + MaterialsSlot + { + material: element + } + } + + Connections + { + target: UM.Preferences + onPreferenceChanged: + { + expanded = materialList.expandedBrands.indexOf(sectionName) > -1 + } + } +} \ No newline at end of file diff --git a/resources/qml/Preferences/Materials/MaterialsDetailsPanel.qml b/resources/qml/Preferences/Materials/MaterialsDetailsPanel.qml new file mode 100644 index 0000000000..92970f40e2 --- /dev/null +++ b/resources/qml/Preferences/Materials/MaterialsDetailsPanel.qml @@ -0,0 +1,119 @@ +// Copyright (c) 2018 Ultimaker B.V. +// Uranium is released under the terms of the LGPLv3 or higher. + +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 + +Item +{ + id: detailsPanel + + property var currentItem: null + + onCurrentItemChanged: + { + // When the current item changes, the detail view needs to be updated + if (currentItem != null) + { + updateMaterialPropertiesObject() + materialDetailsView.currentMaterialNode = currentItem.container_node + } + } + + function updateMaterialPropertiesObject() + { + // DRAGON WARNING!!! DO NOT TOUCH THIS IF YOU DON'T KNOW. + // TL;DR: Always update "container_id" first! + // + // Other widgets such as MaterialsView have bindings towards "materialProperties" and its properties. Here the + // properties are updated one by one, and each change can trigger a reaction on those widgets that have + // connections to the property gets changed, and some reactions will use functions such as + // ContainerManager.getContainerMetaDataEntry() to fetch data using the "container_id" as the reference. + // We need to change "container_id" first so any underlying triggers will use the correct "container_id" to + // fetch data. Or, for example, if we change GUID first, which triggered the weight widget to fetch weight + // before we can update "container_id", so it will fetch weight with the wrong (old) "container_id". + materialProperties.container_id = currentItem.id + + materialProperties.name = currentItem.name || "Unknown" + materialProperties.guid = currentItem.GUID + materialProperties.brand = currentItem.brand || "Unknown" + materialProperties.material = currentItem.material || "Unknown" + materialProperties.color_name = currentItem.color_name || "Yellow" + materialProperties.color_code = currentItem.color_code || "yellow" + materialProperties.description = currentItem.description || "" + materialProperties.adhesion_info = currentItem.adhesion_info || "" + materialProperties.density = currentItem.density || 0.0 + materialProperties.diameter = currentItem.diameter || 0.0 + materialProperties.approximate_diameter = currentItem.approximate_diameter || "0" + } + + Item + { + anchors.fill: parent + + Item // Material title Label + { + id: profileName + + width: parent.width + height: childrenRect.height + + Label { + text: materialProperties.name + font: UM.Theme.getFont("large") + } + } + + MaterialsView // Material detailed information view below the title Label + { + id: materialDetailsView + anchors + { + left: parent.left + right: parent.right + top: profileName.bottom + topMargin: UM.Theme.getSize("default_margin").height + bottom: parent.bottom + } + + editingEnabled: currentItem != null && !currentItem.is_read_only + + properties: materialProperties + containerId: currentItem != null ? currentItem.id : "" + currentMaterialNode: currentItem.container_node + } + + QtObject + { + id: materialProperties + + property string guid: "00000000-0000-0000-0000-000000000000" + property string container_id: "Unknown"; + property string name: "Unknown"; + property string profile_type: "Unknown"; + property string brand: "Unknown"; + property string material: "Unknown"; // This needs to be named as "material" to be consistent with + // the material container's metadata entry + + property string color_name: "Yellow"; + property color color_code: "yellow"; + + property real density: 0.0; + property real diameter: 0.0; + property string approximate_diameter: "0"; + + property real spool_cost: 0.0; + property real spool_weight: 0.0; + property real spool_length: 0.0; + property real cost_per_meter: 0.0; + + property string description: ""; + property string adhesion_info: ""; + } + } +} \ No newline at end of file diff --git a/resources/qml/Preferences/Materials/MaterialsList.qml b/resources/qml/Preferences/Materials/MaterialsList.qml new file mode 100644 index 0000000000..00bead9650 --- /dev/null +++ b/resources/qml/Preferences/Materials/MaterialsList.qml @@ -0,0 +1,168 @@ +// Copyright (c) 2018 Ultimaker B.V. +// Uranium 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.3 +import QtQuick.Dialogs 1.2 + +import UM 1.2 as UM +import Cura 1.0 as Cura + +Item +{ + id: materialList + height: childrenRect.height + + // Children + UM.I18nCatalog { id: catalog; name: "cura"; } + Cura.MaterialBrandsModel + { + id: materialsModel + extruderPosition: Cura.ExtruderManager.activeExtruderIndex + } + + Cura.FavoriteMaterialsModel + { + id: favoriteMaterialsModel + extruderPosition: Cura.ExtruderManager.activeExtruderIndex + } + + Cura.GenericMaterialsModel + { + id: genericMaterialsModel + extruderPosition: Cura.ExtruderManager.activeExtruderIndex + } + + property var currentType: null + property var currentBrand: null + property var expandedBrands: UM.Preferences.getValue("cura/expanded_brands").split(";") + property var expandedTypes: UM.Preferences.getValue("cura/expanded_types").split(";") + + // Store information about which parts of the tree are expanded + function persistExpandedCategories() + { + UM.Preferences.setValue("cura/expanded_brands", materialList.expandedBrands.join(";")) + UM.Preferences.setValue("cura/expanded_types", materialList.expandedTypes.join(";")) + } + + // Expand the list of materials in order to select the current material + function expandActiveMaterial(search_root_id) + { + if (search_root_id == "") + { + // When this happens it means that the information of one of the materials has changed, so the model + // was updated and the list has to highlight the current item. + var currentItemId = base.currentItem == null ? "" : base.currentItem.root_material_id + search_root_id = currentItemId + } + for (var material_idx = 0; material_idx < genericMaterialsModel.rowCount(); material_idx++) + { + var material = genericMaterialsModel.getItem(material_idx) + if (material.root_material_id == search_root_id) + { + if (materialList.expandedBrands.indexOf("Generic") == -1) + { + materialList.expandedBrands.push("Generic") + } + materialList.currentBrand = "Generic" + base.currentItem = material + persistExpandedCategories() + return true + } + } + for (var brand_idx = 0; brand_idx < materialsModel.rowCount(); brand_idx++) + { + var brand = materialsModel.getItem(brand_idx) + var types_model = brand.material_types + for (var type_idx = 0; type_idx < types_model.rowCount(); type_idx++) + { + var type = types_model.getItem(type_idx) + var colors_model = type.colors + for (var material_idx = 0; material_idx < colors_model.rowCount(); material_idx++) + { + var material = colors_model.getItem(material_idx) + if (material.root_material_id == search_root_id) + { + if (materialList.expandedBrands.indexOf(brand.name) == -1) + { + materialList.expandedBrands.push(brand.name) + } + materialList.currentBrand = brand.name + if (materialList.expandedTypes.indexOf(brand.name + "_" + type.name) == -1) + { + materialList.expandedTypes.push(brand.name + "_" + type.name) + } + materialList.currentType = brand.name + "_" + type.name + base.currentItem = material + persistExpandedCategories() + return true + } + } + } + } + return false + } + + function updateAfterModelChanges() + { + var correctlyExpanded = materialList.expandActiveMaterial(base.newRootMaterialIdToSwitchTo) + if (correctlyExpanded) + { + if (base.toActivateNewMaterial) + { + var position = Cura.ExtruderManager.activeExtruderIndex + Cura.MachineManager.setMaterial(position, base.currentItem.container_node) + } + base.newRootMaterialIdToSwitchTo = "" + base.toActivateNewMaterial = false + } + } + + Connections + { + target: materialsModel + onItemsChanged: updateAfterModelChanges() + } + + Connections + { + target: genericMaterialsModel + onItemsChanged: updateAfterModelChanges() + } + + Column + { + width: materialList.width + height: childrenRect.height + + MaterialsBrandSection + { + id: favoriteSection + sectionName: "Favorites" + elementsModel: favoriteMaterialsModel + hasMaterialTypes: false + } + + MaterialsBrandSection + { + id: genericSection + sectionName: "Generic" + elementsModel: genericMaterialsModel + hasMaterialTypes: false + } + + Repeater + { + model: materialsModel + delegate: MaterialsBrandSection + { + id: brandSection + sectionName: model.name + elementsModel: model.material_types + hasMaterialTypes: true + } + } + } +} \ No newline at end of file diff --git a/resources/qml/Preferences/Materials/MaterialsPage.qml b/resources/qml/Preferences/Materials/MaterialsPage.qml new file mode 100644 index 0000000000..a00a2340cd --- /dev/null +++ b/resources/qml/Preferences/Materials/MaterialsPage.qml @@ -0,0 +1,337 @@ +// Copyright (c) 2018 Ultimaker B.V. +// Uranium is released under the terms of the LGPLv3 or higher. + +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 + +Item +{ + id: base + + property QtObject materialManager: CuraApplication.getMaterialManager() + // Keep PreferencesDialog happy + property var resetEnabled: false + property var currentItem: null + + property var hasCurrentItem: base.currentItem != null + property var isCurrentItemActivated: + { + if (!hasCurrentItem) + { + return false + } + const extruder_position = Cura.ExtruderManager.activeExtruderIndex + const root_material_id = Cura.MachineManager.currentRootMaterialId[extruder_position] + return base.currentItem.root_material_id == root_material_id + } + property string newRootMaterialIdToSwitchTo: "" + property bool toActivateNewMaterial: false + + property var extruder_position: Cura.ExtruderManager.activeExtruderIndex + property var active_root_material_id: Cura.MachineManager.currentRootMaterialId[extruder_position] + + UM.I18nCatalog + { + id: catalog + name: "cura" + } + + // When loaded, try to select the active material in the tree + Component.onCompleted: materialListView.expandActiveMaterial(active_root_material_id) + + // Every time the selected item has changed, notify to the details panel + onCurrentItemChanged: + { + forceActiveFocus() + materialDetailsPanel.currentItem = currentItem + } + + // Main layout + Label + { + id: titleLabel + anchors + { + top: parent.top + left: parent.left + right: parent.right + margins: 5 * screenScaleFactor + } + font.pointSize: 18 + text: catalog.i18nc("@title:tab", "Materials") + } + + // Button Row + Row + { + id: buttonRow + anchors + { + left: parent.left + right: parent.right + top: titleLabel.bottom + } + height: childrenRect.height + + // Activate button + Button + { + text: catalog.i18nc("@action:button", "Activate") + iconName: "list-activate" + enabled: !isCurrentItemActivated + onClicked: + { + forceActiveFocus() + + // Set the current material as the one to be activated (needed to force the UI update) + base.newRootMaterialIdToSwitchTo = base.currentItem.root_material_id + const extruder_position = Cura.ExtruderManager.activeExtruderIndex + Cura.MachineManager.setMaterial(extruder_position, base.currentItem.container_node) + } + } + + // Create button + Button + { + text: catalog.i18nc("@action:button", "Create") + iconName: "list-add" + onClicked: + { + forceActiveFocus(); + base.newRootMaterialIdToSwitchTo = base.materialManager.createMaterial(); + base.toActivateNewMaterial = true; + } + } + + // Duplicate button + Button + { + text: catalog.i18nc("@action:button", "Duplicate"); + iconName: "list-add" + enabled: base.hasCurrentItem + onClicked: + { + forceActiveFocus(); + base.newRootMaterialIdToSwitchTo = base.materialManager.duplicateMaterial(base.currentItem.container_node); + base.toActivateNewMaterial = true; + } + } + + // Remove button + Button + { + text: catalog.i18nc("@action:button", "Remove") + iconName: "list-remove" + enabled: base.hasCurrentItem && !base.currentItem.is_read_only && !base.isCurrentItemActivated + onClicked: + { + forceActiveFocus(); + confirmRemoveMaterialDialog.open(); + } + } + + // Import button + Button + { + text: catalog.i18nc("@action:button", "Import") + iconName: "document-import" + onClicked: + { + forceActiveFocus(); + importMaterialDialog.open(); + } + visible: true + } + + // Export button + Button + { + text: catalog.i18nc("@action:button", "Export") + iconName: "document-export" + onClicked: + { + forceActiveFocus(); + exportMaterialDialog.open(); + } + enabled: base.hasCurrentItem + } + } + + 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: + { + var caption = catalog.i18nc("@action:label", "Printer") + ": " + Cura.MachineManager.activeMachineName; + if (Cura.MachineManager.hasVariants) + { + caption += ", " + Cura.MachineManager.activeDefinitionVariantsName + ": " + Cura.MachineManager.activeVariantName; + } + return caption; + } + width: materialScrollView.width + elide: Text.ElideRight + } + + ScrollView + { + id: materialScrollView + 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: (parent.width * 0.4) | 0 + frameVisible: true + horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff + + MaterialsList + { + id: materialListView + width: materialScrollView.viewport.width + } + } + + MaterialsDetailsPanel + { + id: materialDetailsPanel + anchors + { + left: materialScrollView.right + leftMargin: UM.Theme.getSize("default_margin").width + top: parent.top + bottom: parent.bottom + right: parent.right + } + } + } + + // Dialogs + MessageDialog + { + id: confirmRemoveMaterialDialog + 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.currentItem.name) + standardButtons: StandardButton.Yes | StandardButton.No + modality: Qt.ApplicationModal + onYes: + { + // Set the active material as the fallback. It will be selected when the current material is deleted + base.newRootMaterialIdToSwitchTo = base.active_root_material_id + base.materialManager.removeMaterial(base.currentItem.container_node); + } + } + + FileDialog + { + id: importMaterialDialog + title: catalog.i18nc("@title:window", "Import Material") + selectExisting: true + nameFilters: Cura.ContainerManager.getContainerNameFilters("material") + folder: CuraApplication.getDefaultPath("dialog_material_path") + onAccepted: + { + var result = Cura.ContainerManager.importMaterialContainer(fileUrl); + + 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") + { + 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; + } + messageDialog.open(); + CuraApplication.setDefaultPath("dialog_material_path", folder); + } + } + + FileDialog + { + id: exportMaterialDialog + title: catalog.i18nc("@title:window", "Export Material") + selectExisting: false + nameFilters: Cura.ContainerManager.getContainerNameFilters("material") + folder: CuraApplication.getDefaultPath("dialog_material_path") + onAccepted: + { + var result = Cura.ContainerManager.exportContainer(base.currentItem.root_material_id, selectedNameFilter, fileUrl); + + messageDialog.title = catalog.i18nc("@title:window", "Export Material"); + if (result.status == "error") + { + 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(); + } + 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 new file mode 100644 index 0000000000..a474b52838 --- /dev/null +++ b/resources/qml/Preferences/Materials/MaterialsSlot.qml @@ -0,0 +1,120 @@ +// Copyright (c) 2018 Ultimaker B.V. +// Uranium 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.3 +import QtQuick.Dialogs 1.2 + +import UM 1.2 as UM +import Cura 1.0 as Cura + +Rectangle +{ + id: materialSlot + property var material: null + property var hovered: false + property var is_favorite: material != null ? material.is_favorite : false + + height: UM.Theme.getSize("favorites_row").height + width: parent.width + color: material != null ? (base.currentItem.root_material_id == material.root_material_id ? UM.Theme.getColor("favorites_row_selected") : "transparent") : "transparent" + + Rectangle + { + id: swatch + color: material != null ? material.color_code : "transparent" + border.width: UM.Theme.getSize("default_lining").width + border.color: "black" + width: UM.Theme.getSize("favorites_button_icon").width + height: UM.Theme.getSize("favorites_button_icon").height + anchors.verticalCenter: materialSlot.verticalCenter + anchors.left: materialSlot.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + } + Label + { + text: material != null ? material.brand + " " + material.name : "" + verticalAlignment: Text.AlignVCenter + height: parent.height + anchors.left: swatch.right + anchors.verticalCenter: materialSlot.verticalCenter + anchors.leftMargin: UM.Theme.getSize("narrow_margin").width + } + MouseArea + { + anchors.fill: parent + onClicked: + { + materialList.currentBrand = material.brand + materialList.currentType = material.brand + "_" + material.material + base.currentItem = material + } + hoverEnabled: true + onEntered: { materialSlot.hovered = true } + onExited: { materialSlot.hovered = false } + } + Button + { + id: favorite_button + text: "" + implicitWidth: UM.Theme.getSize("favorites_button").width + implicitHeight: UM.Theme.getSize("favorites_button").height + visible: materialSlot.hovered || materialSlot.is_favorite || favorite_button.hovered + anchors + { + right: materialSlot.right + verticalCenter: materialSlot.verticalCenter + } + onClicked: + { + if (materialSlot.is_favorite) { + base.materialManager.removeFavorite(material.root_material_id) + materialSlot.is_favorite = false + return + } + base.materialManager.addFavorite(material.root_material_id) + materialSlot.is_favorite = true + return + } + style: ButtonStyle + { + background: Rectangle + { + anchors.fill: parent + color: "transparent" + } + } + UM.RecolorImage { + anchors + { + verticalCenter: favorite_button.verticalCenter + horizontalCenter: favorite_button.horizontalCenter + } + width: UM.Theme.getSize("favorites_button_icon").width + height: UM.Theme.getSize("favorites_button_icon").height + sourceSize.width: width + sourceSize.height: height + color: + { + if (favorite_button.hovered) + { + return UM.Theme.getColor("primary_hover") + } + else + { + if (materialSlot.is_favorite) + { + return UM.Theme.getColor("primary") + } + else + { + UM.Theme.getColor("text_inactive") + } + } + } + source: materialSlot.is_favorite ? UM.Theme.getIcon("favorites_star_full") : UM.Theme.getIcon("favorites_star_empty") + } + } +} \ No newline at end of file diff --git a/resources/qml/Preferences/Materials/MaterialsTypeSection.qml b/resources/qml/Preferences/Materials/MaterialsTypeSection.qml new file mode 100644 index 0000000000..f62fc4ee16 --- /dev/null +++ b/resources/qml/Preferences/Materials/MaterialsTypeSection.qml @@ -0,0 +1,138 @@ +// Copyright (c) 2018 Ultimaker B.V. +// Uranium 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.3 +import QtQuick.Dialogs 1.2 + +import UM 1.2 as UM +import Cura 1.0 as Cura + +Rectangle +{ + id: material_type_section + property var materialType + property var expanded: materialList.expandedTypes.indexOf(materialType.brand + "_" + materialType.name) > -1 + property var colorsModel: materialType.colors + height: childrenRect.height + width: parent.width + Rectangle + { + id: material_type_header_background + color: + { + if(!expanded && materialType.brand + "_" + materialType.name == materialList.currentType) + { + return UM.Theme.getColor("favorites_row_selected") + } + else + { + return "transparent" + } + } + width: parent.width + height: material_type_header.height + } + Rectangle + { + id: material_type_header_border + color: UM.Theme.getColor("favorites_header_bar") + anchors.bottom: material_type_header.bottom + anchors.left: material_type_header.left + height: UM.Theme.getSize("default_lining").height + width: material_type_header.width + } + Row + { + id: material_type_header + width: parent.width + leftPadding: UM.Theme.getSize("default_margin").width + anchors + { + left: parent.left + } + Label + { + text: materialType.name + 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 + } + Button + { + text: "" + implicitWidth: UM.Theme.getSize("favorites_button").width + implicitHeight: UM.Theme.getSize("favorites_button").height + UM.RecolorImage { + anchors + { + verticalCenter: parent.verticalCenter + horizontalCenter: parent.horizontalCenter + } + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + sourceSize.width: width + sourceSize.height: height + color: "black" + source: material_type_section.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left") + } + style: ButtonStyle + { + background: Rectangle + { + anchors.fill: parent + color: "transparent" + } + } + } + } + MouseArea + { + anchors.fill: material_type_header + onPressed: + { + const identifier = materialType.brand + "_" + materialType.name; + const i = materialList.expandedTypes.indexOf(identifier) + if (i > -1) + { + // Remove it + materialList.expandedTypes.splice(i, 1) + material_type_section.expanded = false + } + else + { + // Add it + materialList.expandedTypes.push(identifier) + material_type_section.expanded = true + } + UM.Preferences.setValue("cura/expanded_types", materialList.expandedTypes.join(";")); + } + } + Column + { + height: material_type_section.expanded ? childrenRect.height : 0 + visible: material_type_section.expanded + width: parent.width + anchors.top: material_type_header.bottom + Repeater + { + model: colorsModel + delegate: MaterialsSlot + { + material: model + } + } + } + + Connections + { + target: UM.Preferences + onPreferenceChanged: + { + expanded = materialList.expandedTypes.indexOf(materialType.brand + "_" + materialType.name) > -1 + } + } +} \ No newline at end of file diff --git a/resources/qml/Preferences/MaterialView.qml b/resources/qml/Preferences/Materials/MaterialsView.qml similarity index 97% rename from resources/qml/Preferences/MaterialView.qml rename to resources/qml/Preferences/Materials/MaterialsView.qml index 97184ab558..56fa12877f 100644 --- a/resources/qml/Preferences/MaterialView.qml +++ b/resources/qml/Preferences/Materials/MaterialsView.qml @@ -8,6 +8,8 @@ import QtQuick.Dialogs 1.2 import UM 1.2 as UM import Cura 1.0 as Cura +import ".." // Access to ReadOnlyTextArea.qml + TabView { id: base @@ -189,6 +191,7 @@ TabView 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) @@ -565,25 +568,25 @@ TabView // don't change when new name is the same if (old_name == new_name) { - return; + return } // update the values - base.materialManager.setMaterialName(base.currentMaterialNode, new_name); - materialProperties.name = new_name; + base.materialManager.setMaterialName(base.currentMaterialNode, new_name) + properties.name = new_name } // update the type of the material - function updateMaterialType (old_type, new_type) + function updateMaterialType(old_type, new_type) { - base.setMetaDataEntry("material", old_type, new_type); - materialProperties.material= new_type; + base.setMetaDataEntry("material", old_type, new_type) + properties.material = new_type } // update the brand of the material - function updateMaterialBrand (old_brand, new_brand) + function updateMaterialBrand(old_brand, new_brand) { - base.setMetaDataEntry("brand", old_brand, new_brand); - materialProperties.brand = new_brand; + base.setMetaDataEntry("brand", old_brand, new_brand) + properties.brand = new_brand } } diff --git a/resources/qml/Preferences/MaterialsPage.qml b/resources/qml/Preferences/MaterialsPage.qml deleted file mode 100644 index e2e3edec2f..0000000000 --- a/resources/qml/Preferences/MaterialsPage.qml +++ /dev/null @@ -1,572 +0,0 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Uranium is released under the terms of the LGPLv3 or higher. - -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 - - -Item -{ - id: base - - property QtObject materialManager: CuraApplication.getMaterialManager() - property var resetEnabled: false // Keep PreferencesDialog happy - - UM.I18nCatalog { id: catalog; name: "cura"; } - - Cura.MaterialManagementModel - { - id: materialsModel - } - - Label - { - id: titleLabel - - anchors - { - top: parent.top - left: parent.left - right: parent.right - margins: 5 * screenScaleFactor - } - - font.pointSize: 18 - text: catalog.i18nc("@title:tab", "Materials") - } - - property var hasCurrentItem: materialListView.currentItem != null - - property var currentItem: - { // is soon to be overwritten - var current_index = materialListView.currentIndex; - return materialsModel.getItem(current_index); - } - - property var isCurrentItemActivated: - { - const extruder_position = Cura.ExtruderManager.activeExtruderIndex; - const root_material_id = Cura.MachineManager.currentRootMaterialId[extruder_position]; - return base.currentItem.root_material_id == root_material_id; - } - - Component.onCompleted: - { - // Select the activated material when this page shows up - const extruder_position = Cura.ExtruderManager.activeExtruderIndex; - const active_root_material_id = Cura.MachineManager.currentRootMaterialId[extruder_position]; - var itemIndex = -1; - for (var i = 0; i < materialsModel.rowCount(); ++i) - { - var item = materialsModel.getItem(i); - if (item.root_material_id == active_root_material_id) - { - itemIndex = i; - break; - } - } - materialListView.currentIndex = itemIndex; - } - - Row // Button Row - { - id: buttonRow - anchors - { - left: parent.left - right: parent.right - top: titleLabel.bottom - } - height: childrenRect.height - - // Activate button - Button - { - text: catalog.i18nc("@action:button", "Activate") - iconName: "list-activate" - enabled: !isCurrentItemActivated - onClicked: - { - forceActiveFocus() - - const extruder_position = Cura.ExtruderManager.activeExtruderIndex; - Cura.MachineManager.setMaterial(extruder_position, base.currentItem.container_node); - } - } - - // Create button - Button - { - text: catalog.i18nc("@action:button", "Create") - iconName: "list-add" - onClicked: - { - forceActiveFocus(); - base.newRootMaterialIdToSwitchTo = base.materialManager.createMaterial(); - base.toActivateNewMaterial = true; - } - } - - // Duplicate button - Button - { - text: catalog.i18nc("@action:button", "Duplicate"); - iconName: "list-add" - enabled: base.hasCurrentItem - onClicked: - { - forceActiveFocus(); - base.newRootMaterialIdToSwitchTo = base.materialManager.duplicateMaterial(base.currentItem.container_node); - base.toActivateNewMaterial = true; - } - } - - // Remove button - Button - { - text: catalog.i18nc("@action:button", "Remove") - iconName: "list-remove" - enabled: base.hasCurrentItem && !base.currentItem.is_read_only && !base.isCurrentItemActivated - onClicked: - { - forceActiveFocus(); - confirmRemoveMaterialDialog.open(); - } - } - - // Import button - Button - { - text: catalog.i18nc("@action:button", "Import") - iconName: "document-import" - onClicked: - { - forceActiveFocus(); - importMaterialDialog.open(); - } - visible: true - } - - // Export button - Button - { - text: catalog.i18nc("@action:button", "Export") - iconName: "document-export" - onClicked: - { - forceActiveFocus(); - exportMaterialDialog.open(); - } - enabled: currentItem != null - } - } - - property string newRootMaterialIdToSwitchTo: "" - property bool toActivateNewMaterial: false - - // This connection makes sure that we will switch to the new - Connections - { - target: materialsModel - onItemsChanged: - { - var currentItemId = base.currentItem == null ? "" : base.currentItem.root_material_id; - var position = Cura.ExtruderManager.activeExtruderIndex; - - // try to pick the currently selected item; it may have been moved - if (base.newRootMaterialIdToSwitchTo == "") - { - base.newRootMaterialIdToSwitchTo = currentItemId; - } - - for (var idx = 0; idx < materialsModel.rowCount(); ++idx) - { - var item = materialsModel.getItem(idx); - if (item.root_material_id == base.newRootMaterialIdToSwitchTo) - { - // Switch to the newly created profile if needed - materialListView.currentIndex = idx; - materialListView.activateDetailsWithIndex(materialListView.currentIndex); - if (base.toActivateNewMaterial) - { - Cura.MachineManager.setMaterial(position, item.container_node); - } - base.newRootMaterialIdToSwitchTo = ""; - base.toActivateNewMaterial = false; - return - } - } - - materialListView.currentIndex = 0; - materialListView.activateDetailsWithIndex(materialListView.currentIndex); - if (base.toActivateNewMaterial) - { - Cura.MachineManager.setMaterial(position, materialsModel.getItem(0).container_node); - } - base.newRootMaterialIdToSwitchTo = ""; - base.toActivateNewMaterial = false; - } - } - - MessageDialog - { - id: confirmRemoveMaterialDialog - - 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.currentItem.name) - standardButtons: StandardButton.Yes | StandardButton.No - modality: Qt.ApplicationModal - - onYes: - { - base.materialManager.removeMaterial(base.currentItem.container_node); - } - } - - FileDialog - { - id: importMaterialDialog - title: catalog.i18nc("@title:window", "Import Material") - selectExisting: true - nameFilters: Cura.ContainerManager.getContainerNameFilters("material") - folder: CuraApplication.getDefaultPath("dialog_material_path") - onAccepted: - { - var result = Cura.ContainerManager.importMaterialContainer(fileUrl); - - 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") - { - 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; - } - messageDialog.open(); - CuraApplication.setDefaultPath("dialog_material_path", folder); - } - } - - FileDialog - { - id: exportMaterialDialog - title: catalog.i18nc("@title:window", "Export Material") - selectExisting: false - nameFilters: Cura.ContainerManager.getContainerNameFilters("material") - folder: CuraApplication.getDefaultPath("dialog_material_path") - onAccepted: - { - var result = Cura.ContainerManager.exportContainer(base.currentItem.root_material_id, selectedNameFilter, fileUrl); - - messageDialog.title = catalog.i18nc("@title:window", "Export Material"); - if (result.status == "error") - { - 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(); - } - CuraApplication.setDefaultPath("dialog_material_path", folder); - } - } - - MessageDialog - { - id: messageDialog - } - - - 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: - { - var caption = catalog.i18nc("@action:label", "Printer") + ": " + Cura.MachineManager.activeMachineName; - if (Cura.MachineManager.hasVariants) - { - caption += ", " + Cura.MachineManager.activeDefinitionVariantsName + ": " + Cura.MachineManager.activeVariantName; - } - return caption; - } - width: materialScrollView.width - elide: Text.ElideRight - } - - ScrollView - { - id: materialScrollView - 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 - - ListView - { - id: materialListView - - model: materialsModel - - section.property: "brand" - section.criteria: ViewSection.FullString - section.delegate: Rectangle - { - width: materialScrollView.width - height: childrenRect.height - color: palette.light - - Label - { - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_lining").width - text: section - font.bold: true - color: palette.text - } - } - - delegate: Rectangle - { - width: materialScrollView.width - height: childrenRect.height - color: ListView.isCurrentItem ? palette.highlight : (model.index % 2) ? palette.base : palette.alternateBase - - Row - { - id: materialRow - spacing: (UM.Theme.getSize("default_margin").width / 2) | 0 - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("default_margin").width - anchors.right: parent.right - - property bool isCurrentItem: parent.ListView.isCurrentItem - - property bool isItemActivated: - { - const extruder_position = Cura.ExtruderManager.activeExtruderIndex; - const root_material_id = Cura.MachineManager.currentRootMaterialId[extruder_position]; - return model.root_material_id == root_material_id; - } - - Rectangle - { - width: Math.floor(parent.height * 0.8) - height: Math.floor(parent.height * 0.8) - color: model.color_code - border.color: materialRow.isCurrentItem ? palette.highlightedText : palette.text; - anchors.verticalCenter: parent.verticalCenter - } - Label - { - width: Math.floor((parent.width * 0.3)) - text: model.material - elide: Text.ElideRight - font.italic: materialRow.isItemActivated - color: materialRow.isCurrentItem ? palette.highlightedText : palette.text; - } - Label - { - text: (model.name != model.material) ? model.name : "" - elide: Text.ElideRight - font.italic: materialRow.isItemActivated - color: materialRow.isCurrentItem ? palette.highlightedText : palette.text; - } - } - - MouseArea - { - anchors.fill: parent - onClicked: - { - parent.ListView.view.currentIndex = model.index; - } - } - } - - function activateDetailsWithIndex(index) - { - var model = materialsModel.getItem(index); - base.currentItem = model; - materialDetailsView.containerId = model.container_id; - materialDetailsView.currentMaterialNode = model.container_node; - - detailsPanel.updateMaterialPropertiesObject(); - } - - onCurrentIndexChanged: - { - forceActiveFocus(); // causes the changed fields to be saved - activateDetailsWithIndex(currentIndex); - } - } - } - - - Item - { - id: detailsPanel - - anchors - { - left: materialScrollView.right - leftMargin: UM.Theme.getSize("default_margin").width - top: parent.top - bottom: parent.bottom - right: parent.right - } - - function updateMaterialPropertiesObject() - { - var currentItem = materialsModel.getItem(materialListView.currentIndex); - - materialProperties.name = currentItem.name ? currentItem.name : "Unknown"; - materialProperties.guid = currentItem.guid; - materialProperties.container_id = currentItem.container_id; - - materialProperties.brand = currentItem.brand ? currentItem.brand : "Unknown"; - materialProperties.material = currentItem.material ? currentItem.material : "Unknown"; - materialProperties.color_name = currentItem.color_name ? currentItem.color_name : "Yellow"; - materialProperties.color_code = currentItem.color_code ? currentItem.color_code : "yellow"; - - materialProperties.description = currentItem.description ? currentItem.description : ""; - materialProperties.adhesion_info = currentItem.adhesion_info ? currentItem.adhesion_info : ""; - - materialProperties.density = currentItem.density ? currentItem.density : 0.0; - materialProperties.diameter = currentItem.diameter ? currentItem.diameter : 0.0; - materialProperties.approximate_diameter = currentItem.approximate_diameter ? currentItem.approximate_diameter : "0"; - } - - Item - { - anchors.fill: parent - - Item // Material title Label - { - id: profileName - - width: parent.width - height: childrenRect.height - - Label { - text: materialProperties.name - font: UM.Theme.getFont("large") - } - } - - MaterialView // Material detailed information view below the title Label - { - id: materialDetailsView - anchors - { - left: parent.left - right: parent.right - top: profileName.bottom - topMargin: UM.Theme.getSize("default_margin").height - bottom: parent.bottom - } - - editingEnabled: base.currentItem != null && !base.currentItem.is_read_only - - properties: materialProperties - containerId: base.currentItem != null ? base.currentItem.container_id : "" - currentMaterialNode: base.currentItem.container_node - - property alias pane: base - } - - QtObject - { - id: materialProperties - - property string guid: "00000000-0000-0000-0000-000000000000" - property string container_id: "Unknown"; - property string name: "Unknown"; - property string profile_type: "Unknown"; - property string brand: "Unknown"; - property string material: "Unknown"; // This needs to be named as "material" to be consistent with - // the material container's metadata entry - - property string color_name: "Yellow"; - property color color_code: "yellow"; - - property real density: 0.0; - property real diameter: 0.0; - property string approximate_diameter: "0"; - - property real spool_cost: 0.0; - property real spool_weight: 0.0; - property real spool_length: 0.0; - property real cost_per_meter: 0.0; - - property string description: ""; - property string adhesion_info: ""; - } - } - } - } -} diff --git a/resources/qml/PrepareSidebar.qml b/resources/qml/PrepareSidebar.qml index 703cbb8844..78b6a22ef9 100644 --- a/resources/qml/PrepareSidebar.qml +++ b/resources/qml/PrepareSidebar.qml @@ -595,7 +595,7 @@ Rectangle { id: machineExtruderCount - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_extruder_count" watchedProperties: [ "value" ] storeIndex: 0 @@ -605,7 +605,7 @@ Rectangle { id: machineHeatedBed - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_heated_bed" watchedProperties: [ "value" ] storeIndex: 0 diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index 7727f9cb52..3bfcea7025 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -78,18 +78,18 @@ Column UM.SettingPropertyProvider { id: bedTemperature - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "material_bed_temperature" watchedProperties: ["value", "minimum_value", "maximum_value", "resolve"] storeIndex: 0 - property var resolve: Cura.MachineManager.activeStackId != Cura.MachineManager.activeMachineId ? properties.resolve : "None" + property var resolve: Cura.MachineManager.activeStack != Cura.MachineManager.activeMachine ? properties.resolve : "None" } UM.SettingPropertyProvider { id: machineExtruderCount - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_extruder_count" watchedProperties: ["value"] } diff --git a/resources/qml/PrinterOutput/ExtruderBox.qml b/resources/qml/PrinterOutput/ExtruderBox.qml index 56c86f1034..f0abd4cd6c 100644 --- a/resources/qml/PrinterOutput/ExtruderBox.qml +++ b/resources/qml/PrinterOutput/ExtruderBox.qml @@ -23,7 +23,7 @@ Item watchedProperties: ["value", "minimum_value", "maximum_value", "resolve"] storeIndex: 0 - property var resolve: Cura.MachineManager.activeStackId != Cura.MachineManager.activeMachineId ? properties.resolve : "None" + property var resolve: Cura.MachineManager.activeStack != Cura.MachineManager.activeMachine ? properties.resolve : "None" } Rectangle diff --git a/resources/qml/SaveButton.qml b/resources/qml/SaveButton.qml index 0e0eec7277..2a0a523026 100644 --- a/resources/qml/SaveButton.qml +++ b/resources/qml/SaveButton.qml @@ -7,6 +7,7 @@ import QtQuick.Controls.Styles 1.1 import QtQuick.Layouts 1.1 import UM 1.1 as UM +import Cura 1.0 as Cura Item { id: base; @@ -257,7 +258,8 @@ Item { onClicked: { forceActiveFocus(); - UM.OutputDeviceManager.requestWriteToDevice(UM.OutputDeviceManager.activeDevice, PrintInformation.jobName, { "filter_by_machine": true, "preferred_mimetype":Printer.preferredOutputMimetype }); + UM.OutputDeviceManager.requestWriteToDevice(UM.OutputDeviceManager.activeDevice, PrintInformation.jobName, + { "filter_by_machine": true, "preferred_mimetypes": Cura.MachineManager.activeMachine.preferred_output_file_formats }); } style: ButtonStyle { diff --git a/resources/qml/Settings/SettingCategory.qml b/resources/qml/Settings/SettingCategory.qml index 419285d893..e3202323eb 100644 --- a/resources/qml/Settings/SettingCategory.qml +++ b/resources/qml/Settings/SettingCategory.qml @@ -16,6 +16,7 @@ Button anchors.rightMargin: UM.Theme.getSize("sidebar_margin").width background: Rectangle { + id: backgroundRectangle implicitHeight: UM.Theme.getSize("section").height color: { if (base.color) { @@ -35,6 +36,7 @@ Button Behavior on color { ColorAnimation { duration: 50; } } Rectangle { + id: backgroundLiningRectangle height: UM.Theme.getSize("default_lining").height width: parent.width anchors.bottom: parent.bottom @@ -68,6 +70,7 @@ Button anchors.left: parent.left Label { + id: settingNameLabel anchors { left: parent.left @@ -76,6 +79,7 @@ Button verticalCenter: parent.verticalCenter; } text: definition.label + textFormat: Text.PlainText renderType: Text.NativeRendering font: UM.Theme.getFont("setting_category") color: diff --git a/resources/qml/Settings/SettingComboBox.qml b/resources/qml/Settings/SettingComboBox.qml index 5d283d5ebb..76d458e427 100644 --- a/resources/qml/Settings/SettingComboBox.qml +++ b/resources/qml/Settings/SettingComboBox.qml @@ -73,6 +73,7 @@ SettingItem anchors.right: downArrow.left text: control.currentText + textFormat: Text.PlainText renderType: Text.NativeRendering font: UM.Theme.getFont("default") color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text") @@ -115,6 +116,7 @@ SettingItem anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width text: modelData.value + textFormat: Text.PlainText renderType: Text.NativeRendering color: control.contentItem.color font: UM.Theme.getFont("default") diff --git a/resources/qml/Settings/SettingExtruder.qml b/resources/qml/Settings/SettingExtruder.qml index 4c00a60d0e..a9427f863a 100644 --- a/resources/qml/Settings/SettingExtruder.qml +++ b/resources/qml/Settings/SettingExtruder.qml @@ -145,6 +145,7 @@ SettingItem rightPadding: swatch.width + UM.Theme.getSize("setting_unit_margin").width 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") diff --git a/resources/qml/Settings/SettingItem.qml b/resources/qml/Settings/SettingItem.qml index 48b3cd306d..785562cff5 100644 --- a/resources/qml/Settings/SettingItem.qml +++ b/resources/qml/Settings/SettingItem.qml @@ -115,6 +115,7 @@ Item { text: definition.label elide: Text.ElideMiddle; renderType: Text.NativeRendering + textFormat: Text.PlainText color: UM.Theme.getColor("setting_control_text"); opacity: (definition.visible) ? 1 : 0.5 @@ -139,7 +140,7 @@ Item { { id: linkedSettingIcon; - visible: Cura.MachineManager.activeStackId != Cura.MachineManager.activeMachineId && (!definition.settable_per_extruder || String(globalPropertyProvider.properties.limit_to_extruder) != "-1") && base.showLinkedSettingIcon + visible: Cura.MachineManager.activeStack != Cura.MachineManager.activeMachine && (!definition.settable_per_extruder || String(globalPropertyProvider.properties.limit_to_extruder) != "-1") && base.showLinkedSettingIcon height: parent.height; width: height; @@ -260,12 +261,6 @@ Item { // entry (user container) are set, we can simply remove the container. propertyProvider.removeFromContainer(0) } - else if(last_entry - 1 == base.stackLevel) - { - // Another special case. The setting that is overriden is only 1 instance container deeper, - // so we can remove it. - propertyProvider.removeFromContainer(last_entry - 1) - } else { // Put that entry into the "top" instance container. diff --git a/resources/qml/Settings/SettingOptionalExtruder.qml b/resources/qml/Settings/SettingOptionalExtruder.qml index 2d4f25125f..a3c1422b30 100644 --- a/resources/qml/Settings/SettingOptionalExtruder.qml +++ b/resources/qml/Settings/SettingOptionalExtruder.qml @@ -140,6 +140,7 @@ SettingItem rightPadding: swatch.width + UM.Theme.getSize("setting_unit_margin").width 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") @@ -199,6 +200,7 @@ SettingItem anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width text: model.name + textFormat: Text.PlainText renderType: Text.NativeRendering color: { diff --git a/resources/qml/Settings/SettingTextField.qml b/resources/qml/Settings/SettingTextField.qml index c2c04ce36c..15782829d3 100644 --- a/resources/qml/Settings/SettingTextField.qml +++ b/resources/qml/Settings/SettingTextField.qml @@ -94,6 +94,7 @@ SettingItem anchors.verticalCenter: parent.verticalCenter text: definition.unit + textFormat: Text.PlainText renderType: Text.NativeRendering color: UM.Theme.getColor("setting_unit") font: UM.Theme.getFont("default") diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml index e17f11bf99..da50b430ac 100644 --- a/resources/qml/Settings/SettingView.qml +++ b/resources/qml/Settings/SettingView.qml @@ -39,10 +39,11 @@ Item Label { id: globalProfileLabel - text: catalog.i18nc("@label","Profile:"); + text: catalog.i18nc("@label","Profile:") + textFormat: Text.PlainText width: Math.round(parent.width * 0.45 - UM.Theme.getSize("sidebar_margin").width - 2) - font: UM.Theme.getFont("default"); - color: UM.Theme.getColor("text"); + font: UM.Theme.getFont("default") + color: UM.Theme.getColor("text") verticalAlignment: Text.AlignVCenter anchors.top: parent.top anchors.bottom: parent.bottom diff --git a/resources/qml/SidebarHeader.qml b/resources/qml/SidebarHeader.qml index 6ee33dd2f2..df4f493ea5 100644 --- a/resources/qml/SidebarHeader.qml +++ b/resources/qml/SidebarHeader.qml @@ -274,7 +274,7 @@ Column elide: Text.ElideRight } - // Everthing for the extruder icon + // Everything for the extruder icon Item { id: extruderIconItem @@ -607,7 +607,7 @@ Column { id: machineExtruderCount - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "machine_extruder_count" watchedProperties: [ "value" ] storeIndex: 0 diff --git a/resources/qml/SidebarSimple.qml b/resources/qml/SidebarSimple.qml index 4b229d9807..e962d7fc8f 100644 --- a/resources/qml/SidebarSimple.qml +++ b/resources/qml/SidebarSimple.qml @@ -20,7 +20,6 @@ Item property variant minimumPrintTime: PrintInformation.minimumPrintTime; property variant maximumPrintTime: PrintInformation.maximumPrintTime; property bool settingsEnabled: Cura.ExtruderManager.activeExtruderStackId || extrudersEnabledCount.properties.value == 1 - Component.onCompleted: PrintInformation.enabled = true Component.onDestruction: PrintInformation.enabled = false UM.I18nCatalog { id: catalog; name: "cura" } @@ -1116,7 +1115,7 @@ Item UM.SettingPropertyProvider { id: platformAdhesionType - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "adhesion_type" watchedProperties: [ "value", "enabled" ] storeIndex: 0 @@ -1125,7 +1124,7 @@ Item UM.SettingPropertyProvider { id: supportEnabled - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "support_enable" watchedProperties: [ "value", "enabled", "description" ] storeIndex: 0 @@ -1134,7 +1133,7 @@ Item UM.SettingPropertyProvider { id: extrudersEnabledCount - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "extruders_enabled_count" watchedProperties: [ "value" ] storeIndex: 0 @@ -1143,7 +1142,7 @@ Item UM.SettingPropertyProvider { id: supportExtruderNr - containerStackId: Cura.MachineManager.activeMachineId + containerStack: Cura.MachineManager.activeMachine key: "support_extruder_nr" watchedProperties: [ "value" ] storeIndex: 0 diff --git a/resources/quality/dagoma/dagoma_neva_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg similarity index 90% rename from resources/quality/dagoma/dagoma_neva_magis_pla_fast.inst.cfg rename to resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index e52cba165c..d87c913eb6 100644 --- a/resources/quality/dagoma/dagoma_neva_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -1,7 +1,7 @@ [general] version = 4 name = Fast -definition = dagoma_neva_magis +definition = dagoma_magis [metadata] setting_version = 5 diff --git a/resources/quality/dagoma/dagoma_neva_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg similarity index 82% rename from resources/quality/dagoma/dagoma_neva_magis_pla_fine.inst.cfg rename to resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index 033cfbc8fa..d046726e0e 100644 --- a/resources/quality/dagoma/dagoma_neva_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -1,7 +1,7 @@ [general] version = 4 name = Fine -definition = dagoma_neva_magis +definition = dagoma_magis [metadata] setting_version = 5 diff --git a/resources/quality/dagoma/dagoma_neva_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg similarity index 90% rename from resources/quality/dagoma/dagoma_neva_magis_pla_standard.inst.cfg rename to resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index d07d5b58d5..39961ea93b 100644 --- a/resources/quality/dagoma/dagoma_neva_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -1,7 +1,7 @@ [general] version = 4 name = Standard -definition = dagoma_neva_magis +definition = dagoma_magis [metadata] setting_version = 5 diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg new file mode 100644 index 0000000000..ac4f9ee81d --- /dev/null +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse +definition = peopoly_moai + +[metadata] +setting_version = 5 +type = quality +quality_type = coarse +weight = 3 + +[values] +layer_height = 0.08 +speed_print = 90 +speed_travel = 120 +speed_travel_layer_0 = 100 +speed_wall = 90 diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg new file mode 100644 index 0000000000..2d21b1f7e0 --- /dev/null +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Draft +definition = peopoly_moai + +[metadata] +setting_version = 5 +type = quality +quality_type = draft +weight = 4 + +[values] +layer_height = 0.1 +speed_print = 85 +speed_travel = 120 +speed_travel_layer_0 = 100 +speed_wall = 85 +speed_slowdown_layers = 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 new file mode 100644 index 0000000000..796c2cff3c --- /dev/null +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Extra High +definition = peopoly_moai + +[metadata] +setting_version = 5 +type = quality +quality_type = extra_high +weight = 0 + +[values] +layer_height = 0.02 +speed_print = 185 +speed_travel = 185 +speed_travel_layer_0 = 100 +speed_wall = 185 +speed_slowdown_layers = 5 diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index 36b5f21ff8..b36163d9f1 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -1,6 +1,6 @@ [general] version = 4 -name = Extra Fine +name = High definition = peopoly_moai [metadata] @@ -10,8 +10,9 @@ quality_type = high weight = 1 [values] -infill_sparse_density = 70 -layer_height = 0.05 -top_bottom_thickness = 0.4 -wall_thickness = 0.4 -speed_print = 150 +layer_height = 0.04 +speed_print = 140 +speed_travel = 140 +speed_travel_layer_0 = 100 +speed_wall = 140 +speed_slowdown_layers = 4 diff --git a/resources/quality/peopoly_moai/peopoly_moai_max.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_max.inst.cfg deleted file mode 100644 index 48ffd07f33..0000000000 --- a/resources/quality/peopoly_moai/peopoly_moai_max.inst.cfg +++ /dev/null @@ -1,17 +0,0 @@ -[general] -version = 4 -name = Maximum Quality -definition = peopoly_moai - -[metadata] -setting_version = 5 -type = quality -quality_type = extra_high -weight = 2 - -[values] -infill_sparse_density = 70 -layer_height = 0.025 -top_bottom_thickness = 0.4 -wall_thickness = 0.4 -speed_print = 200 diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index f5fe799ac3..cf67591ab2 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -1,17 +1,17 @@ [general] version = 4 -name = Fine +name = Normal definition = peopoly_moai [metadata] setting_version = 5 type = quality quality_type = normal -weight = 0 +weight = 2 [values] -infill_sparse_density = 70 -layer_height = 0.1 -top_bottom_thickness = 0.4 -wall_thickness = 0.4 -speed_print = 100 +layer_height = 0.06 +speed_print = 120 +speed_travel = 120 +speed_travel_layer_0 = 100 +speed_wall = 120 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Draft_Print.inst.cfg new file mode 100644 index 0000000000..c8d64f9dcb --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Draft_Print.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = draft +weight = -2 +material = generic_abs +variant = AA 0.4 +buildplate = Aluminum + +[values] +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_print_temperature = =default_material_print_temperature + 20 +material_initial_print_temperature = =material_print_temperature - 15 +material_final_print_temperature = =material_print_temperature - 20 +prime_tower_enable = False +skin_overlap = 20 +speed_print = 60 +speed_layer_0 = 20 +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) + +material_bed_temperature_layer_0 = 100 +default_material_bed_temperature = 90 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Fast_Print.inst.cfg new file mode 100644 index 0000000000..c7fa604e89 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Fast_Print.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = fast +weight = -1 +material = generic_abs +variant = AA 0.4 +buildplate = Aluminum + +[values] +cool_min_speed = 7 +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_print_temperature = =default_material_print_temperature + 15 +material_initial_print_temperature = =material_print_temperature - 15 +material_final_print_temperature = =material_print_temperature - 20 +prime_tower_enable = False +speed_print = 60 +speed_layer_0 = 20 +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) + +material_bed_temperature_layer_0 = 100 +default_material_bed_temperature = 90 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_High_Quality.inst.cfg index 9a3eef5762..187023d3c0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_High_Quality.inst.cfg @@ -14,21 +14,21 @@ buildplate = Aluminum [values] cool_min_speed = 12 -layer_height_0 = 0.17 machine_nozzle_cool_down_speed = 0.8 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature = 90 -material_bed_temperature_layer_0 = 100 material_print_temperature = =default_material_print_temperature + 5 material_initial_print_temperature = =material_print_temperature - 15 material_final_print_temperature = =material_print_temperature - 20 -prime_blob_enable = False prime_tower_enable = False speed_print = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) +speed_layer_0 = 20 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) +material_bed_temperature_layer_0 = 100 +default_material_bed_temperature = 90 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..81cb27f060 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_ABS_Normal_Quality.inst.cfg @@ -0,0 +1,34 @@ +[general] +version = 4 +name = Fine +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = normal +weight = 0 +material = generic_abs +variant = AA 0.4 +buildplate = Aluminum + +[values] +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_print_temperature = =default_material_print_temperature + 10 +material_initial_print_temperature = =material_print_temperature - 15 +material_final_print_temperature = =material_print_temperature - 20 +prime_tower_enable = False +speed_print = 55 +speed_layer_0 = 20 +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) + +material_bed_temperature_layer_0 = 100 +default_material_bed_temperature = 90 +prime_blob_enable = False +layer_height_0 = 0.17 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Draft_Print.inst.cfg new file mode 100644 index 0000000000..46e3483a6a --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Draft_Print.inst.cfg @@ -0,0 +1,54 @@ +[general] +version = 4 +name = Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = draft +weight = -2 +material = generic_cpe_plus +variant = AA 0.4 +buildplate = Aluminum + +[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 +jerk_print = 25 +machine_min_cool_heat_time_window = 15 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 10 +material_print_temperature_layer_0 = =material_print_temperature +multiple_mesh_overlap = 0 +prime_tower_enable = True +prime_tower_wipe_enabled = True +retraction_combing = off +retraction_extrusion_window = 1 +retraction_hop = 0.2 +retraction_hop_enabled = False +retraction_hop_only_when_collides = True +skin_overlap = 20 +speed_layer_0 = 20 +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 40 / 50) + +speed_wall = =math.ceil(speed_print * 50 / 50) +speed_wall_0 = =math.ceil(speed_wall * 40 / 50) +support_bottom_distance = =support_z_distance +support_z_distance = =layer_height +wall_0_inset = 0 +wall_thickness = 1 + +material_bed_temperature_layer_0 = 115 +default_material_bed_temperature = 105 +prime_blob_enable = False +layer_height_0 = 0.17 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Fast_Print.inst.cfg new file mode 100644 index 0000000000..5c235b656a --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Fast_Print.inst.cfg @@ -0,0 +1,52 @@ +[general] +version = 4 +name = Normal +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = fast +weight = -1 +material = generic_cpe_plus +variant = AA 0.4 +buildplate = Aluminum + +[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 +jerk_print = 25 +machine_min_cool_heat_time_window = 15 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 10 +material_print_temperature_layer_0 = =material_print_temperature +multiple_mesh_overlap = 0 +prime_tower_enable = True +prime_tower_wipe_enabled = True +retraction_combing = off +retraction_extrusion_window = 1 +retraction_hop = 0.2 +retraction_hop_enabled = False +retraction_hop_only_when_collides = True +skin_overlap = 20 +speed_layer_0 = 20 +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 35 / 45) + +speed_wall = =math.ceil(speed_print * 45 / 45) +speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +support_bottom_distance = =support_z_distance +support_z_distance = =layer_height +wall_0_inset = 0 + +material_bed_temperature_layer_0 = 115 +default_material_bed_temperature = 105 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_High_Quality.inst.cfg index 8b0b08f731..326a730fe4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_High_Quality.inst.cfg @@ -22,18 +22,14 @@ infill_overlap = 0 infill_wipe_dist = 0 jerk_enabled = True jerk_print = 25 -layer_height_0 = 0.17 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature = 105 -material_bed_temperature_layer_0 = 115 material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 5 material_print_temperature = =default_material_print_temperature + 2 material_print_temperature_layer_0 = =material_print_temperature multiple_mesh_overlap = 0 -prime_blob_enable = False prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing = off @@ -42,7 +38,7 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True skin_overlap = 20 -speed_layer_0 = =math.ceil(speed_print * 20 / 40) +speed_layer_0 = 20 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) @@ -51,3 +47,9 @@ speed_wall_0 = =math.ceil(speed_wall * 30 / 35) support_bottom_distance = =support_z_distance support_z_distance = =layer_height wall_0_inset = 0 + +material_bed_temperature_layer_0 = 115 +default_material_bed_temperature = 105 +prime_blob_enable = False +layer_height_0 = 0.17 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..d40b2db90e --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPEP_Normal_Quality.inst.cfg @@ -0,0 +1,54 @@ +[general] +version = 4 +name = Fine +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = normal +weight = 0 +material = generic_cpe_plus +variant = AA 0.4 +buildplate = Aluminum + +[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 +jerk_print = 25 +machine_min_cool_heat_time_window = 15 +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 5 +material_print_temperature_layer_0 = =material_print_temperature +multiple_mesh_overlap = 0 +prime_tower_enable = True +prime_tower_wipe_enabled = True +retraction_combing = off +retraction_extrusion_window = 1 +retraction_hop = 0.2 +retraction_hop_enabled = False +retraction_hop_only_when_collides = True +skin_overlap = 20 +speed_layer_0 = 20 +speed_print = 40 +speed_topbottom = =math.ceil(speed_print * 30 / 35) + +speed_wall = =math.ceil(speed_print * 35 / 40) +speed_wall_0 = =math.ceil(speed_wall * 30 / 35) +support_bottom_distance = =support_z_distance +support_z_distance = =layer_height +wall_0_inset = 0 + +material_bed_temperature_layer_0 = 115 +default_material_bed_temperature = 105 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Draft_Print.inst.cfg new file mode 100644 index 0000000000..c812066e0c --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Draft_Print.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = draft +weight = -2 +material = generic_cpe +variant = AA 0.4 +buildplate = Aluminum + +[values] +material_print_temperature = =default_material_print_temperature + 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_final_print_temperature = =material_print_temperature - 10 +skin_overlap = 20 +speed_print = 60 +speed_layer_0 = 20 +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_pattern = zigzag +speed_infill = =math.ceil(speed_print * 50 / 60) +prime_tower_purge_volume = 1 + +material_bed_temperature_layer_0 = 90 +default_material_bed_temperature = 80 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Fast_Print.inst.cfg new file mode 100644 index 0000000000..ef634316da --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Fast_Print.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Normal +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = fast +weight = -1 +material = generic_cpe +variant = AA 0.4 +buildplate = Aluminum + +[values] +cool_min_speed = 7 +material_print_temperature = =default_material_print_temperature + 5 +material_initial_print_temperature = =material_print_temperature - 5 +material_final_print_temperature = =material_print_temperature - 10 +speed_print = 60 +speed_layer_0 = 20 +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 = zigzag +speed_infill = =math.ceil(speed_print * 50 / 60) +prime_tower_purge_volume = 1 + +material_bed_temperature_layer_0 = 90 +default_material_bed_temperature = 80 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_High_Quality.inst.cfg index 6299071194..cda97e6ab3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_High_Quality.inst.cfg @@ -14,19 +14,21 @@ buildplate = Aluminum [values] cool_min_speed = 12 -layer_height_0 = 0.17 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature = 80 -material_bed_temperature_layer_0 = 90 material_print_temperature = =default_material_print_temperature - 5 material_initial_print_temperature = =material_print_temperature - 5 material_final_print_temperature = =material_print_temperature - 10 -prime_blob_enable = False speed_print = 50 -speed_layer_0 = =math.ceil(speed_print * 20 / 50) +speed_layer_0 = 20 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 30 / 50) infill_pattern = zigzag -speed_infill = =math.ceil(speed_print * 40 / 50) \ No newline at end of file +speed_infill = =math.ceil(speed_print * 40 / 50) +prime_tower_purge_volume = 1 + +material_bed_temperature_layer_0 = 90 +default_material_bed_temperature = 80 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..5a75f3b6e3 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_CPE_Normal_Quality.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Fine +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = normal +weight = 0 +material = generic_cpe +variant = AA 0.4 +buildplate = Aluminum + +[values] +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_initial_print_temperature = =material_print_temperature - 5 +material_final_print_temperature = =material_print_temperature - 10 +speed_print = 55 +speed_layer_0 = 20 +speed_topbottom = =math.ceil(speed_print * 30 / 55) +speed_wall = =math.ceil(speed_print * 30 / 55) + +infill_pattern = zigzag +speed_infill = =math.ceil(speed_print * 45 / 55) +prime_tower_purge_volume = 1 + +material_bed_temperature_layer_0 = 90 +default_material_bed_temperature = 80 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Draft_Print.inst.cfg new file mode 100644 index 0000000000..f05ecddc25 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Draft_Print.inst.cfg @@ -0,0 +1,69 @@ +[general] +version = 4 +name = Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = draft +weight = -2 +material = generic_pc +variant = AA 0.4 +buildplate = Aluminum + +[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_wipe_dist = 0.1 +jerk_enabled = True +jerk_print = 25 +machine_min_cool_heat_time_window = 15 +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 10 +material_standby_temperature = 100 +multiple_mesh_overlap = 0 +ooze_shield_angle = 40 +prime_tower_enable = True +prime_tower_wipe_enabled = True +raft_airgap = 0.25 +raft_interface_thickness = =max(layer_height * 1.5, 0.225) +retraction_count_max = 80 +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 = 25 +speed_print = 50 +speed_topbottom = 25 +speed_wall = =math.ceil(speed_print * 40 / 50) +speed_wall_0 = =math.ceil(speed_wall * 25 / 40) +support_bottom_distance = =support_z_distance +support_interface_density = 87.5 +support_interface_pattern = lines +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 + +material_bed_temperature_layer_0 = 125 +default_material_bed_temperature = 115 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Fast_Print.inst.cfg new file mode 100644 index 0000000000..6103519f1c --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Fast_Print.inst.cfg @@ -0,0 +1,69 @@ +[general] +version = 4 +name = Normal +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = fast +weight = -1 +material = generic_pc +variant = AA 0.4 +buildplate = Aluminum + +[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_wipe_dist = 0.1 +jerk_enabled = True +jerk_print = 25 +machine_min_cool_heat_time_window = 15 +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature + 10 +material_standby_temperature = 100 +multiple_mesh_overlap = 0 +ooze_shield_angle = 40 +prime_tower_enable = True +prime_tower_wipe_enabled = True +raft_airgap = 0.25 +raft_interface_thickness = =max(layer_height * 1.5, 0.225) +retraction_count_max = 80 +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 = 25 +speed_print = 50 +speed_topbottom = 25 + +speed_wall = =math.ceil(speed_print * 40 / 50) +speed_wall_0 = =math.ceil(speed_wall * 25 / 40) +support_bottom_distance = =support_z_distance +support_interface_density = 87.5 +support_interface_pattern = lines +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 + +material_bed_temperature_layer_0 = 125 +default_material_bed_temperature = 115 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_High_Quality.inst.cfg index 2afaf21de1..130afb8c91 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_High_Quality.inst.cfg @@ -16,7 +16,7 @@ buildplate = Aluminum acceleration_enabled = True acceleration_print = 4000 adhesion_type = brim -brim_width = 10 +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 @@ -28,19 +28,15 @@ infill_pattern = triangles infill_wipe_dist = 0.1 jerk_enabled = True jerk_print = 25 -layer_height_0 = 0.17 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 -material_bed_temperature = 115 -material_bed_temperature_layer_0 = 125 material_final_print_temperature = =material_print_temperature - 10 material_initial_print_temperature = =material_print_temperature - 5 material_print_temperature = =default_material_print_temperature - 10 material_standby_temperature = 100 multiple_mesh_overlap = 0 ooze_shield_angle = 40 -prime_blob_enable = False prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 @@ -52,9 +48,9 @@ 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_layer_0 = 25 speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 25 / 50) +speed_topbottom = 25 speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) @@ -68,4 +64,7 @@ wall_0_inset = 0 wall_line_width_x = =round(line_width * 0.4 / 0.35, 2) wall_thickness = 1.2 - +material_bed_temperature_layer_0 = 125 +default_material_bed_temperature = 115 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..9e1bf394d4 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PC_Normal_Quality.inst.cfg @@ -0,0 +1,68 @@ +[general] +version = 4 +name = Fine +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = normal +weight = 0 +material = generic_pc +variant = AA 0.4 +buildplate = Aluminum + +[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_wipe_dist = 0.1 +jerk_enabled = True +jerk_print = 25 +machine_min_cool_heat_time_window = 15 +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_standby_temperature = 100 +multiple_mesh_overlap = 0 +ooze_shield_angle = 40 +prime_tower_enable = True +prime_tower_wipe_enabled = True +raft_airgap = 0.25 +raft_interface_thickness = =max(layer_height * 1.5, 0.225) +retraction_count_max = 80 +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 = 25 +speed_print = 50 +speed_topbottom = 25 + +speed_wall = =math.ceil(speed_print * 40 / 50) +speed_wall_0 = =math.ceil(speed_wall * 25 / 40) +support_bottom_distance = =support_z_distance +support_interface_density = 87.5 +support_interface_pattern = lines +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 + +material_bed_temperature_layer_0 = 125 +default_material_bed_temperature = 115 +prime_blob_enable = False +layer_height_0 = 0.17 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Draft_Print.inst.cfg new file mode 100644 index 0000000000..6124dff257 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Draft_Print.inst.cfg @@ -0,0 +1,65 @@ +[general] +version = 4 +name = Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = draft +weight = -2 +material = generic_pp +variant = AA 0.4 +buildplate = Aluminum + +[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_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 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =material_print_temperature + 5 +material_standby_temperature = 100 +multiple_mesh_overlap = 0 +prime_tower_enable = False +prime_tower_size = 16 +prime_tower_wipe_enabled = True +retraction_count_max = 12 +retraction_extra_prime_amount = 0.8 +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 = 15 +speed_print = 25 +speed_topbottom = =math.ceil(speed_print * 25 / 25) +speed_travel_layer_0 = 50 +speed_wall = =math.ceil(speed_print * 25 / 25) +speed_wall_0 = =math.ceil(speed_wall * 25 / 25) +support_angle = 50 +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 + +default_material_bed_temperature = 95 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Fast_Print.inst.cfg new file mode 100644 index 0000000000..2791e9f5d5 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Fast_Print.inst.cfg @@ -0,0 +1,67 @@ +[general] +version = 4 +name = Normal +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = fast +weight = -1 +material = generic_pp +variant = AA 0.4 +buildplate = Aluminum + +[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_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 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature - 12 +material_initial_print_temperature = =material_print_temperature - 2 +material_print_temperature = =default_material_print_temperature - 13 +material_print_temperature_layer_0 = =material_print_temperature + 3 +material_standby_temperature = 100 +multiple_mesh_overlap = 0 +prime_tower_enable = False +prime_tower_size = 16 +prime_tower_wipe_enabled = True +retraction_count_max = 12 +retraction_extra_prime_amount = 0.8 +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 = 15 +speed_print = 25 +speed_topbottom = =math.ceil(speed_print * 25 / 25) + +speed_travel_layer_0 = 50 +speed_wall = =math.ceil(speed_print * 25 / 25) +speed_wall_0 = =math.ceil(speed_wall * 25 / 25) +support_angle = 50 +switch_extruder_prime_speed = 15 +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 + +default_material_bed_temperature = 95 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..f78b4048fb --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_aluminum_PP_Normal_Quality.inst.cfg @@ -0,0 +1,68 @@ +[general] +version = 4 +name = Fine +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = normal +weight = 0 +material = generic_pp +variant = AA 0.4 +buildplate = Aluminum + +[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_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 +material_bed_temperature_layer_0 = =material_bed_temperature +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 5 +material_print_temperature = =default_material_print_temperature - 15 +material_print_temperature_layer_0 = =material_print_temperature + 3 +material_standby_temperature = 100 +multiple_mesh_overlap = 0 +prime_tower_enable = False +prime_tower_size = 16 +prime_tower_wipe_enabled = True +retraction_count_max = 12 +retraction_extra_prime_amount = 0.8 +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 = 15 +speed_print = 25 +speed_topbottom = =math.ceil(speed_print * 25 / 25) + +speed_travel_layer_0 = 50 +speed_wall = =math.ceil(speed_print * 25 / 25) +speed_wall_0 = =math.ceil(speed_wall * 25 / 25) +support_angle = 50 +switch_extruder_prime_speed = 15 +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 + +default_material_bed_temperature = 95 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Draft_Print.inst.cfg index 3d984e1dff..37dceff349 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Draft_Print.inst.cfg @@ -13,15 +13,16 @@ variant = AA 0.8 buildplate = Aluminum [values] -layer_height_0 = 0.3 line_width = =machine_nozzle_size * 0.875 -material_bed_temperature = 90 -material_bed_temperature_layer_0 = 100 material_print_temperature = =default_material_print_temperature + 20 material_standby_temperature = 100 -prime_blob_enable = False speed_print = 50 speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 30 / 40) retract_at_layer_change = False + +material_bed_temperature_layer_0 = 100 +default_material_bed_temperature = 90 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Superdraft_Print.inst.cfg new file mode 100644 index 0000000000..eac339baa8 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Superdraft_Print.inst.cfg @@ -0,0 +1,28 @@ +[general] +version = 4 +name = Sprint +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = superdraft +weight = -4 +material = generic_abs +variant = AA 0.8 +buildplate = Aluminum + +[values] +line_width = =machine_nozzle_size * 0.875 +material_print_temperature = =default_material_print_temperature + 25 +material_standby_temperature = 100 +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 30 / 50) +speed_wall = =math.ceil(speed_print * 40 / 50) +speed_wall_0 = =math.ceil(speed_wall * 30 / 40) +retract_at_layer_change = False + +material_bed_temperature_layer_0 = 100 +default_material_bed_temperature = 90 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Verydraft_Print.inst.cfg new file mode 100644 index 0000000000..590496df0f --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_ABS_Verydraft_Print.inst.cfg @@ -0,0 +1,28 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = verydraft +weight = -3 +material = generic_abs +variant = AA 0.8 +buildplate = Aluminum + +[values] +line_width = =machine_nozzle_size * 0.875 +material_print_temperature = =default_material_print_temperature + 22 +material_standby_temperature = 100 +speed_print = 50 +speed_topbottom = =math.ceil(speed_print * 30 / 50) +speed_wall = =math.ceil(speed_print * 40 / 50) +speed_wall_0 = =math.ceil(speed_wall * 30 / 40) +retract_at_layer_change = False + +material_bed_temperature_layer_0 = 100 +default_material_bed_temperature = 90 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Fast_Print.inst.cfg index 6fd60c197a..3e74390840 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Fast_Print.inst.cfg @@ -16,22 +16,18 @@ buildplate = Aluminum brim_width = 14 cool_fan_full_at_height = =layer_height_0 + 14 * layer_height infill_before_walls = True -layer_height_0 = 0.3 line_width = =machine_nozzle_size * 0.9375 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 -material_bed_temperature = 105 -material_bed_temperature_layer_0 = 115 material_print_temperature = =default_material_print_temperature - 10 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 -prime_blob_enable = False prime_tower_enable = True retraction_combing = off retraction_hop = 0.1 retraction_hop_enabled = False skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) +speed_layer_0 = 15 speed_print = 50 speed_slowdown_layers = 15 speed_topbottom = =math.ceil(speed_print * 35 / 50) @@ -41,3 +37,8 @@ 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 + +material_bed_temperature_layer_0 = 115 +default_material_bed_temperature = 105 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Superdraft_Print.inst.cfg new file mode 100644 index 0000000000..4c1b807430 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Superdraft_Print.inst.cfg @@ -0,0 +1,44 @@ +[general] +version = 4 +name = Sprint +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = superdraft +weight = -4 +material = generic_cpe_plus +variant = AA 0.8 +buildplate = Aluminum + +[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 +material_print_temperature_layer_0 = =material_print_temperature +material_standby_temperature = 100 +prime_tower_enable = True +retraction_combing = off +retraction_hop = 0.1 +retraction_hop_enabled = False +skin_overlap = 0 +speed_layer_0 = 15 +speed_print = 50 +speed_slowdown_layers = 8 +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 + +material_bed_temperature_layer_0 = 115 +default_material_bed_temperature = 105 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Verydraft_Print.inst.cfg new file mode 100644 index 0000000000..11aefc90cd --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPEP_Verydraft_Print.inst.cfg @@ -0,0 +1,44 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = verydraft +weight = -3 +material = generic_cpe_plus +variant = AA 0.8 +buildplate = Aluminum + +[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 +material_print_temperature_layer_0 = =material_print_temperature +material_standby_temperature = 100 +prime_tower_enable = True +retraction_combing = off +retraction_hop = 0.1 +retraction_hop_enabled = False +skin_overlap = 0 +speed_layer_0 = 15 +speed_print = 50 +speed_slowdown_layers = 10 +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 + +material_bed_temperature_layer_0 = 115 +default_material_bed_temperature = 105 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Draft_Print.inst.cfg index 37aa25f9d8..80c0585061 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Draft_Print.inst.cfg @@ -14,16 +14,18 @@ buildplate = Aluminum [values] brim_width = 15 -layer_height_0 = 0.3 line_width = =machine_nozzle_size * 0.875 -material_bed_temperature = 80 -material_bed_temperature_layer_0 = 90 material_print_temperature = =default_material_print_temperature + 15 material_standby_temperature = 100 -prime_blob_enable = False prime_tower_enable = True speed_print = 40 speed_topbottom = =math.ceil(speed_print * 25 / 40) speed_wall = =math.ceil(speed_print * 30 / 40) -jerk_travel = 50 \ No newline at end of file +jerk_travel = 50 +prime_tower_purge_volume = 1 + +material_bed_temperature_layer_0 = 90 +default_material_bed_temperature = 80 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Superdraft_Print.inst.cfg new file mode 100644 index 0000000000..5dcc454173 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Superdraft_Print.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Sprint +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = superdraft +weight = -4 +material = generic_cpe +variant = AA 0.8 +buildplate = Aluminum + +[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 +speed_print = 45 +speed_topbottom = =math.ceil(speed_print * 30 / 45) +speed_wall = =math.ceil(speed_print * 40 / 45) +speed_wall_0 = =math.ceil(speed_wall * 30 / 40) + +jerk_travel = 50 +prime_tower_purge_volume = 1 + +material_bed_temperature_layer_0 = 90 +default_material_bed_temperature = 80 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Verydraft_Print.inst.cfg new file mode 100644 index 0000000000..8423e109e8 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_CPE_Verydraft_Print.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = verydraft +weight = -3 +material = generic_cpe +variant = AA 0.8 +buildplate = Aluminum + +[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 +speed_print = 40 +speed_topbottom = =math.ceil(speed_print * 25 / 40) +speed_wall = =math.ceil(speed_print * 30 / 40) + +jerk_travel = 50 +prime_tower_purge_volume = 1 + +material_bed_temperature_layer_0 = 90 +default_material_bed_temperature = 80 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Fast_Print.inst.cfg index 9ebf2ea151..747e2fe8a5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Fast_Print.inst.cfg @@ -16,21 +16,22 @@ buildplate = Aluminum brim_width = 10 cool_fan_full_at_height = =layer_height_0 + 14 * layer_height infill_before_walls = True -layer_height_0 = 0.3 line_width = =machine_nozzle_size * 0.875 -material_bed_temperature = 115 -material_bed_temperature_layer_0 = 125 material_print_temperature = =default_material_print_temperature - 5 material_print_temperature_layer_0 = =material_print_temperature material_standby_temperature = 100 -prime_blob_enable = False raft_airgap = 0.5 raft_margin = 15 skin_overlap = 0 -speed_layer_0 = =math.ceil(speed_print * 15 / 50) +speed_layer_0 = 15 speed_print = 50 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) + +material_bed_temperature_layer_0 = 125 +default_material_bed_temperature = 115 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Superdraft_Print.inst.cfg new file mode 100644 index 0000000000..689652dc06 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Superdraft_Print.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Sprint +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = superdraft +weight = -2 +material = generic_pc +variant = AA 0.8 +buildplate = Aluminum + +[values] +brim_width = 10 +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 +raft_margin = 15 +skin_overlap = 0 +speed_layer_0 = 15 +speed_print = 50 +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) + +material_bed_temperature_layer_0 = 125 +default_material_bed_temperature = 115 +prime_blob_enable = False +layer_height_0 = 0.3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Verydraft_Print.inst.cfg new file mode 100644 index 0000000000..0480ee5620 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PC_Verydraft_Print.inst.cfg @@ -0,0 +1,38 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = verydraft +weight = -1 +material = generic_pc +variant = AA 0.8 +buildplate = Aluminum + +[values] +brim_width = 10 +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 +raft_airgap = 0.5 +raft_margin = 15 +skin_overlap = 0 +speed_layer_0 = 15 +speed_print = 50 +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) + +material_bed_temperature_layer_0 = 125 +default_material_bed_temperature = 115 +prime_blob_enable = False +layer_height_0 = 0.3 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Draft_Print.inst.cfg index 94bede16bd..b80af1b75f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Draft_Print.inst.cfg @@ -23,14 +23,14 @@ 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) -material_bed_temperature_layer_0 = =material_bed_temperature + 5 +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 material_standby_temperature = 100 multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 -prime_tower_min_volume = 10 +prime_tower_wall_thickness = =prime_tower_line_width * 2 retract_at_layer_change = False retraction_count_max = 12 retraction_extra_prime_amount = 0.5 @@ -51,3 +51,5 @@ 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 + +default_material_bed_temperature = 95 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Superdraft_Print.inst.cfg new file mode 100644 index 0000000000..970e0971a9 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Superdraft_Print.inst.cfg @@ -0,0 +1,56 @@ +[general] +version = 4 +name = Sprint +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = superdraft +weight = -4 +material = generic_pp +variant = AA 0.8 +buildplate = Aluminum + +[values] +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) +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 +material_standby_temperature = 100 +multiple_mesh_overlap = 0.2 +prime_tower_enable = True +prime_tower_flow = 100 +prime_tower_wall_thickness = =prime_tower_line_width * 2 +retract_at_layer_change = False +retraction_count_max = 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 + +default_material_bed_temperature = 95 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Verydraft_Print.inst.cfg new file mode 100644 index 0000000000..e51ba3207b --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_aluminum_PP_Verydraft_Print.inst.cfg @@ -0,0 +1,54 @@ +[general] +version = 4 +name = Extra Fast +definition = ultimaker_s5 + +[metadata] +setting_version = 5 +type = quality +quality_type = verydraft +weight = -3 +material = generic_pp +variant = AA 0.8 +buildplate = Aluminum + +[values] +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) +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature_layer_0 = =default_material_print_temperature + 2 +material_standby_temperature = 100 +multiple_mesh_overlap = 0.2 +prime_tower_enable = True +prime_tower_flow = 100 +prime_tower_wall_thickness = =prime_tower_line_width * 2 +retract_at_layer_change = False +retraction_count_max = 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 + +default_material_bed_temperature = 95 diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 0ca2cbab70..437790ef74 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -110,7 +110,6 @@ material_extrusion_cool_down_speed default_material_bed_temperature material_bed_temperature material_bed_temperature_layer_0 -material_diameter material_adhesion_tendency material_surface_energy material_flow @@ -360,7 +359,6 @@ coasting_min_volume coasting_speed skin_alternate_rotation cross_infill_pocket_size -cross_infill_apply_pockets_alternatingly spaghetti_infill_enabled spaghetti_infill_stepped spaghetti_max_infill_angle diff --git a/resources/themes/cura-light/icons/favorites_star_empty.svg b/resources/themes/cura-light/icons/favorites_star_empty.svg new file mode 100644 index 0000000000..bb1205e7a7 --- /dev/null +++ b/resources/themes/cura-light/icons/favorites_star_empty.svg @@ -0,0 +1,8 @@ + + + + + diff --git a/resources/themes/cura-light/icons/favorites_star_full.svg b/resources/themes/cura-light/icons/favorites_star_full.svg new file mode 100644 index 0000000000..aad45c5d02 --- /dev/null +++ b/resources/themes/cura-light/icons/favorites_star_full.svg @@ -0,0 +1,6 @@ + + + + + diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 7bcdafce98..c408146669 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -315,7 +315,13 @@ "tab_status_disconnected": [200, 200, 200, 255], "printer_config_matched": [12, 169, 227, 255], - "printer_config_mismatch": [127, 127, 127, 255] + "printer_config_mismatch": [127, 127, 127, 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] }, "sizes": { @@ -372,6 +378,10 @@ "small_button": [2, 2], "small_button_icon": [1.5, 1.5], + "favorites_row": [2, 2], + "favorites_button": [2, 2], + "favorites_button_icon": [1.2, 1.2], + "printer_status_icon": [1.8, 1.8], "printer_sync_icon": [1.2, 1.2], diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index 544728f8a4..3b54e0cdef 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -12,5 +12,5 @@ hardware_type = nozzle machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.05 speed_wall = =round(speed_print / 1.25, 1) -speed_wall_0 = =1 if speed_wall < 10 else (speed_wall - 10) +speed_wall_0 = =max(speed_wall - 10, 1) speed_topbottom = =round(speed_print / 2.25, 1) diff --git a/scripts/check_gcode_buffer.py b/scripts/check_gcode_buffer.py new file mode 100755 index 0000000000..2024ce2214 --- /dev/null +++ b/scripts/check_gcode_buffer.py @@ -0,0 +1,527 @@ +#!/usr/bin/env python3 +# Copyright (c) 2018 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import copy +import math +import os +import sys +from typing import Dict, List, Optional, Tuple + + +# ==================================== +# Constants and Default Values +# ==================================== +DEFAULT_BUFFER_FILLING_RATE_IN_C_PER_S = 50.0 # The buffer filling rate in #commands/s +DEFAULT_BUFFER_SIZE = 15 # The buffer size in #commands +MINIMUM_PLANNER_SPEED = 0.05 + +#Setting values for Ultimaker S5. +MACHINE_MAX_FEEDRATE_X = 300 +MACHINE_MAX_FEEDRATE_Y = 300 +MACHINE_MAX_FEEDRATE_Z = 40 +MACHINE_MAX_FEEDRATE_E = 45 +MACHINE_MAX_ACCELERATION_X = 9000 +MACHINE_MAX_ACCELERATION_Y = 9000 +MACHINE_MAX_ACCELERATION_Z = 100 +MACHINE_MAX_ACCELERATION_E = 10000 +MACHINE_MAX_JERK_XY = 20 +MACHINE_MAX_JERK_Z = 0.4 +MACHINE_MAX_JERK_E = 5 +MACHINE_MINIMUM_FEEDRATE = 0.001 +MACHINE_ACCELERATION = 3000 + +## Gets the code and number from the given g-code line. +def get_code_and_num(gcode_line: str) -> Tuple[str, str]: + gcode_line = gcode_line.strip() + cmd_code = gcode_line[0].upper() + cmd_num = str(gcode_line[1:]) + return cmd_code, cmd_num + +## Fetches arguments such as X1 Y2 Z3 from the given part list and returns a +# dict. +def get_value_dict(parts: List[str]) -> Dict[str, str]: + value_dict = {} + for p in parts: + p = p.strip() + if not p: + continue + code, num = get_code_and_num(p) + value_dict[code] = num + return value_dict + + +# ============================ +# Math Functions - Begin +# ============================ + +def calc_distance(pos1, pos2): + delta = {k: pos1[k] - pos2[k] for k in pos1} + distance = 0 + for value in delta.values(): + distance += value ** 2 + distance = math.sqrt(distance) + return distance + +## Given the initial speed, the target speed, and the acceleration, calculate +# the distance that's neede for the acceleration to finish. +def calc_acceleration_distance(init_speed: float, target_speed: float, acceleration: float) -> float: + if acceleration == 0: + return 0.0 + return (target_speed ** 2 - init_speed ** 2) / (2 * acceleration) + +## Gives the time it needs to accelerate from an initial speed to reach a final +# distance. +def calc_acceleration_time_from_distance(initial_feedrate: float, distance: float, acceleration: float) -> float: + discriminant = initial_feedrate ** 2 - 2 * acceleration * -distance + #If the discriminant is negative, we're moving in the wrong direction. + #Making the discriminant 0 then gives the extremum of the parabola instead of the intersection. + discriminant = max(0, discriminant) + return (-initial_feedrate + math.sqrt(discriminant)) / acceleration + +## Calculates the point at which you must start braking. +# +# This gives the distance from the start of a line at which you must start +# decelerating (at a rate of `-acceleration`) if you started at speed +# `initial_feedrate` and accelerated until this point and want to end at the +# `final_feedrate` after a total travel of `distance`. This can be used to +# compute the intersection point between acceleration and deceleration in the +# cases where the trapezoid has no plateau (i.e. never reaches maximum speed). +def calc_intersection_distance(initial_feedrate: float, final_feedrate: float, acceleration: float, distance: float) -> float: + if acceleration == 0: + return 0 + return (2 * acceleration * distance - initial_feedrate * initial_feedrate + final_feedrate * final_feedrate) / (4 * acceleration) + +## Calculates the maximum speed that is allowed at this point when you must be +# able to reach target_velocity using the acceleration within the allotted +# distance. +def calc_max_allowable_speed(acceleration: float, target_velocity: float, distance: float) -> float: + return math.sqrt(target_velocity * target_velocity - 2 * acceleration * distance) + + +class Command: + def __init__(self, cmd_str: str) -> None: + self._cmd_str = cmd_str # type: str + + self.estimated_exec_time = 0.0 # type: float + + self._cmd_process_function_map = { + "G": self._handle_g, + "M": self._handle_m, + "T": self._handle_t, + } + + self._is_comment = False # type: bool + self._is_empty = False # type: bool + + #Fields taken from CuraEngine's implementation. + self._recalculate = False + self._accelerate_until = 0 + self._decelerate_after = 0 + self._initial_feedrate = 0 + self._final_feedrate = 0 + self._entry_speed = 0 + self._max_entry_speed =0 + self._nominal_length = False + self._nominal_feedrate = 0 + self._max_travel = 0 + self._distance = 0 + self._acceleration = 0 + self._delta = [0, 0, 0] + self._abs_delta = [0, 0, 0] + + ## Calculate the velocity-time trapezoid function for this move. + # + # Each move has a three-part function mapping time to velocity. + def calculate_trapezoid(self, entry_factor, exit_factor): + initial_feedrate = self._nominal_feedrate * entry_factor + final_feedrate = self._nominal_feedrate * exit_factor + + #How far are we accelerating and how far are we decelerating? + accelerate_distance = calc_acceleration_distance(initial_feedrate, self._nominal_feedrate, self._acceleration) + decelerate_distance = calc_acceleration_distance(self._nominal_feedrate, final_feedrate, -self._acceleration) + plateau_distance = self._distance - accelerate_distance - decelerate_distance #And how far in between at max speed? + + #Is the plateau negative size? That means no cruising, and we'll have to + #use intersection_distance to calculate when to abort acceleration and + #start braking in order to reach the final_rate exactly at the end of + #this command. + if plateau_distance < 0: + accelerate_distance = calc_intersection_distance(initial_feedrate, final_feedrate, self._acceleration, self._distance) + accelerate_distance = max(accelerate_distance, 0) #Due to rounding errors. + accelerate_distance = min(accelerate_distance, self._distance) + plateau_distance = 0 + + self._accelerate_until = accelerate_distance + self._decelerate_after = accelerate_distance + plateau_distance + self._initial_feedrate = initial_feedrate + self._final_feedrate = final_feedrate + + @property + def is_command(self) -> bool: + return not self._is_comment and not self._is_empty + + def __str__(self) -> str: + if self._is_comment or self._is_empty: + return self._cmd_str + + info = "t=%s" % (self.estimated_exec_time) + + return self._cmd_str.strip() + " ; --- " + info + os.linesep + + ## Estimates the execution time of this command and calculates the state + # after this command is executed. + def parse(self) -> None: + line = self._cmd_str.strip() + if not line: + self._is_empty = True + return + if line.startswith(";"): + self._is_comment = True + return + + # Remove comment + line = line.split(";", 1)[0].strip() + + parts = line.split(" ") + cmd_code, cmd_num = get_code_and_num(parts[0]) + cmd_num = int(cmd_num) + + func = self._cmd_process_function_map.get(cmd_code) + if func is None: + print("!!! no handle function for command type [%s]" % cmd_code) + return + func(cmd_num, parts) + + def _handle_g(self, cmd_num: int, parts: List[str]) -> None: + self.estimated_exec_time = 0.0 + + # G10: Retract. Make this behave as if it's a retraction of 25mm. + if cmd_num == 10: + #TODO: If already retracted, this shouldn't add anything to the time. + cmd_num = 1 + parts = ["G1", "E" + str(buf.current_position[3] - 25)] + # G11: Unretract. Make this behave as if it's an unretraction of 25mm. + elif cmd_num == 11: + #TODO: If already unretracted, this shouldn't add anything to the time. + cmd_num = 1 + parts = ["G1", "E" + str(buf.current_position[3] + 25)] + + # G0 and G1: Move + if cmd_num in (0, 1): + # Move + if len(parts) > 0: + value_dict = get_value_dict(parts[1:]) + + new_position = copy.deepcopy(buf.current_position) + new_position[0] = float(value_dict.get("X", new_position[0])) + new_position[1] = float(value_dict.get("Y", new_position[1])) + new_position[2] = float(value_dict.get("Z", new_position[2])) + new_position[3] = float(value_dict.get("E", new_position[3])) + buf.current_feedrate = float(value_dict.get("F", buf.current_feedrate * 60.0)) / 60.0 + if buf.current_feedrate < MACHINE_MINIMUM_FEEDRATE: + buf.current_feedrate = MACHINE_MINIMUM_FEEDRATE + + self._delta = [ + new_position[0] - buf.current_position[0], + new_position[1] - buf.current_position[1], + new_position[2] - buf.current_position[2], + new_position[3] - buf.current_position[3] + ] + self._abs_delta = [abs(x) for x in self._delta] + self._max_travel = max(self._abs_delta) + if self._max_travel > 0: + self._nominal_feedrate = buf.current_feedrate + self._distance = math.sqrt(self._abs_delta[0] ** 2 + self._abs_delta[1] ** 2 + self._abs_delta[2] ** 2) + if self._distance == 0: + self._distance = self._abs_delta[3] + + current_feedrate = [d * self._nominal_feedrate / self._distance for d in self._delta] + current_abs_feedrate = [abs(f) for f in current_feedrate] + feedrate_factor = min(1.0, MACHINE_MAX_FEEDRATE_X) + feedrate_factor = min(feedrate_factor, MACHINE_MAX_FEEDRATE_Y) + feedrate_factor = min(feedrate_factor, buf.max_z_feedrate) + feedrate_factor = min(feedrate_factor, MACHINE_MAX_FEEDRATE_E) + #TODO: XY_FREQUENCY_LIMIT + + current_feedrate = [f * feedrate_factor for f in current_feedrate] + current_abs_feedrate = [f * feedrate_factor for f in current_abs_feedrate] + self._nominal_feedrate *= feedrate_factor + + self._acceleration = MACHINE_ACCELERATION + max_accelerations = [MACHINE_MAX_ACCELERATION_X, MACHINE_MAX_ACCELERATION_Y, MACHINE_MAX_ACCELERATION_Z, MACHINE_MAX_ACCELERATION_E] + for n in range(len(max_accelerations)): + if self._acceleration * self._abs_delta[n] / self._distance > max_accelerations[n]: + self._acceleration = max_accelerations[n] + + vmax_junction = MACHINE_MAX_JERK_XY / 2 + vmax_junction_factor = 1.0 + if current_abs_feedrate[2] > buf.max_z_jerk / 2: + vmax_junction = min(vmax_junction, buf.max_z_jerk) + if current_abs_feedrate[3] > buf.max_e_jerk / 2: + vmax_junction = min(vmax_junction, buf.max_e_jerk) + vmax_junction = min(vmax_junction, self._nominal_feedrate) + safe_speed = vmax_junction + + if buf.previous_nominal_feedrate > 0.0001: + xy_jerk = math.sqrt((current_feedrate[0] - buf.previous_feedrate[0]) ** 2 + (current_feedrate[1] - buf.previous_feedrate[1]) ** 2) + vmax_junction = self._nominal_feedrate + if xy_jerk > MACHINE_MAX_JERK_XY: + vmax_junction_factor = MACHINE_MAX_JERK_XY / xy_jerk + if abs(current_feedrate[2] - buf.previous_feedrate[2]) > MACHINE_MAX_JERK_Z: + vmax_junction_factor = min(vmax_junction_factor, (MACHINE_MAX_JERK_Z / abs(current_feedrate[2] - buf.previous_feedrate[2]))) + if abs(current_feedrate[3] - buf.previous_feedrate[3]) > MACHINE_MAX_JERK_E: + vmax_junction_factor = min(vmax_junction_factor, (MACHINE_MAX_JERK_E / abs(current_feedrate[3] - buf.previous_feedrate[3]))) + vmax_junction = min(buf.previous_nominal_feedrate, vmax_junction * vmax_junction_factor) #Limit speed to max previous speed. + + self._max_entry_speed = vmax_junction + v_allowable = calc_max_allowable_speed(-self._acceleration, MINIMUM_PLANNER_SPEED, self._distance) + self._entry_speed = min(vmax_junction, v_allowable) + self._nominal_length = self._nominal_feedrate <= v_allowable + self._recalculate = True + + buf.previous_feedrate = current_feedrate + buf.previous_nominal_feedrate = self._nominal_feedrate + buf.current_position = new_position + + self.calculate_trapezoid(self._entry_speed / self._nominal_feedrate, safe_speed / self._nominal_feedrate) + + self.estimated_exec_time = -1 #Signal that we need to include this in our second pass. + + # G4: Dwell, pause the machine for a period of time. + elif cmd_num == 4: + # Pnnn is time to wait in milliseconds (P0 wait until all previous moves are finished) + cmd, num = get_code_and_num(parts[1]) + num = float(num) + if cmd == "P": + if num > 0: + self.estimated_exec_time = num + + def _handle_m(self, cmd_num: int, parts: List[str]) -> None: + self.estimated_exec_time = 0.0 + + # M203: Set maximum feedrate. Only Z is supported. Assume 0 execution time. + if cmd_num == 203: + value_dict = get_value_dict(parts[1:]) + buf.max_z_feedrate = value_dict.get("Z", buf.max_z_feedrate) + + # M204: Set default acceleration. Assume 0 execution time. + if cmd_num == 204: + value_dict = get_value_dict(parts[1:]) + buf.acceleration = value_dict.get("S", buf.acceleration) + + # M205: Advanced settings, we only set jerks for Griffin. Assume 0 execution time. + if cmd_num == 205: + value_dict = get_value_dict(parts[1:]) + buf.max_xy_jerk = value_dict.get("XY", buf.max_xy_jerk) + buf.max_z_jerk = value_dict.get("Z", buf.max_z_jerk) + buf.max_e_jerk = value_dict.get("E", buf.max_e_jerk) + + def _handle_t(self, cmd_num: int, parts: List[str]) -> None: + # Tn: Switching extruder. Assume 0 seconds. Actually more like 2. + self.estimated_exec_time = 0.0 + + +class CommandBuffer: + def __init__(self, all_lines: List[str], + buffer_filling_rate: float = DEFAULT_BUFFER_FILLING_RATE_IN_C_PER_S, + buffer_size: int = DEFAULT_BUFFER_SIZE + ) -> None: + self._all_lines = all_lines + self._all_commands = list() + + self._buffer_filling_rate = buffer_filling_rate # type: float + self._buffer_size = buffer_size # type: int + + self.acceleration = 3000 + self.current_position = [0, 0, 0, 0] + self.current_feedrate = 0 + self.max_xy_jerk = MACHINE_MAX_JERK_XY + self.max_z_jerk = MACHINE_MAX_JERK_Z + self.max_e_jerk = MACHINE_MAX_JERK_E + self.max_z_feedrate = MACHINE_MAX_FEEDRATE_Z + + # If the buffer can depletes less than this amount time, it can be filled up in time. + lower_bound_buffer_depletion_time = self._buffer_size / self._buffer_filling_rate # type: float + + self._detection_time_frame = lower_bound_buffer_depletion_time + self._code_count_limit = self._buffer_size + self.total_time = 0.0 + + self.previous_feedrate = [0, 0, 0, 0] + self.previous_nominal_feedrate = 0 + + print("Command speed: %s" % buffer_filling_rate) + print("Code Limit: %s" % self._code_count_limit) + + self._bad_frame_ranges = [] + + def process(self) -> None: + buf.total_time = 0.0 + cmd0_idx = 0 + total_frame_time = 0.0 + cmd_count = 0 + for idx, line in enumerate(self._all_lines): + cmd = Command(line) + cmd.parse() + if not cmd.is_command: + continue + self._all_commands.append(cmd) + + #Second pass: Reverse kernel. + kernel_commands = [None, None, None] + for cmd in reversed(self._all_commands): + if cmd.estimated_exec_time >= 0: + continue #Not a movement command. + kernel_commands[2] = kernel_commands[1] + kernel_commands[1] = kernel_commands[0] + kernel_commands[0] = cmd + self.reverse_pass_kernel(kernel_commands[0], kernel_commands[1], kernel_commands[2]) + + #Third pass: Forward kernel. + kernel_commands = [None, None, None] + for cmd in self._all_commands: + if cmd.estimated_exec_time >= 0: + continue #Not a movement command. + kernel_commands[0] = kernel_commands[1] + kernel_commands[1] = kernel_commands[2] + kernel_commands[2] = cmd + self.forward_pass_kernel(kernel_commands[0], kernel_commands[1], kernel_commands[2]) + self.forward_pass_kernel(kernel_commands[1], kernel_commands[2], None) + + #Fourth pass: Recalculate the commands that have _recalculate set. + previous = None + current = None + for current in self._all_commands: + if current.estimated_exec_time >= 0: + current = None + continue #Not a movement command. + + if previous: + #Recalculate if current command entry or exit junction speed has changed. + if previous._recalculate or current._recalculate: + #Note: Entry and exit factors always >0 by all previous logic operators. + previous.calculate_trapezoid(previous._entry_speed / previous._nominal_feedrate, current._entry_speed / previous._nominal_feedrate) + previous._recalculate = False + + previous = current + if current is not None and current.estimated_exec_time >= 0: + current.calculate_trapezoid(current._entry_speed / current._nominal_feedrate, MINIMUM_PLANNER_SPEED / current._nominal_feedrate) + current._recalculate = False + + #Fifth pass: Compute time for movement commands. + for cmd in self._all_commands: + if cmd.estimated_exec_time >= 0: + continue #Not a movement command. + plateau_distance = cmd._decelerate_after - cmd._accelerate_until + cmd.estimated_exec_time = calc_acceleration_time_from_distance(cmd._initial_feedrate, cmd._accelerate_until, cmd._acceleration) + cmd.estimated_exec_time += plateau_distance / cmd._nominal_feedrate + cmd.estimated_exec_time += calc_acceleration_time_from_distance(cmd._final_feedrate, (cmd._distance - cmd._decelerate_after), cmd._acceleration) + + for idx, cmd in enumerate(self._all_commands): + cmd_count += 1 + if idx > cmd0_idx or idx == 0: + buf.total_time += cmd.estimated_exec_time + total_frame_time += cmd.estimated_exec_time + + if total_frame_time > 1: + # Find the next starting command which makes the total execution time of the frame to be less than + # 1 second. + cmd0_idx += 1 + total_frame_time -= self._all_commands[cmd0_idx].estimated_exec_time + cmd_count -= 1 + while total_frame_time > 1: + cmd0_idx += 1 + total_frame_time -= self._all_commands[cmd0_idx].estimated_exec_time + cmd_count -= 1 + + # If within the current time frame the code count exceeds the limit, record that. + if total_frame_time <= self._detection_time_frame and cmd_count > self._code_count_limit: + need_to_append = True + if self._bad_frame_ranges: + last_item = self._bad_frame_ranges[-1] + if last_item["start_line"] == cmd0_idx: + last_item["end_line"] = idx + last_item["cmd_count"] = cmd_count + last_item["time"] = total_frame_time + need_to_append = False + if need_to_append: + self._bad_frame_ranges.append({"start_line": cmd0_idx, + "end_line": idx, + "cmd_count": cmd_count, + "time": total_frame_time}) + + def reverse_pass_kernel(self, previous: Optional[Command], current: Optional[Command], next: Optional[Command]) -> None: + if not current or not next: + return + + #If entry speed is already at the maximum entry speed, no need to + #recheck. The command is cruising. If not, the command is in state of + #acceleration or deceleration. Reset entry speed to maximum and check + #for maximum allowable speed reductions to ensure maximum possible + #planned speed. + if current._entry_speed != current._max_entry_speed: + #If nominal length is true, max junction speed is guaranteed to be + #reached. Only compute for max allowable speed if block is + #decelerating and nominal length is false. + if not current._nominal_length and current._max_entry_speed > next._max_entry_speed: + current._entry_speed = min(current._max_entry_speed, calc_max_allowable_speed(-current._acceleration, next._entry_speed, current._distance)) + else: + current._entry_speed = current._max_entry_speed + current._recalculate = True + + def forward_pass_kernel(self, previous: Optional[Command], current: Optional[Command], next: Optional[Command]) -> None: + if not previous: + return + + #If the previous command is an acceleration command, but it is not long + #enough to complete the full speed change within the command, we need to + #adjust the entry speed accordingly. Entry speeds have already been + #reset, maximised and reverse planned by the reverse planner. If nominal + #length is set, max junction speed is guaranteed to be reached. No need + #to recheck. + if not previous._nominal_length: + if previous._entry_speed < current._entry_speed: + entry_speed = min(current._entry_speed, calc_max_allowable_speed(-previous._acceleration, previous._entry_speed, previous._distance)) + + if current._entry_speed != entry_speed: + current._entry_speed = entry_speed + current._recalculate = True + + def to_file(self, file_name: str) -> None: + all_lines = [str(c) for c in self._all_commands] + with open(file_name, "w", encoding = "utf-8") as f: + f.writelines(all_lines) + f.write(";---TOTAL ESTIMATED TIME:" + str(self.total_time)) + + def report(self) -> None: + for item in self._bad_frame_ranges: + print("Potential buffer underrun from line {start_line} to {end_line}, code count = {code_count}, in {time}s ({speed} cmd/s)".format( + start_line = item["start_line"], + end_line = item["end_line"], + code_count = item["cmd_count"], + time = round(item["time"], 4), + speed = round(item["cmd_count"] / item["time"], 2))) + print("Total predicted number of buffer underruns:", len(self._bad_frame_ranges)) + + +if __name__ == "__main__": + if len(sys.argv) < 2 or 3 < len(sys.argv): + print("Usage: [output gcode]") + sys.exit(1) + in_filename = sys.argv[1] + out_filename = None + if len(sys.argv) == 3: + out_filename = sys.argv[2] + + with open(in_filename, "r", encoding = "utf-8") as f: + all_lines = f.readlines() + + buf = CommandBuffer(all_lines) + buf.process() + + # Output annotated gcode is optional + if out_filename is not None: + buf.to_file(out_filename) + + buf.report() diff --git a/scripts/check_setting_visibility.py b/scripts/check_setting_visibility.py new file mode 100755 index 0000000000..8fb5d5b293 --- /dev/null +++ b/scripts/check_setting_visibility.py @@ -0,0 +1,239 @@ +#!/usr/bin/env python3 +# +# This script checks the correctness of the list of visibility settings +# +import collections +import configparser +import json +import os +import sys +from typing import Any, Dict, List + +# Directory where this python file resides +SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) + + +# +# This class +# +class SettingVisibilityInspection: + + def __init__(self) -> None: + # The order of settings type. If the setting is in basic list then it also should be in expert + self._setting_visibility_order = ["basic", "advanced", "expert"] + + # This is dictionary with categories as keys and all setting keys as values. + self.all_settings_keys = {} # type: Dict[str, List[str]] + + # Load all Cura setting keys from the given fdmprinter.json file + def loadAllCuraSettingKeys(self, fdmprinter_json_path: str) -> None: + with open(fdmprinter_json_path, "r", encoding = "utf-8") as f: + json_data = json.load(f) + + # Get all settings keys in each category + for key, data in json_data["settings"].items(): # top level settings are categories + if "type" in data and data["type"] == "category": + self.all_settings_keys[key] = [] + self._flattenSettings(data["children"], key) # actual settings are children of top level category-settings + + def _flattenSettings(self, settings: Dict[str, str], category: str) -> None: + for key, setting in settings.items(): + if "type" in setting and setting["type"] != "category": + self.all_settings_keys[category].append(key) + + if "children" in setting: + self._flattenSettings(setting["children"], category) + + # Loads the given setting visibility file and returns a dict with categories as keys and a list of setting keys as + # values. + def _loadSettingVisibilityConfigFile(self, file_name: str) -> Dict[str, List[str]]: + with open(file_name, "r", encoding = "utf-8") as f: + parser = configparser.ConfigParser(allow_no_value = True) + parser.read_file(f) + + data_dict = {} + for category, option_dict in parser.items(): + if category in (parser.default_section, "general"): + continue + + data_dict[category] = [] + for key in option_dict: + data_dict[category].append(key) + + return data_dict + + def validateSettingsVisibility(self, setting_visibility_files: Dict[str, str]) -> Dict[str, Dict[str, Any]]: + # First load all setting visibility files into the dict "setting_visibility_dict" in the following structure: + # -> -> + # "basic" -> "info" + setting_visibility_dict = {} # type: Dict[str, Dict[str, List[str]]] + for visibility_name, file_path in setting_visibility_files.items(): + setting_visibility_dict[visibility_name] = self._loadSettingVisibilityConfigFile(file_path) + + # The result is in the format: + # -> dict + # "basic" -> "file_name": "basic.cfg" + # "is_valid": True / False + # "invalid_categories": List[str] + # "invalid_settings": Dict[category -> List[str]] + # "missing_categories_from_previous": List[str] + # "missing_settings_from_previous": Dict[category -> List[str]] + all_result_dict = dict() # type: Dict[str, Dict[str, Any]] + + previous_result = None + previous_visibility_dict = None + is_all_valid = True + for visibility_name in self._setting_visibility_order: + invalid_categories = [] + invalid_settings = collections.defaultdict(list) + + this_visibility_dict = setting_visibility_dict[visibility_name] + # Check if categories and keys exist at all + for category, key_list in this_visibility_dict.items(): + if category not in self.all_settings_keys: + invalid_categories.append(category) + continue # If this category doesn't exist at all, not need to check for details + + for key in key_list: + if key not in self.all_settings_keys[category]: + invalid_settings[category].append(key) + + is_settings_valid = len(invalid_categories) == 0 and len(invalid_settings) == 0 + file_path = setting_visibility_files[visibility_name] + result_dict = {"file_name": os.path.basename(file_path), + "is_valid": is_settings_valid, + "invalid_categories": invalid_categories, + "invalid_settings": invalid_settings, + "missing_categories_from_previous": list(), + "missing_settings_from_previous": dict(), + } + + # If this is not the first item in the list, check if the settings are defined in the previous + # visibility file. + # A visibility with more details SHOULD add more settings. It SHOULD NOT remove any settings defined + # in the less detailed visibility. + if previous_visibility_dict is not None: + missing_categories_from_previous = [] + missing_settings_from_previous = collections.defaultdict(list) + + for prev_category, prev_key_list in previous_visibility_dict.items(): + # Skip the categories that are invalid + if prev_category in previous_result["invalid_categories"]: + continue + if prev_category not in this_visibility_dict: + missing_categories_from_previous.append(prev_category) + continue + + this_key_list = this_visibility_dict[prev_category] + for key in prev_key_list: + # Skip the settings that are invalid + if key in previous_result["invalid_settings"][prev_category]: + continue + + if key not in this_key_list: + missing_settings_from_previous[prev_category].append(key) + + result_dict["missing_categories_from_previous"] = missing_categories_from_previous + result_dict["missing_settings_from_previous"] = missing_settings_from_previous + is_settings_valid = len(missing_categories_from_previous) == 0 and len(missing_settings_from_previous) == 0 + result_dict["is_valid"] = result_dict["is_valid"] and is_settings_valid + + # Update the complete result dict + all_result_dict[visibility_name] = result_dict + previous_result = result_dict + previous_visibility_dict = this_visibility_dict + + is_all_valid = is_all_valid and result_dict["is_valid"] + + all_result_dict["all_results"] = {"is_valid": is_all_valid} + + return all_result_dict + + def printResults(self, all_result_dict: Dict[str, Dict[str, Any]]) -> None: + print("") + print("Setting Visibility Check Results:") + + prev_visibility_name = None + for visibility_name in self._setting_visibility_order: + if visibility_name not in all_result_dict: + continue + + result_dict = all_result_dict[visibility_name] + print("=============================") + result_str = "OK" if result_dict["is_valid"] else "INVALID" + print("[%s] : [%s] : %s" % (visibility_name, result_dict["file_name"], result_str)) + + if result_dict["is_valid"]: + continue + + # Print details of invalid settings + if result_dict["invalid_categories"]: + print("It has the following non-existing CATEGORIES:") + for category in result_dict["invalid_categories"]: + print(" - [%s]" % category) + + if result_dict["invalid_settings"]: + print("") + print("It has the following non-existing SETTINGS:") + for category, key_list in result_dict["invalid_settings"].items(): + for key in key_list: + print(" - [%s / %s]" % (category, key)) + + if prev_visibility_name is not None: + if result_dict["missing_categories_from_previous"]: + print("") + print("The following CATEGORIES are defined in the previous visibility [%s] but not here:" % prev_visibility_name) + for category in result_dict["missing_categories_from_previous"]: + print(" - [%s]" % category) + + if result_dict["missing_settings_from_previous"]: + print("") + print("The following SETTINGS are defined in the previous visibility [%s] but not here:" % prev_visibility_name) + for category, key_list in result_dict["missing_settings_from_previous"].items(): + for key in key_list: + print(" - [%s / %s]" % (category, key)) + + print("") + prev_visibility_name = visibility_name + + +# +# Returns a dictionary of setting visibility .CFG files in the given search directory. +# The dict has the name of the visibility type as the key (such as "basic", "advanced", "expert"), and +# the actual file path (absolute path). +# +def getAllSettingVisiblityFiles(search_dir: str) -> Dict[str, str]: + visibility_file_dict = dict() + extension = ".cfg" + for file_name in os.listdir(search_dir): + file_path = os.path.join(search_dir, file_name) + + # Only check files that has the .cfg extension + if not os.path.isfile(file_path): + continue + if not file_path.endswith(extension): + continue + + base_filename = os.path.basename(file_name)[:-len(extension)] + visibility_file_dict[base_filename] = file_path + return visibility_file_dict + + +def main() -> None: + setting_visibility_files_dir = os.path.abspath(os.path.join(SCRIPT_DIR, "..", "resources", "setting_visibility")) + fdmprinter_def_path = os.path.abspath(os.path.join(SCRIPT_DIR, "..", "resources", "definitions", "fdmprinter.def.json")) + + setting_visibility_files_dict = getAllSettingVisiblityFiles(setting_visibility_files_dir) + + inspector = SettingVisibilityInspection() + inspector.loadAllCuraSettingKeys(fdmprinter_def_path) + + check_result = inspector.validateSettingsVisibility(setting_visibility_files_dict) + is_result_valid = check_result["all_results"]["is_valid"] + inspector.printResults(check_result) + + sys.exit(0 if is_result_valid else 1) + + +if __name__ == "__main__": + main() diff --git a/scripts/check_shortcut_keys.py b/scripts/check_shortcut_keys.py new file mode 100755 index 0000000000..a47a8143f7 --- /dev/null +++ b/scripts/check_shortcut_keys.py @@ -0,0 +1,139 @@ +#!/usr/bin/env python3 +# +# This script checks for duplicate shortcut keys in all translation files. +# +import collections +import os +import sys +from typing import Optional + +COLOR_WARNING = '\033[93m' +COLOR_ENDC = '\033[0m' + +regex_patter = '(&[\w])' #"&[a-zA-Z0-9]" - Search char '&' and at least one character after it + +# Directory where this python file resides +SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) + + +class ShortcutKeysChecker: + + MSGCTXT = "msgctxt" # Scope of the text . Like : msgctxt "@action:inmenu menubar:help" + MSGID = "msgid" # The id tag, also English text version + MSGSTR = "msgstr" # The translation tag + + def has_duplicates(self, filename: str) -> bool: + """ + Checks if the given file has duplicate shortcut keys. + """ + with open(filename, "r", encoding = "utf-8") as f: + all_lines = f.readlines() + + all_lines = [l.strip() for l in all_lines] + shortcut_dict = collections.defaultdict(dict) + found_ctxt = False + current_data = dict() + current_field = None + start_line = None + + for idx, line in enumerate(all_lines): + if line.startswith(self.MSGCTXT): + found_ctxt = True + current_data.clear() + current_field = self.MSGCTXT + current_data[current_field] = self._fetch_data(line) + start_line = idx + continue + + elif found_ctxt and line.startswith(self.MSGID): + current_field = self.MSGID + current_data[current_field] = self._fetch_data(line) + continue + + elif found_ctxt and line.startswith(self.MSGSTR): + current_field = self.MSGSTR + current_data[current_field] = self._fetch_data(line) + continue + + elif found_ctxt and line.startswith('"'): + data = line[1:-1] # strip the beginning and ending double-quotes + current_data[current_field] += data + continue + + if current_data: + self._process_translation(shortcut_dict, current_data, start_line) + + current_data.clear() + current_field = None + found_ctxt = False + start_line = None + + return self._show_all_duplicates(shortcut_dict, filename) + + def _fetch_data(self, line: str) -> str: + return (line.split(" ", 1)[-1])[1:-1] + + def _process_translation(self, shortcut_dict: dict, data_dict: dict, start_line: int) -> None: + # Only check the ones with shortcuts + msg = data_dict[self.MSGID] + if data_dict[self.MSGSTR]: + msg = data_dict[self.MSGSTR] + shortcut_key = self._get_shortcut_key(msg) + if shortcut_key is None: + return + + msg_section = data_dict[self.MSGCTXT] + keys_dict = shortcut_dict[msg_section] + if shortcut_key not in keys_dict: + keys_dict[shortcut_key] = {"shortcut_key": shortcut_key, + "section": msg_section, + "existing_lines": dict(), + } + existing_data_dict = keys_dict[shortcut_key]["existing_lines"] + existing_data_dict[start_line] = {"message": msg, + } + + def _get_shortcut_key(self, text: str) -> Optional[str]: + key = None + if text.count("&") == 1: + idx = text.find("&") + 1 + if idx < len(text): + character = text[idx] + if not character.isspace(): + key = character.lower() + return key + + def _show_all_duplicates(self, shortcut_dict: dict, filename: str) -> bool: + has_duplicates = False + for keys_dict in shortcut_dict.values(): + for shortcut_key, data_dict in keys_dict.items(): + if len(data_dict["existing_lines"]) == 1: + continue + + has_duplicates = True + + print("") + print("The following messages have the same shortcut key '%s':" % shortcut_key) + print(" shortcut: '%s'" % data_dict["shortcut_key"]) + print(" section : '%s'" % data_dict["section"]) + for line, msg in data_dict["existing_lines"].items(): + relative_filename = (filename.rsplit("..", 1)[-1])[1:] + print(" - [%s] L%7d : '%s'" % (relative_filename, line, msg["message"])) + + return has_duplicates + + +if __name__ == "__main__": + checker = ShortcutKeysChecker() + all_dirnames = [""] + for _, dirnames, _ in os.walk(os.path.join(SCRIPT_DIR, "..", "resources", "i18n")): + all_dirnames += [dn for dn in dirnames] + break + + found_duplicates = False + for dirname in all_dirnames: + file_name = "cura.pot" if not dirname else "cura.po" + file_path = os.path.join(SCRIPT_DIR, "..", "resources", "i18n", dirname, file_name) + found_duplicates = found_duplicates or checker.has_duplicates(file_path) + + sys.exit(0 if not found_duplicates else 1) diff --git a/tests/Settings/TestGlobalStack.py b/tests/Settings/TestGlobalStack.py index f8052aa4bb..0f1579f78b 100755 --- a/tests/Settings/TestGlobalStack.py +++ b/tests/Settings/TestGlobalStack.py @@ -15,6 +15,7 @@ import UM.Settings.SettingDefinition #To add settings to the definition. from cura.Settings.cura_empty_instance_containers import empty_container + ## Gets an instance container with a specified container type. # # \param container_type The type metadata for the instance container. @@ -24,22 +25,27 @@ def getInstanceContainer(container_type) -> InstanceContainer: container.setMetaDataEntry("type", container_type) return container + class DefinitionContainerSubClass(DefinitionContainer): def __init__(self): super().__init__(container_id = "SubDefinitionContainer") + class InstanceContainerSubClass(InstanceContainer): def __init__(self, container_type): super().__init__(container_id = "SubInstanceContainer") self.setMetaDataEntry("type", container_type) + #############################START OF TEST CASES################################ + ## Tests whether adding a container is properly forbidden. def test_addContainer(global_stack): with pytest.raises(InvalidOperationError): global_stack.addContainer(unittest.mock.MagicMock()) + ## Tests adding extruders to the global stack. def test_addExtruder(global_stack): mock_definition = unittest.mock.MagicMock() @@ -67,6 +73,7 @@ def test_addExtruder(global_stack): # global_stack.addExtruder(unittest.mock.MagicMock()) assert len(global_stack.extruders) == 2 #Didn't add the faulty extruder. + #Tests setting user changes profiles to invalid containers. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "wrong container type"), @@ -77,6 +84,7 @@ def test_constrainUserChangesInvalid(container, global_stack): with pytest.raises(InvalidContainerError): #Invalid container, should raise an error. global_stack.userChanges = container + #Tests setting user changes profiles. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "user"), @@ -85,6 +93,7 @@ def test_constrainUserChangesInvalid(container, global_stack): def test_constrainUserChangesValid(container, global_stack): global_stack.userChanges = container #Should not give an error. + #Tests setting quality changes profiles to invalid containers. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "wrong container type"), @@ -95,6 +104,7 @@ def test_constrainQualityChangesInvalid(container, global_stack): with pytest.raises(InvalidContainerError): #Invalid container, should raise an error. global_stack.qualityChanges = container + #Test setting quality changes profiles. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "quality_changes"), @@ -103,6 +113,7 @@ def test_constrainQualityChangesInvalid(container, global_stack): def test_constrainQualityChangesValid(container, global_stack): global_stack.qualityChanges = container #Should not give an error. + #Tests setting quality profiles to invalid containers. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "wrong container type"), @@ -113,6 +124,7 @@ def test_constrainQualityInvalid(container, global_stack): with pytest.raises(InvalidContainerError): #Invalid container, should raise an error. global_stack.quality = container + #Test setting quality profiles. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "quality"), @@ -121,6 +133,7 @@ def test_constrainQualityInvalid(container, global_stack): def test_constrainQualityValid(container, global_stack): global_stack.quality = container #Should not give an error. + #Tests setting materials to invalid containers. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "wrong container type"), @@ -131,6 +144,7 @@ def test_constrainMaterialInvalid(container, global_stack): with pytest.raises(InvalidContainerError): #Invalid container, should raise an error. global_stack.material = container + #Test setting materials. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "material"), @@ -139,6 +153,7 @@ def test_constrainMaterialInvalid(container, global_stack): def test_constrainMaterialValid(container, global_stack): global_stack.material = container #Should not give an error. + #Tests setting variants to invalid containers. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "wrong container type"), @@ -149,6 +164,7 @@ def test_constrainVariantInvalid(container, global_stack): with pytest.raises(InvalidContainerError): #Invalid container, should raise an error. global_stack.variant = container + #Test setting variants. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "variant"), @@ -157,6 +173,7 @@ def test_constrainVariantInvalid(container, global_stack): def test_constrainVariantValid(container, global_stack): global_stack.variant = container #Should not give an error. + #Tests setting definition changes profiles to invalid containers. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "wrong container type"), @@ -167,6 +184,7 @@ def test_constrainDefinitionChangesInvalid(container, global_stack): with pytest.raises(InvalidContainerError): #Invalid container, should raise an error. global_stack.definitionChanges = container + #Test setting definition changes profiles. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "definition_changes"), @@ -175,6 +193,7 @@ def test_constrainDefinitionChangesInvalid(container, global_stack): def test_constrainDefinitionChangesValid(container, global_stack): global_stack.definitionChanges = container #Should not give an error. + #Tests setting definitions to invalid containers. @pytest.mark.parametrize("container", [ getInstanceContainer(container_type = "wrong class"), @@ -184,6 +203,7 @@ def test_constrainDefinitionInvalid(container, global_stack): with pytest.raises(InvalidContainerError): #Invalid container, should raise an error. global_stack.definition = container + #Test setting definitions. @pytest.mark.parametrize("container", [ DefinitionContainer(container_id = "DefinitionContainer"), @@ -192,6 +212,7 @@ def test_constrainDefinitionInvalid(container, global_stack): def test_constrainDefinitionValid(container, global_stack): global_stack.definition = container #Should not give an error. + ## Tests whether deserialising completes the missing containers with empty ones. The initial containers are just the # definition and the definition_changes (that cannot be empty after CURA-5281) def test_deserializeCompletesEmptyContainers(global_stack): @@ -207,6 +228,7 @@ def test_deserializeCompletesEmptyContainers(global_stack): continue assert global_stack.getContainer(container_type_index) == empty_container #All others need to be empty. + ## Tests whether an instance container with the wrong type gets removed when deserialising. def test_deserializeRemovesWrongInstanceContainer(global_stack): global_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Quality] = getInstanceContainer(container_type = "wrong type") @@ -217,6 +239,7 @@ def test_deserializeRemovesWrongInstanceContainer(global_stack): assert global_stack.quality == global_stack._empty_instance_container #Replaced with empty. + ## Tests whether a container with the wrong class gets removed when deserialising. def test_deserializeRemovesWrongContainerClass(global_stack): global_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Quality] = DefinitionContainer(container_id = "wrong class") @@ -227,6 +250,7 @@ def test_deserializeRemovesWrongContainerClass(global_stack): assert global_stack.quality == global_stack._empty_instance_container #Replaced with empty. + ## Tests whether an instance container in the definition spot results in an error. def test_deserializeWrongDefinitionClass(global_stack): global_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Definition] = getInstanceContainer(container_type = "definition") #Correct type but wrong class. @@ -235,6 +259,7 @@ def test_deserializeWrongDefinitionClass(global_stack): with pytest.raises(UM.Settings.ContainerStack.InvalidContainerStackError): #Must raise an error that there is no definition container. global_stack.deserialize("") + ## Tests whether an instance container with the wrong type is moved into the correct slot by deserialising. def test_deserializeMoveInstanceContainer(global_stack): global_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Quality] = getInstanceContainer(container_type = "material") #Not in the correct spot. @@ -246,6 +271,7 @@ def test_deserializeMoveInstanceContainer(global_stack): assert global_stack.quality == empty_container assert global_stack.material != empty_container + ## Tests whether a definition container in the wrong spot is moved into the correct spot by deserialising. def test_deserializeMoveDefinitionContainer(global_stack): global_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Material] = DefinitionContainer(container_id = "some definition") #Not in the correct spot. @@ -256,6 +282,7 @@ def test_deserializeMoveDefinitionContainer(global_stack): assert global_stack.material == empty_container assert global_stack.definition != empty_container + ## Tests whether getProperty properly applies the stack-like behaviour on its containers. def test_getPropertyFallThrough(global_stack): #A few instance container mocks to put in the stack. @@ -298,6 +325,7 @@ def test_getPropertyFallThrough(global_stack): global_stack.userChanges = mock_layer_heights[container_indexes.UserChanges] assert global_stack.getProperty("layer_height", "value") == container_indexes.UserChanges + ## In definitions, test whether having no resolve allows us to find the value. def test_getPropertyNoResolveInDefinition(global_stack): value = unittest.mock.MagicMock() #Just sets the value for bed temperature. @@ -307,6 +335,7 @@ def test_getPropertyNoResolveInDefinition(global_stack): global_stack.definition = value assert global_stack.getProperty("material_bed_temperature", "value") == 10 #No resolve, so fall through to value. + ## In definitions, when the value is asked and there is a resolve function, it must get the resolve first. def test_getPropertyResolveInDefinition(global_stack): resolve_and_value = unittest.mock.MagicMock() #Sets the resolve and value for bed temperature. @@ -316,6 +345,7 @@ def test_getPropertyResolveInDefinition(global_stack): global_stack.definition = resolve_and_value assert global_stack.getProperty("material_bed_temperature", "value") == 7.5 #Resolve wins in the definition. + ## In instance containers, when the value is asked and there is a resolve function, it must get the value first. def test_getPropertyResolveInInstance(global_stack): container_indices = cura.Settings.CuraContainerStack._ContainerIndexes @@ -342,6 +372,7 @@ def test_getPropertyResolveInInstance(global_stack): global_stack.userChanges = instance_containers[container_indices.UserChanges] assert global_stack.getProperty("material_bed_temperature", "value") == 5 + ## Tests whether the value in instances gets evaluated before the resolve in definitions. def test_getPropertyInstancesBeforeResolve(global_stack): value = unittest.mock.MagicMock() #Sets just the value. @@ -356,6 +387,7 @@ def test_getPropertyInstancesBeforeResolve(global_stack): assert global_stack.getProperty("material_bed_temperature", "value") == 10 + ## Tests whether the hasUserValue returns true for settings that are changed in the user-changes container. def test_hasUserValueUserChanges(global_stack): container = unittest.mock.MagicMock() @@ -367,6 +399,7 @@ def test_hasUserValueUserChanges(global_stack): assert not global_stack.hasUserValue("infill_sparse_density") assert not global_stack.hasUserValue("") + ## Tests whether the hasUserValue returns true for settings that are changed in the quality-changes container. def test_hasUserValueQualityChanges(global_stack): container = unittest.mock.MagicMock() @@ -378,6 +411,7 @@ def test_hasUserValueQualityChanges(global_stack): assert not global_stack.hasUserValue("infill_sparse_density") assert not global_stack.hasUserValue("") + ## Tests whether a container in some other place on the stack is correctly not recognised as user value. def test_hasNoUserValue(global_stack): container = unittest.mock.MagicMock() @@ -387,21 +421,25 @@ def test_hasNoUserValue(global_stack): assert not global_stack.hasUserValue("layer_height") #However this container is quality, so it's not a user value. + ## Tests whether inserting a container is properly forbidden. def test_insertContainer(global_stack): with pytest.raises(InvalidOperationError): global_stack.insertContainer(0, unittest.mock.MagicMock()) + ## Tests whether removing a container is properly forbidden. def test_removeContainer(global_stack): with pytest.raises(InvalidOperationError): global_stack.removeContainer(unittest.mock.MagicMock()) + ## Tests whether changing the next stack is properly forbidden. def test_setNextStack(global_stack): with pytest.raises(InvalidOperationError): global_stack.setNextStack(unittest.mock.MagicMock()) + ## Tests setting properties directly on the global stack. @pytest.mark.parametrize("key, property, value", [ ("layer_height", "value", 0.1337), @@ -415,6 +453,7 @@ def test_setPropertyUser(key, property, value, global_stack): user_changes.getMetaDataEntry = unittest.mock.MagicMock(return_value = "user") global_stack.userChanges = user_changes - global_stack.setProperty(key, property, value) #The actual test. + global_stack.setProperty(key, property, value) # The actual test. - global_stack.userChanges.setProperty.assert_called_once_with(key, property, value, None, False) #Make sure that the user container gets a setProperty call. \ No newline at end of file + # Make sure that the user container gets a setProperty call. + global_stack.userChanges.setProperty.assert_called_once_with(key, property, value, None, False) \ No newline at end of file diff --git a/tests/conftest.py b/tests/conftest.py index f2c709d8d8..ad0bc609ee 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -3,19 +3,23 @@ # The purpose of this class is to create fixtures or methods that can be shared among all tests. +import unittest.mock import pytest + +import Arcus #Prevents error: "PyCapsule_GetPointer called with incorrect name" with conflicting SIP configurations between Arcus and PyQt: Import Arcus and Savitar first! +import Savitar from UM.Qt.QtApplication import QtApplication #QtApplication import is required, even though it isn't used. from cura.CuraApplication import CuraApplication from cura.MachineActionManager import MachineActionManager + + # Create a CuraApplication object that will be shared among all tests. It needs to be initialized. # Since we need to use it more that once, we create the application the first time and use its instance afterwards. @pytest.fixture() def application() -> CuraApplication: - application = CuraApplication.getInstance() - if application is None: - application = CuraApplication() - return application + app = unittest.mock.MagicMock() + return app # Returns a MachineActionManager instance. @pytest.fixture()